home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / redrick.css < prev    next >
Cascading Style Sheet File  |  2004-12-22  |  2KB  |  124 lines

  1. body {
  2.     background-color: #CCDDDD;
  3. }
  4.  
  5. h1 {
  6.    font-size: large;
  7.    padding: 0px;
  8.    margin: 30px 0px 10px 5px;
  9.    text-align: center
  10. }
  11.  
  12. h2 {
  13.    font-size: medium;
  14.    padding: 0px;
  15.    margin: 20px 0px 5px 5px;
  16.    text-align: center
  17. }
  18.  
  19. h3 {
  20.    font-size: medium;
  21.    padding: 0px;
  22.    margin: 10px 0px 5px 5px;
  23.    text-align: left;
  24. }
  25.  
  26. p {
  27.     margin:5px 0px 15px 0px;
  28. }
  29.  
  30. /* Links -- plain & hover */
  31.  
  32.  
  33. /* Hover -- when the pointer is placed over a link, change its
  34.  * appearance.  This may be the single most useful link attribute to
  35.  * specify as it doesn't interfere with page legibility, but does
  36.  * clearly denote links.
  37.  */
  38.  
  39.  
  40. A:link { 
  41.     font-weight: bold !important;
  42.     text-decoration: underline !important; 
  43. }
  44.  
  45. A:link:hover, A:visited:hover {
  46.     color: #00008b !important;
  47.     /* Yellowish background */
  48.     background-color: rgb(255,255,144) !important;
  49.     text-decoration: underline !important; 
  50. }
  51.  
  52. /* Active (selected) link.  As "hover" above. */
  53. A:link:active, A:visited:active { 
  54.     color: red !important; 
  55.     background-color: rgb(255,255,16) !important;
  56.     text-decoration: underline !important; 
  57. }
  58.  
  59.  
  60. /* Content elements */
  61.  
  62. .topbar {
  63.     margin:10px 10px 30px 10px;
  64.     background:#bbbbFF;
  65.     width: 90%;
  66.     text-align: center;
  67.     border: 1px solid #000;
  68.   }
  69.  
  70.   #juicebox {
  71.     background:#eeffee;  /* Greenish */
  72.     clear: both;
  73.     padding:4px 4px 4px 4px;
  74.     border:1px solid #000;
  75.     text-align: center;
  76.     }
  77.  
  78.   #navbox {
  79.     margin:20px 16px 10px 8px;
  80.     float:left;
  81.     }
  82.  
  83. .nav {
  84.     margin:20px 16px 40px 0px;
  85.     width: 220px;
  86.     background: #bcacff;
  87.     padding:4px 4px 4px 4px;
  88.     border:1px solid #000;
  89.     }
  90.  
  91. .hotbox {
  92.     margin:20px 16px 40px 0px;
  93.     width: 220px;
  94.     background: #FFFFcc;
  95.     padding:4px 4px 4px 4px;
  96.     border:1px solid #000;
  97.     }
  98.  
  99.   #searchbox {
  100.     float:right;
  101.     }
  102.  
  103.   #search {
  104.     margin:8px 8px 8px 8px;
  105.     padding:4px 4px 4px 4px;
  106.     text-align:right;
  107.     background:#cff;
  108.     border:1px solid #000;
  109.     }
  110.  
  111.   #topcontent {
  112.     margin: 15px 2% 45px 8px;
  113.     border: 1px solid #000;
  114.     background: #ffffff;
  115.     padding: 8px 8px 8px 18px;
  116.     }
  117.  
  118.   #content {
  119.     margin: 25px 2% 52px 130px;
  120.     border: 1px solid #000;
  121.     background: #ffffff;
  122.     padding: 8px 8px 8px 18px;
  123.     }
  124.