odeysseus_thm

tags / EASE

Feb 27th, 2016
15,215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5.  
  6.  
  7.  
  8.  
  9.  
  10. ease
  11.  
  12. @odeysseus
  13.  
  14.  
  15.  
  16.  
  17.  
  18. - you can choose new colors from colorpicker.com
  19. - credits @ odeysseus.tumblr.com/credit
  20.  
  21. -->
  22.  
  23.  
  24. <link rel="shortcut icon" href="{Favicon}">
  25. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  26.  
  27. <title>navigation</title>
  28.  
  29. <!--fonts-->
  30.  
  31. <link href='https://fonts.googleapis.com/css?family=Karla:400,700' rel='stylesheet' type='text/css'>
  32.  
  33. <style type="text/css">
  34.  
  35.  
  36. @-webkit-keyframes fade-in {
  37. 0% {opacity: 0;}
  38. 100% { opacity: 1; }
  39. }
  40.  
  41. @-moz-keyframes fade-in {
  42. 0% { opacity: 0; }
  43. 100% { opacity: 1; }
  44. }
  45.  
  46. @keyframes fade-in {
  47. 0% { opacity: 0; }
  48. 100% { opacity: 1; }
  49. }
  50.  
  51. ::-webkit-scrollbar{
  52. height:3px;
  53. width:1px;
  54. background:#eee;
  55. }
  56.  
  57. ::-webkit-scrollbar-thumb {background:#eee;}
  58.  
  59. ::-webkit-scrollbar-track {background:transparent;}
  60.  
  61. ::-moz-selection{ background: #eee; color:#777;}
  62. ::selection { background:#eee; color:#777; }
  63.  
  64. body {
  65. background:#fff; /*main background*/
  66. color:#767676;
  67. font-family:'Karla', sans-serif; /*main font*/
  68. font-weight:400;
  69. font-size:10px;
  70. text-align:justify;
  71. line-height:16px;
  72. -moz-osx-font-smoothing:grayscale;
  73. -webkit-font-smoothing:antialiased;
  74. font-smoothing:antialiased;
  75. }
  76.  
  77.  
  78. a {
  79. color:#aaa; /*link color*/
  80. text-decoration:none;
  81. transition:all .4s ease;
  82. }
  83.  
  84. a:hover {
  85. text-decoration:none;
  86. font-style:italic;
  87. color:#555; /*link hover*/
  88. }
  89.  
  90. b,strong {
  91. font-weight:700;
  92. color:#555;
  93. }
  94.  
  95. #cred {
  96. bottom:27px;
  97. font-size:11px;
  98. position:fixed;
  99. right:30px;
  100. }
  101.  
  102. section {
  103. margin:100px auto;
  104. width:calc(212px * 3); /* change the 3 to however many columns you want*/
  105. }
  106.  
  107. .box {
  108. border-radius:0px;
  109. width:170px;
  110. margin:0px 20px 20px 0px;
  111. padding:10px;
  112. border:1px solid #eee; /*tag box border*/
  113. background:#fafafa; /*tag box background*/
  114. animation:1s fade-in;
  115. -webkit-animation:1s fade-in;
  116. -moz-animation:1s fade-in;
  117. }
  118.  
  119. .link a {
  120. width:49%;
  121. display:inline-block;
  122. box-sizing:border-box;
  123. padding:4px 2.5px;
  124.  
  125. }
  126.  
  127.  
  128.  
  129. .link {
  130. margin-top:5px;
  131. }
  132.  
  133. .title {
  134. text-align:center;
  135. font-size:10px;
  136. text-transform:uppercase;
  137. letter-spacing:1px;
  138. color:#222;
  139. padding-bottom:5px;
  140. border-bottom:1px solid #eee; /*tag box border*/
  141. transition:all .4s ease;
  142. }
  143.  
  144. header {
  145. margin:90px auto 0px auto;
  146. text-align:center;
  147. }
  148.  
  149. .t {
  150. font-size:12px;text-transform:uppercase;letter-spacing:1px;color:#444;
  151. }
  152.  
  153. nav {
  154. margin:10px auto 0px;padding-top:10px;border-top:1px solid #eee;width:130px;color:#aaa;
  155. }
  156.  
  157. .tmblr-iframe { display:none!important; }
  158. </style>
  159.  
  160. </head>
  161.  
  162. <body>
  163.  
  164. <header>
  165. <div class="t">navigation</div><!--header title-->
  166. <nav> <!--header links: don't edit pls-->
  167. <a href="/">return</a> / <a href="http://tumblr.com/dashboard">dashboard</a> / <a href="http://odeysseus.tumblr.com">theme</a></nav>
  168. </header>
  169.  
  170.  
  171. <section>
  172. <!--start tags: there are two example boxes below, add as many as you require-->
  173.  
  174. <div class="box">
  175. <div class="title">tag group</div> <!--tag group heading-->
  176. <div class="link">
  177. <a href="/tagged/">tag name</a>
  178. <a href="/tagged/">tag name</a>
  179. <a href="/tagged/">tag name</a>
  180. <a href="/tagged/">tag name</a>
  181. </div>
  182. </div>
  183.  
  184. <div class="box">
  185. <div class="title">tag group</div> <!--tag group heading-->
  186. <div class="link">
  187. <a href="/tagged/">tag name</a>
  188. <a href="/tagged/">tag name</a>
  189. <a href="/tagged/">tag name</a>
  190. <a href="/tagged/">tag name</a>
  191. <a href="/tagged/">tag name</a>
  192. <a href="/tagged/">tag name</a>
  193. <a href="/tagged/">tag name</a>
  194. <a href="/tagged/">tag name</a>
  195. </div>
  196. </div>
  197.  
  198. <!--end tags: do not edit beyond this point-->
  199. </section>
  200.  
  201. <div id="cred"><a href="http://odeysseus.tumblr.com">O</a></div>
  202.  
  203. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  204. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  205. <script type="text/javascript">
  206. $(window).load(function () {
  207. $('section').masonry({
  208. itemSelector : ".box",
  209. },
  210. function() { $('section').masonry({ appendedContent: $(this) }); }
  211. );
  212. });
  213. </script>
  214.  
  215. </body>
  216.  
  217.  
  218.  
  219. </html>
Advertisement
Add Comment
Please, Sign In to add comment