Advertisement
Guest User

Untitled

a guest
Aug 25th, 2010
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.15 KB | None | 0 0
  1. * {margin: 0; padding: 0;}
  2.  .clr {clear: both;}
  3. body { background: black; } /*url(images/body-bg.png); }*/
  4.  
  5.  
  6. div#shadow {
  7.     z-index: -1;
  8.     position: absolute;
  9.     background: rgba(255, 255, 255, 0.3);
  10.     -moz-opacity:0.3;
  11.     filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#76FFFFFF,endColorstr=#76FFFFFF);
  12.     left: 100px;
  13.     min-width: 850px;
  14.     right: 100px;
  15.     top: 100px;
  16.     height: 75%;
  17. }
  18. div#shadow-top {
  19.     z-index: -1;
  20.     position: absolute;
  21.     background: white;
  22.     left: 20px;
  23.     right: 20px;
  24.     top: 20px;
  25.     bottom: 20px;
  26. }
  27.  
  28. div#home-blog {
  29.     position: absolute;
  30.     min-width: 400px;
  31.     width: 400px;
  32.     max-width: 400px;
  33.     height: 100%;
  34.  
  35.     background: #FF0;
  36.     overflow-y: auto;
  37. }
  38. div#home-other {
  39.     position: absolute;
  40.     left: 400px;
  41.     right: 0px;
  42.     top: 0px;
  43.     bottom: 0px;
  44.     background: green;
  45. }
  46. #left {
  47.     position: absolute;
  48.     min-width: 200px;
  49.     left: 0;
  50.     width: 50%;
  51.     background: blue;
  52.     height: 100%;
  53. }
  54. #right {
  55.     position: absolute;
  56.     min-width: 200px;
  57.     right: 0;
  58.     width: 50%;
  59.     background: orange;
  60.     height: 100%;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement