dylanohelps

Navigation Page #1

May 4th, 2013
1,140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5.  
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}" />
  8.  
  9. <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
  10.  
  11. <link href='http://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
  12.  
  13. </head>
  14. <style type="text/css">
  15. body {
  16. padding: 0;
  17. margin: 0;
  18. list-style: none;
  19. background-color: #EEEEEE;
  20. background-image:url('http://25.media.tumblr.com/tumblr_m33qwzyv7F1r6uwfxo2_250.png');
  21. background-attachment: fixed;
  22. margin-bottom: 50px;
  23. }
  24.  
  25. a {
  26. text-decoration: none;
  27. color: black;
  28. }
  29.  
  30. ::-webkit-scrollbar-thumb:vertical {
  31. height:10px;
  32. background-color: #505050; }
  33.  
  34. ::-webkit-scrollbar-thumb:horizontal {
  35. height:30px;
  36. background-color: #505050; }
  37.  
  38. ::-webkit-scrollbar {
  39. height: 10px;
  40. width: 5px;
  41. background-color: #ba4b56; }
  42.  
  43. #olympus {
  44. display: block;
  45. height: 60px;
  46. padding: 10px;
  47. background-color: #202020;
  48. }
  49.  
  50. .title {
  51. font-family: 'quicksand';
  52. font-size: 20px;
  53. color: #ba4b56;
  54. margin-top: 10px;
  55. text-align: center;
  56. text-transform: uppercase;
  57. letter-spacing: -1px;
  58. }
  59.  
  60. .links {
  61. display: block;
  62. text-align: center;
  63. }
  64.  
  65. .links a {
  66. font-family: 'roboto condensed';
  67. font-size: 10px;
  68. color: #AAAAAA;
  69. text-transform: uppercase;
  70. background-color: #303030;
  71. padding: 5px 20px;
  72. }
  73.  
  74. #navigation {
  75. display: inline-block;
  76. width: 500px;
  77. height: auto;
  78. margin-top: 60px;
  79. margin-left: 430px;
  80. padding: 10px;
  81. }
  82.  
  83. .box {
  84. float: left;
  85. width: 230px;
  86. height: auto;
  87. background-color: #transparent;
  88. border-top: 1px solid #ba4b56;
  89. padding: 5px;
  90. margin-left: 5px;
  91. margin-top: 20px;
  92. }
  93.  
  94. .box-title {
  95. font-family: 'quicksand';
  96. font-size: 16px;
  97. color: #EEEEEE;
  98. text-transform: uppercase;
  99. background-color: #ba4b56;
  100. text-align: center;
  101. width: 160px;
  102. margin-left: 33px;
  103. margin-top: -15px;
  104. }
  105.  
  106. .box-links a {
  107. display: block;
  108. font-family: 'roboto condensed';
  109. font-size: 10px;
  110. color: #FFFFFF;
  111. text-transform: uppercase;
  112. background-color: #BBBBBB;
  113. padding: 5px 20px;
  114. margin-top: 5px;
  115. text-align: center;
  116. -webkit-transition: all 0.2s ease-in-out;
  117. -moz-transition: all 0.2s ease-in-out;
  118. -o-transition: all 0.2s ease-in-out;
  119. -ms-transition: all 0.2s ease-in-out;
  120. transition: all 0.2s ease-in-out;
  121. }
  122.  
  123. .box-links a:hover {
  124. background-color: #FFFFFF;
  125. color: #ba4b56;
  126. }
  127.  
  128.  
  129. </style>
  130. <body>
  131. <div id="olympus">
  132. <div class="title">&#9813; Navigation &#9813;</div>
  133. <div class="links">
  134. <a href="#">Home</a>
  135. <a href="#">Contact</a>
  136. <a href="http://jakehelps.tumblr.com">Credit</a>
  137. </div>
  138. </div>
  139.  
  140. <div id="navigation">
  141. <!------ BOX ------>
  142. <div class="box">
  143. <div class="box-title">Section 1</div>
  144. <div class="box-links">
  145. <a href="#">Link 1</a>
  146. <a href="#">Link 2</a>
  147. <a href="#">Link 3</a>
  148. <a href="#">Link 4</a>
  149. <a href="#">Link 5</a>
  150. <a href="#">Link 6</a>
  151. </div>
  152. </div>
  153. <!------ BOX ------>
  154. <div class="box">
  155. <div class="box-title">Section 2</div>
  156. <div class="box-links">
  157. <a href="#">Link 1</a>
  158. <a href="#">Link 2</a>
  159. <a href="#">Link 3</a>
  160. <a href="#">Link 4</a>
  161. <a href="#">Link 5</a>
  162. <a href="#">Link 6</a>
  163. <a href="#">Link 7</a>
  164. <a href="#">Link 8</a>
  165. </div>
  166. </div>
  167. <!------ BOX ------>
  168. <div class="box">
  169. <div class="box-title">Section 3</div>
  170. <div class="box-links">
  171. <a href="#">Link 1</a>
  172. <a href="#">Link 2</a>
  173. <a href="#">Link 3</a>
  174. <a href="#">Link 4</a>
  175. <a href="#">Link 5</a>
  176. <a href="#">Link 6</a>
  177. </div>
  178. </div>
  179. <!------ BOX ------>
  180. <div class="box">
  181. <div class="box-title">Section 4</div>
  182. <div class="box-links">
  183. <a href="#">Link 1</a>
  184. <a href="#">Link 2</a>
  185. <a href="#">Link 3</a>
  186. <a href="#">Link 4</a>
  187. </div>
  188. </div>
  189. </div>
  190.  
  191.  
  192.  
  193.  
  194.  
  195. </body>
  196. </html>
Advertisement
Add Comment
Please, Sign In to add comment