home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Templates / CSS / nothingfanzy / default.css next >
Cascading Style Sheet File  |  2006-12-01  |  2KB  |  114 lines

  1. /** BASIC */
  2.  
  3. body {
  4.     margin: 0px;
  5.     padding: 0px;
  6.     font: normal small Arial, Helvetica, sans-serif;
  7. }
  8.  
  9. h1, h2, h3, h4, h5, h6 {
  10.     font-family: Georgia, "Times New Roman", Times, serif;
  11.     font-weight: normal;
  12.     font-style: italic;
  13.     color: #FF6600;
  14. }
  15.  
  16. a {
  17.     color: #FF6600;
  18. }
  19.  
  20. a:hover {
  21.     text-decoration: none;
  22. }
  23.  
  24. /** HEADER */
  25.  
  26. #header {
  27.     padding: 1em;
  28.     background: #FFFFCC;
  29.     border-bottom: 2px solid #FF6600;
  30. }
  31.  
  32. #header h1 {
  33.     margin: 0px;
  34.     padding: 0px;
  35.     text-align: center;
  36.     font-weight: bold;
  37.     letter-spacing: .2em;
  38.     color: #FF6600;
  39. }
  40.  
  41. #header h2 {
  42.     margin: 0px;
  43.     padding: 0px;
  44.     text-align: center;
  45.     font-weight: bold;
  46.     font-size: 14px;
  47.     letter-spacing: .2em;
  48.     color: #FF6600;
  49. }
  50.  
  51. /** MENU */
  52.  
  53. #menu {
  54.     padding: .3em;
  55.     background: #FFFF99;
  56.     border-bottom: 2px solid #FF6600;
  57.     text-align: center;
  58. }
  59.  
  60. #menu ul {
  61.     margin: 0px;
  62.     padding: 0px;
  63.     list-style: none;
  64. }
  65.  
  66. #menu li {
  67.     display: inline;
  68. }
  69.  
  70. #menu a {
  71.     padding: 0em 2em;
  72.     text-decoration: none;
  73.     font-weight: bold;
  74.     color: #FF6600;
  75. }
  76.  
  77. #menu a:hover {
  78.     background: #FF6600;
  79.     color: #FFFFFF;
  80. }
  81.  
  82. /** CONTENT */
  83.  
  84. #content {
  85.     width: 700px;
  86.     margin: 0px auto;
  87.     padding: 2em;
  88. }
  89.  
  90. #columnA {
  91.     float: right;
  92.     width: 480px;
  93. }
  94.  
  95. #columnB {
  96.     float: left;
  97.     width: 200px;
  98. }
  99.  
  100. /** FOOTER */
  101.  
  102. #footer {
  103.     clear: both;
  104.     padding: .3em;
  105.     background: #FFFF99;
  106.     border-top: 2px solid #FF6600;
  107.     border-bottom: 2px solid #FF6600;
  108.     text-align: center;
  109. }
  110.  
  111. #footer p {
  112.     margin: 0px;
  113.     padding: 0px;
  114. }