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

  1. /** BASIC */
  2.  
  3. body {
  4.     font: normal .8em Verdana, Arial, Helvetica, sans-serif;
  5. }
  6.  
  7. h1, h2, h3, h4, h5, h6 {
  8.     color: #336600;
  9. }
  10.  
  11. ul {
  12.     margin-left: 0px;
  13.     padding-left: 0px;
  14.     list-style-type: none;
  15. }
  16.  
  17. a {
  18.     color: #336600;
  19. }
  20.  
  21. a:hover {
  22.     text-decoration: none;
  23. }
  24.  
  25. /** HEADER */
  26.  
  27. #header {
  28.     width: 700px;
  29.     height: 80px;
  30.     margin: 0px auto;
  31.     background: #CDE2A1 url(images/img01.gif) no-repeat left top;
  32. }
  33.  
  34. #header h1 {
  35.     float: left;
  36.     margin: 0px;
  37.     padding: 35px 0px 0px 10px;
  38. }
  39.  
  40. #header h2 {
  41.     float: right;
  42.     margin: 0px;
  43.     padding: 43px 10px 0px 0px;
  44.     background: url(images/img02.gif) no-repeat right top;
  45. }
  46.  
  47. /** MENU */
  48.  
  49. #menu {
  50.     width: 700px;
  51.     height: 30px;
  52.     margin: 0px auto;
  53.     background: url(images/img03.gif) repeat-x left top;
  54. }
  55.  
  56. #menu ul {
  57.     margin: 0px;
  58.     padding: 0px;
  59.     list-style: none;
  60. }
  61.  
  62. #menu li {
  63.     display: inline;
  64. }
  65.  
  66. #menu a {
  67.     display: block;
  68.     float: left;
  69.     padding: 10px;
  70.     text-transform: uppercase;
  71.     text-decoration: none;
  72.     font-size: smaller;
  73.     font-weight: bold;
  74.     color: #336600;
  75. }
  76.  
  77. #menu a:hover {
  78.     color: #FFFFFF;
  79. }
  80.  
  81. /** CONTENT */
  82.  
  83. #content {
  84.     width: 700px;
  85.     margin: 0px auto;
  86.     background: url(images/img04.gif) repeat-y left top;
  87. }
  88.  
  89. #columnA {
  90.     float: right;
  91.     width: 440px;
  92.     padding: 20px;
  93. }
  94.  
  95. #columnB {
  96.     float: left;
  97.     width: 200px;
  98.     padding: 20px 10px
  99. }
  100.  
  101. #columnB h2 {
  102.     font-size: large;
  103. }
  104.  
  105. /** FOOTER */
  106.  
  107. #footer {
  108.     width: 700px;
  109.     margin: 0px auto;
  110.     background: #BED985 url(images/img05.gif) no-repeat left bottom;
  111. }
  112.  
  113. #footer p {
  114.     margin: 0px;
  115.     padding: 5px 10px;
  116.     background: url(images/img06.gif) no-repeat right bottom;
  117.     font-size: smaller;
  118. }