Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. * CSS Document */
  2.  
  3. a:link
  4. {
  5. color:#0099FF;
  6. }
  7.  
  8. body
  9. margin: 0;
  10. padding: 0;
  11. background: #ccc;
  12. }
  13.  
  14. .nav ul {
  15. list-style: none;
  16. background-color: #444;
  17. text-align: center;
  18. padding: 0;
  19. margin: 0;
  20. }
  21. .nav li {
  22. font-family: 'Oswald', sans-serif;
  23. font-size: 1.2em;
  24. line-height: 40px;
  25. height: 40px;
  26. border-bottom: 1px solid #888;
  27. }
  28.  
  29. .nav a {
  30. text-decoration: none;
  31. color: #fff;
  32. display: block;
  33. transition: .3s background-color;
  34. }
  35.  
  36. .nav a:hover {
  37. background-color: #005f5f;
  38. }
  39.  
  40. .nav a.active {
  41. background-color: #fff;
  42. color: #444;
  43. cursor: default;
  44. }
  45.  
  46. @media screen and (min-width: 600px) {
  47. .nav li {
  48. width: 120px;
  49. border-bottom: none;
  50. height: 50px;
  51. line-height: 50px;
  52. font-size: 1.4em;
  53. }
  54.  
  55. /* Option 1 - Display Inline */
  56. .nav li {
  57. display: inline-block;
  58. margin-right: -4px;
  59. }
  60.  
  61. /* Options 2 - Float
  62. .nav li {
  63. float: left;
  64. }
  65. .nav ul {
  66. overflow: auto;
  67. width: 600px;
  68. margin: 0 auto;
  69. }
  70. .nav {
  71. background-color: #444;
  72. }
  73. */
  74. }
  75.  
  76. {
  77. font-family:Arial, Helvetica, sans-serif;
  78. background-color:rgb(111,122,153);
  79. color:rgb(0,51,51);
  80. }
  81.  
  82. h1,h2,h3,h4,h5,h6
  83. {
  84. font-family: "Times New Roman", Times, serif;
  85. }
  86.  
  87. h1
  88. {
  89. color:#000099;
  90. }
  91.  
  92. h2
  93. {
  94. color:#999999;
  95. }
  96.  
  97. #apDiv1 {
  98. position:absolute;
  99. width:60%;
  100. height:200px;
  101. z-index:1;
  102. left: 1300px;
  103. top: 50px;
  104. }
  105. #apDiv2 {
  106. position:absolute;
  107. width:60%;
  108. height:500px;
  109. z-index:1;
  110. left: 280px;
  111. top: 350px;
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement