Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5.  
  6. body {
  7. background: #EFEFEF;
  8. font: 12px Georgia, "Times New Roman", Times, serif;
  9. color: #666666;
  10. }
  11.  
  12. /* HEADER ATTIRIBUTES */
  13. #header {
  14. background: url('img/headerbg.png');
  15. width: 100%;
  16. height: 150px;
  17. border-bottom: 2px solid #FFF;
  18. color: #FFFFFF;
  19. }
  20.  
  21. #header #top {
  22. width: 900px;
  23. margin: auto;
  24. padding: 12px 0 0 0;
  25. overflow: hidden;
  26. }
  27.  
  28. #header #top h1 {
  29. float: left;
  30. margin: 0;
  31. font: 12px Georgia, "Times New Roman", Times, serif;
  32. text-transform: uppercase;
  33. }
  34.  
  35. #header #top h2 {
  36. float: right;
  37. font-style: italic;
  38. margin: 0;
  39. font: 12px Georgia, "Times New Roman", Times, serif;
  40. text-transform: uppercase;
  41. font-style: italic;
  42. }
  43.  
  44. #header #sub {
  45. width: 900px;
  46. margin: auto;
  47. padding: 36px 0 0 0;
  48. }
  49.  
  50. #header #sub #logo {
  51. background: url('img/logo.png');
  52. float: left;
  53. width: 221px;
  54. height: 65px;
  55. }
  56.  
  57. #header #sub #nav {
  58. float: right;
  59. font: 17px Georgia, "Times New Roman", Times, serif;
  60. font-weight: bold;
  61. padding: 25px 0 0 0;
  62. font-style: italic;
  63. }
  64.  
  65. #header #sub #nav ul {
  66. list-style-image: none;
  67. list-style-type: none;
  68. list-style: none;
  69. }
  70.  
  71. #header #sub #nav li {
  72. float: left;
  73. margin-left: 30px;
  74. }
  75.  
  76. #header #sub #nav li a:link {
  77. color: #FFFFFF;
  78. text-decoration: none;
  79. }
  80.  
  81. #header #sub #nav li a:visited {
  82. text-decoration: none;
  83. color: #FFFFFF;
  84. }
  85.  
  86. #header #sub #nav li a:hover {
  87. text-decoration: none;
  88. color: #FFFFFF;
  89. border-bottom: 1px dashed #fff;
  90. }
  91.  
  92. #header #sub #nav li a:active {
  93. text-decoration: none;
  94. color: #FFFFFF;
  95. }
  96.  
  97. #title {
  98. background: #DFDFDF;
  99. width: 900px;
  100. height: 150px;
  101. margin: auto;
  102. -moz-border-radius: 5px;
  103. -webkit-border-radius: 5px;
  104. border-radius: 5px;
  105. margin-top: 25px;
  106. }
  107.  
  108. #container {
  109. width: 900px;
  110. margin: auto;
  111. padding: 25px 0 25px 0;
  112. }
  113.  
  114. #container #main {
  115. background: #fff;
  116. width: 570px;
  117. float: left;
  118. padding: 15px;
  119. -moz-border-radius: 5px;
  120. -webkit-border-radius: 5px;
  121. border-radius: 5px;
  122. }
  123.  
  124. #container #right {
  125. background: #fff;
  126. width: 245px;
  127. float: right;
  128. padding: 15px;
  129. -moz-border-radius: 5px;
  130. -webkit-border-radius: 5px;
  131. border-radius: 5px;
  132. }
Add Comment
Please, Sign In to add comment