Guest User

Untitled

a guest
Dec 18th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.97 KB | None | 0 0
  1. body {
  2.     width:750px;
  3.     margin:0 auto;
  4.     margin-top:5px;
  5.     font-family: 'EB Garamond', serif;
  6. }
  7.  
  8.  
  9. /* ----- TOP NAVIGATION ----- */
  10.  
  11.  
  12. #topnav {
  13.     width:750px;
  14.     background-color:#bcbcbc;
  15.     height:30px;
  16.     z-index: 1;
  17.     position: relative;
  18. }
  19.  
  20. #topnav ul{
  21.     list-style: none;
  22.     margin: 0;
  23.     float: right;
  24.     padding-right: 10px;
  25.     font-size: larger;
  26.     z-index: 500;
  27.     position: relative;
  28. }
  29.  
  30. #topnav li{
  31.     display: inline;
  32.     padding-right: 10px;
  33.     text-transform: lowercase;
  34. }
  35.  
  36. #topnav a{
  37.     text-decoration: none;
  38.     color: white;
  39. }
  40.  
  41.  
  42. /* ----- HEADER ----- */
  43.  
  44.  
  45. #header {
  46.     width:750px;
  47.     height:270px;
  48. }
  49.  
  50. #logo {
  51.   position: relative;
  52.   width: 750px;
  53.   height: 298px;
  54.   z-index: 9999;
  55.   top:-30px;
  56. }
  57.  
  58.  
  59. /* ----- MAIN NAVIGATION ----- */
  60.  
  61.  
  62. #main-nav {
  63.     width:745px;
  64.     background-color:#35BEF2;
  65.     border: 3px solid gray;
  66.     display: table;
  67. }
  68.  
  69. #main-nav ul{
  70.     list-style: none;
  71.     margin: 0;
  72.     display: table-row;
  73. }
  74.  
  75. #main-nav li{
  76.     display: inline-table;
  77.     text-transform: lowercase;
  78.     display: table-cell;
  79.     text-align: center;
  80.     word-wrap: break-word;
  81.     padding: 10px;
  82.     /* font-weight: bold; */
  83. }
  84.  
  85. #main-nav a{
  86.     text-decoration: none;
  87.     color: white;
  88. }
  89.  
  90.  
  91. /* ----- MAIN CONTENT ----- */
  92.  
  93.  
  94. #content {
  95.     width:750px;
  96.     margin-top:10px;
  97.     color: #666666;
  98. }
  99.  
  100. #content ul{
  101.     list-style-image:url(images/bulletpoint.png);
  102. }
  103.  
  104. #content h1, h2{
  105.     color: #35BEF2;
  106. }
  107.  
  108. #content a{
  109.     color: #0d96ca;
  110. }
  111.  
  112. #content a:visited{
  113.     color: #064a64;
  114. }
  115.  
  116.  
  117. /* ----- FOOTER ----- */
  118.  
  119.  
  120. #footer {
  121.     width:750px;
  122.     background-color:#bcbcbc;
  123.     color: #757575;
  124.     margin-top:10px;
  125.     text-align: center;
  126.     font-size: 15px;
  127.     padding-top: 10px;
  128.     padding-bottom: 10px;
  129.     line-height: 20px;
  130. }
  131.  
  132. #footer ul{
  133.     list-style: none;
  134.     color: white;
  135.     text-transform: lowercase;
  136.     margin: 0;
  137.     padding: 0;
  138.     font-weight: normal;
  139. }
  140.  
  141. #footer li{
  142.     display: inline;
  143. }
  144.  
  145. #footer a{
  146.     color: #0d96ca;
  147. }
  148.  
  149. #footer a:hover{
  150.     color: #35BEF2;
  151. }
  152.  
  153. #footer a:visited{
  154.     color: #064a64;
  155. }
Advertisement
Add Comment
Please, Sign In to add comment