Advertisement
solarre

airmid

May 9th, 2016
5,791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.59 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!---
  5.  
  6. airmid by solarre
  7.  
  8. -keep credit intact
  9. -don't steal any code
  10.  
  11. filler icons by kotei
  12.  
  13. --->
  14.  
  15. <head>
  16. <title>icons</title>
  17. <link rel="shortcut icon" href="{Favicon}">
  18.  
  19. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  20. <script src="//static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  21. <script>
  22. (function($){
  23. $(document).ready(function(){
  24. $("[title]").style_my_tooltips({
  25. tip_follows_cursor:true,
  26. tip_delay_time:1,
  27. tip_fade_speed:100,
  28. attribute:"title"
  29. });
  30. });
  31. })(jQuery);
  32. </script>
  33.  
  34. <script>
  35. $(document).ready(function(){
  36. $(".filters").click(function(e) {
  37. e.preventDefault();
  38. $(".icon").not("." + $(this).attr("rel")).hide(500);
  39. $("." + $(this).attr("rel")).show(500);
  40. });
  41. });
  42. </script>
  43.  
  44. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
  45.  
  46. <style type="text/css">
  47.  
  48. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  49. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  50. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  51.  
  52. .fade-in {
  53. opacity:0;
  54. -webkit-animation:fadeIn ease-in 1;
  55. -moz-animation:fadeIn ease-in 1;
  56. animation:fadeIn ease-in 1;
  57. -webkit-animation-fill-mode:forwards;
  58. -moz-animation-fill-mode:forwards;
  59. animation-fill-mode:forwards;
  60. -webkit-animation-duration:1s;
  61. -moz-animation-duration:1s; animation-duration:1s; }
  62.  
  63. .fade-in.one { -webkit-animation-delay: 0.7s; -moz-animation-delay: 0.7s; animation-delay: 0.7s; }
  64. .fade-in.two { -webkit-animation-delay: 1.2s; -moz-animation-delay: 1.2s; animation-delay: 1.2s; }
  65.  
  66. #s-m-t-tooltip {
  67. max-width:300px;
  68. padding: 5px 8px;
  69. margin:10px;
  70. background-color:#fff;
  71. font-size:8px;
  72. letter-spacing:1px;
  73. text-transform:uppercase;
  74. color:#777;
  75. border-radius:2px;
  76. border:1px solid #f7f7f7;
  77. z-index:10000000000000000000000000000000000000000000000000;
  78. transition:0.5s ease-in-out;
  79. -webkit-transition:0.5s ease-in-out;
  80. -moz-transition:0.5s ease-in-out;
  81. -ms-transition:0.5s ease-in-out;
  82. -o-transition:0.5s ease-in-out;
  83. }
  84.  
  85. ::-webkit-scrollbar {width:11px; height:auto; background:#fff;}
  86. ::-webkit-scrollbar-corner {background:transparent;}
  87. ::-webkit-scrollbar-thumb:vertical {background:#eee; width:1px; border:5px solid #fff;}
  88. ::-webkit-scrollbar-thumb:horizontal {background:#eee;height:4px !important;}
  89. ::-webkit-scrollbar-increment {width:4px; height:4px; background-color:#fff;}
  90.  
  91. iframe#tumblr_controls, iframe.tmblr-iframe.tmblr-iframe--desktop-loggedin-controls.iframe-controls--desktop, .tmblr-iframe {
  92. position:fixed;
  93. wh-space:nowrap;
  94. -webkit-filter: invert(100%);
  95. -moz-filter: invert(100%);
  96. -o-filter: invert(100%);
  97. -ms-filter: invert(100%);
  98. filter: invert(100%);
  99. opacity:.7;
  100. }
  101.  
  102. body {
  103. background:#fff;
  104. margin:0px;
  105. color:#222;
  106. font:10px calibri;
  107. line-height:15px;
  108. -moz-font-smoothing:subpixel-antialiased;
  109. -webkit-font-smoothing:subpixel-antialiased;
  110. font-smoothing:subpixel-antialiased;
  111. }
  112.  
  113. a {
  114. text-decoration:none;
  115. color:#777; /* color of links */
  116. -moz-outline-style:none;
  117. transition:0.5s ease-in-out;
  118. -webkit-transition:0.5s ease-in-out;
  119. -moz-transition:0.5s ease-in-out;
  120. -ms-transition:0.5s ease-in-out;
  121. -o-transition:0.5s ease-in-out;
  122. }
  123.  
  124. a:hover {color:#eee;} /* color of links on hover */
  125.  
  126. img {border:none;max-width:100%;height:auto;}
  127.  
  128. #header {
  129. height:auto;
  130. padding:20px;
  131. z-index:2;
  132. margin:50px auto 0;
  133. width:400px;
  134. }
  135.  
  136. .title {
  137. font:lighter 12px calibri;
  138. text-transform:uppercase;
  139. display:block;
  140. width:300px;
  141. margin:4px auto;
  142. letter-spacing:5px;
  143. text-indent:5px;
  144. padding-top:10px;
  145. text-align:center;
  146. line-height:130%;
  147. }
  148.  
  149. .title a {color:#333;}
  150.  
  151. .desc {
  152. font-size:10px;
  153. text-align:center;
  154. line-height:125%;
  155. letter-spacing:0.5px;
  156. height:auto;
  157. padding:10px;
  158. color:#333;
  159. }
  160.  
  161. .links {
  162. height:auto;
  163. width:auto;
  164. margin-bottom:-15px;
  165. padding:0px 0 10px;
  166. text-align:center;
  167. font-size:10px;
  168. text-transform:none;
  169. }
  170.  
  171. .links a {display:inline-block;padding:2px 5px;}
  172.  
  173. a.filters {padding:7px 3px 2px;}
  174.  
  175. #content {
  176. width:720px;
  177. padding:50px;
  178. margin:auto auto 30px;
  179. z-index:5;
  180. text-align:center;
  181. }
  182.  
  183. .icon {
  184. width:80px;
  185. height:80px;
  186. border:1px solid #f8f8f8;
  187. border-radius:2px;
  188. padding:8px;
  189. display:inline-block;
  190. margin:10px;
  191. }
  192.  
  193. .icon img {width:80px;height:80px;border-radius:2px;display:inline-block;}
  194. .icon img[width] {max-width:none;}
  195.  
  196. #credit, #credit a {
  197. position:fixed;
  198. bottom:20px;
  199. right:20px;
  200. color:{color:text};
  201. font:normal normal 12px calibri;
  202. text-decoration:none;
  203. }
  204.  
  205. </style></head><body>
  206.  
  207. <div id="header" class="box fade-in one">
  208. <div class="title">icons</div>
  209.  
  210. <!-- ya description -->
  211. <div class="desc">lorem ipsum</div>
  212.  
  213. <!-- ya links -->
  214. <div class="links">
  215. <a href="/">index</a> ∙ <a href="/ask">ask</a>
  216. <br>
  217.  
  218. <!-- ya filters
  219.  
  220. format is:
  221. <a href="#" rel="whatuwannatagitas" class="filters">filter name</a>
  222.  
  223. so icons w/ <div class="icon pk"> would be shown when u click on the link w/ rel="pk"
  224.  
  225. you'll figure it out i believe in u
  226.  
  227. -->
  228.  
  229. <a href="#" rel="icon" class="filters">all</a>
  230. <a href="#" rel="pk" class="filters">pink</a>
  231. <a href="#" rel="yl" class="filters">yellow</a>
  232. <a href="#" rel="gr" class="filters">green</a>
  233. <a href="#" rel="bl" class="filters">blue</a>
  234. <a href="#" rel="fl" class="filters">faceless</a>
  235. <a href="#" rel="fm" class="filters">femme</a>
  236. <a href="#" rel="hm" class="filters">homme</a>
  237.  
  238. </div>
  239. </div>
  240.  
  241.  
  242. <div id="content" class="box fade-in two">
  243.  
  244. <!---
  245.  
  246. format is:
  247. <div class="icon whatuwannatagitas"><img src="imgURL"></div>
  248.  
  249. u can prob figure it out from the filler icons below
  250.  
  251. --->
  252.  
  253. <div class="icon"><img src=""></div>
  254. <div class="icon"><img src=""></div>
  255. <div class="icon"><img src=""></div>
  256. <div class="icon"><img src=""></div>
  257. <div class="icon"><img src=""></div>
  258. <div class="icon"><img src=""></div>
  259.  
  260. <div class="icon wh fm"><img src="http://static.tumblr.com/vmteopo/JPbo43xqx/g.jpg"></div>
  261. <div class="icon fm fl"><img src="http://static.tumblr.com/vmteopo/5Xqo6oyea/eslee.png"></div>
  262. <div class="icon hm fl"><img src="http://static.tumblr.com/vmteopo/Ol5o6vis7/i_need_u.jpg"></div>
  263. <div class="icon fl bl"><img src="http://static.tumblr.com/vmteopo/1f0o0evzm/drowning.png"></div>
  264. <div class="icon fm gr"><img src="http://static.tumblr.com/vmteopo/dGVo43s8v/ye_fei2.jpg"></div>
  265. <div class="icon gr fl fm"><img src="http://static.tumblr.com/vmteopo/XOanzs6tq/akaya.png"></div>
  266. <div class="icon fl yl"><img src="http://static.tumblr.com/vmteopo/9vMo6n5u3/kinfolk_best_medicine.png"></div>
  267. <div class="icon pl fl"><img src="http://static.tumblr.com/vmteopo/Eaio6p5sg/braidsa.jpg"></div>
  268. <div class="icon fl fm"><img src="http://static.tumblr.com/vmteopo/MAso6oyxe/cherieloup.png"></div>
  269. <div class="icon fm"><img src="http://static.tumblr.com/vmteopo/3rEo5z653/jimabaji2.png"></div>
  270. <div class="icon fm wh"><img src="http://static.tumblr.com/vmteopo/DS5o5z80g/a_rooki2.jpg"></div>
  271. <div class="icon wh hm"><img src="http://static.tumblr.com/vmteopo/wRGo5z80n/han_seungsoo.png"></div>
  272.  
  273. </div>
  274.  
  275.  
  276. <div id="credit"><a href="http://solarre.tumblr.com" title="solarre">☼</a></div>
  277. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement