Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.20 KB | None | 0 0
  1. body {
  2.   background-color: #000000;
  3.   color:            #FFFFFF;
  4.   font-family:      sans-serif;
  5. }
  6.  
  7. table {
  8.   color:            #FFCC28;
  9.   font-weight:      bold;
  10. }
  11.  
  12. table.center {
  13.   margin-left:      auto;
  14.   margin-right:     auto;
  15. }
  16.  
  17. img {
  18.   border:           none;
  19. }
  20.  
  21. a:link {
  22.   color:            #A7C0DC;
  23.   text-decoration:  none;
  24. }
  25.  
  26. a:visited {
  27.   color:            #D3DAED;
  28.   text-decoration:  none;
  29. }
  30.  
  31. a:active {
  32.   color:            #D3DAED;
  33.   text-decoration:  none;
  34. }
  35.  
  36. a:hover {
  37.   color:            #D3DAED;
  38.   text-decoration:  underline;
  39. }
  40.  
  41. #body {
  42.   background-color: #666666;
  43.   border:           1px solid #B8B8B8;
  44.   color:            #FFCC28;
  45.   font-size:        18px;
  46.   font-weight:      bold;
  47.   margin:           0 auto;
  48.   padding:          25px 0px 25px 0px;
  49.   position:         relative;
  50.   top:              20px;
  51.   width:            850px;
  52. }
  53.  
  54. #logo {
  55.   margin:           0 auto;
  56.   position:         relative;
  57.   width:            800px;
  58. }
  59.  
  60. #info {
  61.   border:           1px solid #B8B8B8;
  62.   left:             25px;
  63.   padding:          8px;
  64.   position:         relative;
  65.   width:            783px;
  66. }
  67.  
  68. #parser {
  69.   float:            right;
  70.   margin:           0px 0px 2px 0px;
  71.   position:         relative;
  72.   right:            25px;
  73.   top:              5px;
  74. }
  75.  
  76. #footer {
  77.   background-color: #666666;
  78.   border:           1px solid #B8B8B8;
  79.   margin:           0 auto;
  80.   padding:          8px;
  81.   position:         relative;
  82.   top:              50px;
  83.   width:            835px;
  84. }
  85.  
  86. #footer table {
  87.   border:           none;
  88.   position:         relative;
  89. }
  90.  
  91. #footer td {
  92.   border:           1px solid #B8B8B8;
  93.   font-size:        17px;
  94.   padding:          6px;
  95.   position:         relative;
  96.   text-align:       center;
  97. }
  98.  
  99.  
  100. #links {
  101.   margin:           0 auto;
  102.   position:         relative;
  103.   width:            800px;
  104. }
  105.  
  106.  
  107. /* Force large, bold text class. */
  108. .l {
  109.   font-size:        20px;
  110.   font-weight:      bold;
  111. }
  112.  
  113. /* Force small, "normal" text class. */
  114. .s {
  115.   font-size:        11px;
  116.   font-weight:      normal;
  117. }
  118.  
  119. /* Force white, "normal" text class. */
  120. .w {
  121.   color:            #FFFFFF;
  122.   font-weight:      normal;
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement