Guest User

Untitled

a guest
Jun 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.11 KB | None | 0 0
  1. @charset "utf-8";
  2. /* CSS Document */
  3.  
  4. .body
  5. {
  6.     margin:0px 0px;
  7. }
  8.  
  9. #main-wrapper
  10. {
  11.     position:absolute;
  12.     top:0px;
  13.     left:0px;
  14.     width:100%;
  15.     height:100%;
  16.     overflow-x:hidden;
  17. }
  18.  
  19. #bg
  20. {
  21.     position:fixed;
  22.     top:0px;
  23.     left:0px;
  24.     width:100%;
  25.     height:100%;
  26.     background:url(images/bg.jpg) repeat;
  27.     z-index:0;
  28. }
  29.  
  30. #hori-center
  31. {
  32.     position:fixed;
  33.     top:0px;
  34.     left:0px;
  35.     width:50%;
  36.     height:100%;
  37. }
  38.  
  39. #header-container
  40. {
  41.     position:absolute;
  42.     top:30px;
  43.     right:-480px;
  44.     width:960px;
  45.     height:200px;
  46. }
  47.  
  48. #top-header-bar-container
  49. {
  50.     position:absolute;
  51.     top:0px;
  52.     left:0px;
  53.     height:30px;
  54.     width:100%;
  55.     background-color:#0a0a0a;
  56.     z-index:2;
  57.     border-top-left-radius: 10px 10px;
  58.     border-top-right-radius: 10px 10px;
  59. }
  60.  
  61. #top-header-bar-container2
  62. {
  63.     position:absolute;
  64.     top:30px;
  65.     left:0px;
  66.     height:35px;
  67.     width:100%;
  68.     background:url(images/transbg1.png) repeat;
  69.     z-index:2;
  70. }
  71.  
  72. #shadow1
  73. {
  74.     position:absolute;
  75.     top:65px;
  76.     left:0px;
  77.     width:100%;
  78.     height:15px;
  79.     background:url(images/shadow1.png) repeat-x;
  80.     z-index:2;
  81.     border-top:thin solid #000000;
  82. }
  83.  
  84. #logo
  85. {
  86.     position:absolute;
  87.     top:30px;
  88.     left:0px;
  89.     height:170px;
  90.     width:100%;
  91.     background:url(images/logo.jpg) no-repeat;
  92.     z-index:1;
  93.     border-bottom:thin solid #000000;
  94. }
  95.  
  96. #site-body
  97. {
  98.     position:absolute;
  99.     top:230px;
  100.     right:-480px;
  101.     width:960px;
  102.     min-height:100px;
  103.     z-index:1;
  104.     border-top:thin solid #303030;
  105. }
  106.  
  107. #left-body
  108. {
  109.     position:relative;
  110.     width:100%;
  111.     min-height:100px;
  112.    
  113. }
  114.  
  115. #left-container
  116. {
  117.     position:relative;
  118.     top:0px;
  119.     left:0px;
  120.     width:210px;
  121.     min-height:60px;
  122.     font-family:Verdana, Arial, sans-serif;
  123.     font-size:11px;
  124.     color:#999999;
  125. }
  126.  
  127. #right-body
  128. {
  129.     position:relative;
  130.     width:100%;
  131.     min-height:100px;
  132. }
  133.  
  134. #right-container
  135. {
  136.     position:relative;
  137.     top:0px;
  138.     left:0px;
  139.     width:670px;
  140.     min-height:60px;
  141.     font-family:Verdana, Arial, sans-serif;
  142.     font-size:11px;
  143.     color:#999999;
  144. }
  145.  
  146. #footer-container
  147. {
  148.     position:relative;
  149.     bottom:0px;
  150.     right:0px;
  151.     width:960px;
  152.     height:100%;
  153.     background-color:#181818;
  154.     border-bottom-left-radius: 10px 10px;
  155.     border-bottom-right-radius: 10px 10px;
  156. }
Add Comment
Please, Sign In to add comment