home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Templates / CSS / plain_and_simple / style.css < prev   
Encoding:
Cascading Style Sheet File  |  2006-12-13  |  1.5 KB  |  106 lines

  1. /*
  2.     Author    :    Christopher Robinson
  3.     Email        :    christopher@edg3.co.uk
  4.     Website    :    http://www.edg3.co.uk/
  5. */
  6. * {
  7.     border:0;
  8.     margin:0;
  9.     padding:0;
  10. }
  11.  
  12. /* general */
  13. a {
  14.     color:#777;
  15.     text-decoration:none;
  16. }
  17.  
  18. a:hover {
  19.     color:#333;
  20.     text-decoration:none;
  21. }
  22.  
  23. /* body */
  24. body {
  25.     background:#fafafa;
  26.     color:#555;
  27.     font:0.8em Arial, Helvetica, "bitstream vera sans", sans-serif;
  28. }
  29.  
  30. /* header */
  31. #header {
  32.     border-bottom:1px solid #999;
  33.     height:80px;
  34.     margin:0 auto;
  35.     width:751px;
  36. }
  37. #header h1 {
  38.     color:#888;
  39.     font-size:300%;
  40.     letter-spacing:-3px;
  41.     text-align:right;
  42.     padding:5px;
  43.     margin-bottom:-20px;
  44. }
  45. #header h2 {
  46.     color:#CCC;
  47.     font-size:200%;
  48.     letter-spacing:-2px;
  49.     text-align:right;
  50. }
  51.  
  52. /* navigation */
  53. #navigation {
  54.     background:#fafafa;
  55.     border-right:1px solid #999;
  56.     margin:0 auto;
  57.     width:750px;
  58.     height:50px;
  59.     list-style:none;
  60. }
  61. #navigation li {
  62.     border-left:1px solid #999;
  63.     float:left;
  64.     width:124px;
  65.     list-style:none;
  66. }
  67. #navigation a {
  68.     color:#555;
  69.     display:block;
  70.     line-height:50px;
  71.     text-align:center;
  72. }
  73. #navigation a:hover {
  74.     background:#e3e3e3;
  75.     color:#555;
  76. }
  77. #navigation .active {
  78.     background:#e3e3e3;
  79.     color:#777;
  80. }
  81.  
  82. /* content */
  83. #content {
  84.     height:auto;
  85.     margin:0 auto;
  86.     padding:0 0 20px;
  87.     width:751px;
  88. }
  89. #content h1 {
  90.     border-bottom:1px dashed #999;
  91.     font-size:1.8em;
  92.     padding:20px 0 0;
  93. }
  94. #content p {
  95.     padding:20px 20px 0;
  96. }
  97.  
  98. /* footer */
  99. #footer {
  100.     border-top:1px solid #999; 
  101.     height:50px;
  102.     margin:0 auto;
  103.     padding:10px;
  104.     text-align:center;
  105.     width:751px;
  106. }