Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.31 KB | None | 0 0
  1. * Created on 5-nov-2010 10:46:01 */
  2. /*basis*/
  3. body {
  4.     background-color:#000000;
  5.     margin:0px;
  6.     padding:0px;
  7.     font-family:Arial, Helvetica, sans-serif;
  8.     color:#000000;
  9.     overflow:-moz-scrollbars-vertical;
  10. }
  11.  
  12. /*divisions*/
  13.  
  14. div.container{
  15.     width:970px;
  16.     margin:0px auto;
  17. }
  18.  
  19. div.header{
  20.     background-color:#8D1B57;
  21.     width:950px;
  22.     height:150px;
  23.     margin-top:10px;
  24.     padding:10px;
  25. }
  26.  
  27. div.menu {
  28.     float:left;
  29.     width:130px;
  30.     height:600px;
  31.     margin-top:10px;
  32.     padding:10px;
  33.     background-color:#8D1B57;
  34. }
  35.    
  36. div.main {
  37.     float:left;
  38.     width:630px;
  39.     height:600px;
  40.     margin-top:10px;
  41.     margin-left:10px;
  42.     padding:10px;
  43.     background-color:#8D1B57;
  44.     overflow:auto;
  45. }
  46.  
  47. div.right {
  48.     float:left;
  49.     width:130px;
  50.     height:600px;
  51.     margin-top:10px;
  52.     margin-left:10px;
  53.     padding:10px;
  54.     background-color:#8D1B57;
  55. }
  56.  
  57. div.shorts {
  58.     float:left;
  59.     width:630px;
  60.     height:60px;
  61.     background-color:#8D1B57;
  62. }
  63.  
  64. div.main2 {
  65.     float:left;
  66.     width:610px;
  67.     height:500px;
  68.     margin-top:10px;
  69.    
  70.     padding:10px;
  71.     background-color:#8D1B57;
  72.     overflow: auto;
  73. }
  74.  
  75.  
  76. /* links */
  77.  
  78. a:link {
  79.     color:#FF6600;
  80.     text-decoration:underline;
  81. }
  82.  
  83. a:visited {
  84.     color:#FF6600;
  85.     text-decoration:underline;
  86. }
  87.  
  88. a:hover {
  89.     color:#666666;
  90.     text-decoration:underline;
  91. }
  92.  
  93. a:active {
  94.     color:#FF6600;
  95.     text-decoration:underline;
  96. }
  97.  
  98. /* opmaak */
  99.  
  100. P {
  101.     font-family:Arial, Helvetica, sans-serif;
  102.     font-size:12px;
  103.     line-height:18px;
  104.     color:#000000;
  105.     margin-bottom:15px;
  106. }
  107.  
  108. H1 {
  109. color:#000000;
  110.     font-family:times new roman, times, serif;
  111.     font-size:20px;
  112.     font-weight:bold;
  113.     font-style:normal;
  114.     text-decoration: Underline;
  115. }
  116.  
  117. H2 {
  118. color:#000000;
  119.     font-family:times new roman, times, serif;
  120.     font-size:16px;
  121.     font-weight:bold;
  122.     font-style:normal;
  123.    
  124. }
  125.  
  126. H3 {
  127. color:#000000;
  128.     font-family:times new roman, times, serif;
  129.     font-size:20px;
  130.     font-weight:bold;
  131.     font-style:normal;
  132. }
  133.  
  134. H4 {
  135. color:#FF6600;
  136.     font-family:times new roman, times, serif;
  137.     font-size:10px;
  138.     font-style:normal;
  139.     text-decoration: Underline;
  140. }
  141.  
  142. H5 {
  143. color:#000000;
  144.     font-family:Arial, Helvetica, sans-serif;
  145.     font-size:14px;
  146.     font-weight:bold;
  147.     font-style:normal;
  148.     margin-bottom:0px;
  149. }
  150.  
  151. H6 {
  152. color:#000000;
  153.     font-family:Arial, Helvetica, sans-serif;
  154.     font-size:18px;
  155.     font-weight: bold;
  156.     font-style:normal;
  157.     text-decoration:bold;
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement