Guest User

Untitled

a guest
Mar 14th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.94 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     font-family: Helvetica, Arial, Tahoma;
  5.     font-size: 12px;
  6. }
  7.  
  8. body {
  9.     background: gray;
  10.     background-image: url(../images/bg_1.gif);
  11. }
  12.  
  13.  
  14. /* Основная структура */
  15. #wrapper {
  16.     width: 800px;
  17.     top: 50px;
  18.     position: relative;
  19.     margin: 0 auto;
  20. }
  21.  
  22. #header {
  23.     height: 90px;
  24.     width: 790px;
  25.     background-color: #2a2a2a;
  26.     padding: 0 5px;
  27.     padding-top: 5px;
  28.     -moz-border-radius: 5px 5px 0 0;
  29.     border-radius: 5px 5px 0 0;
  30.     -webkit-border-radius: 5px 5px 0 0;
  31. }
  32.  
  33. #bar {
  34.     height: 19px;
  35.     width: 790px;
  36.     padding-top: 3px;
  37.     padding: 0 5px;
  38.     background-color: #2a2a2a;
  39.     color: #fff;
  40.     padding-top: 3px;
  41. }
  42.  
  43. #content {
  44.     width: 800px;
  45.     overflow: hidden;
  46.     background-color: red;
  47. }
  48.  
  49. #left_col {
  50.     width: 200px;
  51.     background-color: #fdfdfd;
  52.     background-image: url(../images/shadow.png);
  53.     background-repeat: repeat-y;
  54.     background-position: top right;
  55.     float: left;
  56. }
  57.  
  58. #right_col {
  59.     width: 570px;
  60.     padding: 15px;
  61.     background-color: #fff;
  62.     margin-left: 200px;
  63. }
  64.  
  65. #left_col, #right_col {
  66.     padding-bottom:10015px;
  67.     margin-bottom:-10000px;
  68. }
  69.  
  70. #footer {
  71.     height: 5px;
  72.     width: 800px;
  73.     background-color: white;
  74.     -moz-border-radius: 0 0 5px 5px;
  75.     border-radius: 0 0 5px 5px;
  76.     -webkit-border-radius: 0 0 5px 5px;
  77. }
  78.  
  79. ._clear {
  80.     clear: both;
  81. }
  82. /* -------------------- */
  83.  
  84. .node, .node_content, .node_links {
  85.     width: 570px;
  86. }
  87.  
  88. .node {
  89.     margin-bottom: 20px;
  90. }
  91.  
  92. .node_rating {
  93.     width: 102px;
  94.     height: 20px;
  95.     margin-bottom: 10px;
  96.     margin-left: 468px;
  97. }
  98.  
  99. .node_title {
  100.     float: left;
  101.     width: 468px;
  102.     font-family: Helvetica, Arial, Tahoma;
  103.     font-size: 18px;
  104.     font-weight: bold;
  105.     color: #646464;
  106.     margin-bottom: 10px;
  107. }
  108.  
  109. .node_title a {
  110.     font-family: Helvetica, Arial, Tahoma;
  111.     font-size: 18px;
  112.     font-weight: bold;
  113.     color: #646464;
  114.     text-decoration: none;
  115. }
  116.  
  117. .node_content, .node_links {
  118.     font-family: Helvetica, Arial, Tahoma;
  119.     color: #767676;
  120.     font-size: 12px;
  121.     text-decoration: none;
  122. }
  123.  
  124. .node_content a, .node_links a {
  125.     color: #0eb6ce;
  126.     text-decoration: none;
  127. }
  128.  
  129. .node_content a:hover, .node_links a:hover {
  130.     color: #0a7685;
  131. }
  132.  
  133. p.title, p.title_menu {
  134.     font-family: Helvetica, Arial, Tahoma;
  135.     font-size: 18px;
  136.     font-weight: bold;
  137.     color: #646464;
  138. }
  139.  
  140. p.title_menu {
  141.     margin: 10px 0;
  142.     margin-left: 30px;
  143. }
  144.  
  145. ul.menu {
  146.     margin-left: 30px;
  147. }
  148.  
  149. ul.menu li {
  150.     list-style: none;
  151. }
  152.  
  153. ul.menu a {
  154.     font-family: Helvetica, Arial, Tahoma;
  155.     color: #767676;
  156.     font-size: 12px;
  157.     text-decoration: none;
  158. }
  159.  
  160. ul.menu a:hover {
  161.     text-decoration: underline;
  162. }
  163.  
  164. div.devide {
  165.     background-image: url(../images/devide_1.png);
  166.     height: 4px;
  167.     background-position: center center;
  168.     width: 200px;
  169.     margin-top: 20px;
  170.     margin-bottom: 10px;
  171. }
  172.  
  173. a.btn {
  174.     margin-left: 16px;
  175.     width: 167px;
  176.     height: 36px;
  177.     display: block;
  178.     background-image: url(../images/addserver.png);
  179. }
  180.  
  181. a.btn:hover {
  182.     display: block;
  183.     background-position: 0 -36px;
  184. }
  185.  
  186. .l_b {
  187.     font-weight: bold;
  188. }
Advertisement
Add Comment
Please, Sign In to add comment