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

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