psychedelic-cunts

awards

Sep 1st, 2022
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <head>
  4.  
  5. <!--
  6.  
  7. Blossom Theme by Mhango
  8. A Faves / Networks Page Layout
  9. Version 1 (4th July 2016)
  10.  
  11. Credits to
  12. fontawesome.com for the icons
  13. fonts.google.com for the fonts
  14. Example pictures found on tumblr.
  15.  
  16. Rules: - don't reupload or claim as your own
  17. - don't edit or remove the credits!!!
  18. - don't use as a base code
  19. - thievery will be reported immediately
  20.  
  21. (This theme works both as a blog and a page theme.)
  22.  
  23. -->
  24.  
  25.  
  26. <title>{Title}</title>
  27. <link rel="shortcut icon" href="{Favicon}">
  28. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  29. <meta charset="utf-8">
  30.  
  31.  
  32. <link href="https://fonts.googleapis.com/css?family=Muli:400,400i" rel="stylesheet">
  33. <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
  34. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  35.  
  36.  
  37. <!-- TOOLTIP CODE -->
  38.  
  39. <script type="text/javascript"
  40. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  41. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  42. <script>
  43. (function($){
  44. $(document).ready(function(){
  45. $("[title]").style_my_tooltips({
  46. tip_follows_cursor:true,
  47. tip_delay_time:200,
  48. tip_fade_speed:300
  49. }
  50. );
  51. });
  52. })(jQuery);
  53. </script>
  54.  
  55. <!-- END OF TOOLTIP CODE -->
  56.  
  57.  
  58. <style type="text/css">
  59.  
  60.  
  61. /* Tooltips */
  62.  
  63. #s-m-t-tooltip {
  64. max-width:300px;
  65. border-radius: 0px;
  66. padding:3px 5px 3px 5px;
  67. margin:20px 7px -2px 20px;
  68. background-color:#fff;
  69. border:1px solid #FEDBE2;
  70. font-family:'Muli', Helvetica, Arial, sans-serif;
  71. font-size:10px;
  72. color:#000;
  73. z-index:999999999999999999999999999999999999;
  74. font-weight:normal;
  75. text-align:center;
  76. text-transform:uppercase;
  77. }
  78.  
  79. /* Scrollbar */
  80.  
  81. ::-webkit-scrollbar-thumb{
  82. background-color: #FEDBE2;
  83. border: 3px solid #fff;
  84. height:auto;
  85. -moz-border-radius: 10px;
  86. border-radius: 0px;
  87. }
  88.  
  89. ::-webkit-scrollbar {
  90. height:auto;
  91. width:9px;
  92. background-color: #fff;
  93. border: 4px solid #fff;
  94. }
  95.  
  96. /* Text selection */
  97.  
  98. ::-moz-selection {
  99. background: #FEF5F7;
  100. color: #000;
  101. }
  102.  
  103. ::selection {
  104. background: #FEF5F7;
  105. color: #000;
  106. }
  107.  
  108. /* Basic styles */
  109.  
  110. body {
  111. font-family:'Muli', Helvetica, Arial, sans-serif;
  112. font-size: 11px;
  113. color: #000;
  114. background-position: fixed;
  115. background-attachment:fixed;
  116. background-repeat:repeat;
  117. background-color:#fff;
  118. }
  119.  
  120. /* Basic links */
  121.  
  122. a {
  123. color:#000;
  124. text-decoration:none;
  125. -webkit-transition-duration:.6s;
  126. -moz-transition-duration:.6s;
  127. -o-transition-duration:.6s;
  128. -ms-transition-duration:.6s;
  129. }
  130.  
  131. a:hover {
  132. color: #FBC3CF;
  133. -webkit-transition-duration:.6s;
  134. -moz-transition-duration:.6s;
  135. -o-transition-duration:.6s;
  136. -ms-transition-duration:.6s;
  137. }
  138.  
  139. /* Box container */
  140.  
  141. #content {
  142. width:700px;
  143. margin-left:-350px;
  144. margin-top:150px;
  145. left:50%;
  146. float: left;
  147. position:absolute;
  148. }
  149.  
  150. /* Member boxes */
  151.  
  152. .member {
  153. overflow:hidden;
  154. display: inline-block;
  155. margin:18px;
  156. }
  157.  
  158. .icon {
  159. padding: 10px;
  160. border:1px solid #FEDBE2;
  161. background: #fff;
  162. }
  163.  
  164. .icon img {
  165. height:110px;
  166. width:110px;
  167. }
  168.  
  169. .name {
  170. padding:8px;
  171. border-bottom:1px solid #FEDBE2;
  172. border-left:1px solid #FEDBE2;
  173. border-right:1px solid #FEDBE2;
  174. background: #fff;
  175. text-align:center;
  176. font-size:13px;
  177. letter-spacing:1px;
  178. text-transform:uppercase;
  179. font-family: 'Montserrat', 'Muli', Helvetica, Arial, sans-serif;
  180. }
  181.  
  182. .overlay {
  183. text-align:center;
  184. opacity:0;
  185. width:110px;
  186. height:110px;
  187. position:absolute;
  188. background-color:rgba(255,255,255,.8);
  189. padding:10px;
  190. margin-top:-131px;
  191. margin-left:1px;
  192. -webkit-transition: all .6s ease;
  193. -moz-transition: all .6s ease;
  194. -o-transition: all .6s ease;
  195. transition: all .6s ease;
  196. }
  197.  
  198. .member:hover .overlay {
  199. opacity:1;
  200. -webkit-transition: all .6s ease;
  201. -moz-transition: all .6s ease;
  202. -o-transition: all .6s ease;
  203. transition: all .6s ease;
  204. }
  205.  
  206. .about {
  207. font-size:12px;
  208. margin-top:50px;
  209. }
  210.  
  211. #important{
  212. bottom:5px;
  213. right:5px;
  214. font-size:12px;
  215. position:fixed;
  216. z-index:9999999999999999999999999999;
  217. }
  218.  
  219. #important a{
  220. color:#000;
  221. }
  222.  
  223. /* Header */
  224.  
  225. #header {
  226. background: #fff;
  227. padding: 8px;
  228. border:1px solid #FEDBE2;
  229. color: #000;
  230. width: 200px;
  231. float:left;
  232. line-height:14px;
  233. height:auto;
  234. right: 50%;
  235. margin-top:10px;
  236. margin-right:-100px;
  237. margin-bottom:50px;
  238. top: 20px;
  239. position:absolute;
  240. box-shadow:0px 0px rgba(0,0,0,0.3);
  241. text-align:center;
  242. z-index: 99;
  243. }
  244.  
  245. .blogtitle {
  246. padding:3px;
  247. margin-top:-16px;
  248. margin-right:20px;
  249. margin-left:20px;
  250. text-align:center;
  251. text-transform:uppercase;
  252. letter-spacing:2px;
  253. font-weight:normal;
  254. font-family: 'Montserrat', 'Muli', Helvetica, Arial, sans-serif;
  255. z-index: 999;
  256. background:white;
  257. color:#FBC3CF;
  258. }
  259.  
  260. .blogtitle a{
  261. text-decoration:none;
  262. background-color:transparent;
  263. font-size:22px;
  264. color:#FBC3CF;
  265. }
  266.  
  267. .blogtitle a:hover{
  268. text-decoration:none;
  269. background-color:transparent;
  270. color:#FEDBE2;
  271. }
  272.  
  273. .description {
  274. font-size:11px;
  275. text-align:center;
  276. }
  277.  
  278. .nav {
  279. border-top:1px solid #FEDBE2;
  280. padding-top:3px;
  281. }
  282.  
  283. .nav a {
  284. color:#000;
  285. text-transform:uppercase;
  286. padding:6px 10px 3px 10px;
  287. opacity: 1.;
  288. font-size:13px;
  289. line-height:100%;
  290. -webkit-transition: all .2s ease-in-out;
  291. -moz-transition: all .2s ease-in-out;
  292. -ms-transition: all .2s ease-in-out;
  293. -o-transition: all .2s ease-in-out;
  294. transition: all .2s ease-in-out;
  295. display: inline-block;
  296. }
  297.  
  298. .nav a:hover {
  299. text-decoration:none;
  300. color:#000;
  301. transform: scale(1.2);
  302. -webkit-transition: all .2s ease-in-out;
  303. -moz-transition: all .2s ease-in-out;
  304. -ms-transition: all .2s ease-in-out;
  305. -o-transition: all .2s ease-in-out;
  306. transition: all .2s ease-in-out;
  307. }
  308.  
  309. </style>
  310.  
  311.  
  312. <body>
  313.  
  314.  
  315. <div id="header">
  316.  
  317.  
  318. <!-- Change the blog title below -->
  319.  
  320. <div class="blogtitle"><a href="/">FAVORITES</a></div>
  321.  
  322.  
  323. <!-- Change the description below -->
  324.  
  325. <p><div class="description">Write a short description here.</div></p>
  326.  
  327.  
  328. <!-- Change the navigation below, icons from https://fontawesome.com -->
  329.  
  330. <div class="nav">
  331.  
  332. <a href="https://www.tumblr.com/dashboard" title="dashboard"><i class="fa fa-home"></i></a>
  333.  
  334. <a href="/" title="blog"><i class="fa fa-user"></i></a>
  335.  
  336. <!-- Don't delete the credit please -->
  337.  
  338. <a href="https://evas-themes.tumblr.com" target="_blank" title="theme by mhango"><i class="fa fa-code"></i></a>
  339.  
  340. </div></div>
  341.  
  342.  
  343.  
  344.  
  345. <!-- This is where the box container begins -->
  346.  
  347. <div id="content">
  348.  
  349.  
  350. <div class="member"> <!--1st row -->
  351. <div class="icon">
  352. <img src="https://67.media.tumblr.com/2dd79db3022fbf9d5ae1447576faae36/tumblr_nv6l6fc0s51qapuajo1_500.jpg"/></div>
  353. <div class="overlay"><div class="about">Description here</div></div>
  354. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  355.  
  356.  
  357.  
  358. <div class="member">
  359. <div class="icon">
  360. <img src="https://66.media.tumblr.com/94e03efcffaf5d480fca06ed7fa2065e/tumblr_n5r0mksVTI1qzsvm1o1_500.jpg"/></div>
  361. <div class="overlay"><div class="about">Description here</div></div>
  362. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  363.  
  364.  
  365.  
  366. <div class="member">
  367. <div class="icon">
  368. <img src="https://66.media.tumblr.com/68f7b346055afc08cf1f64d2b4f36043/tumblr_noxt1cS4Uq1sulnzno1_500.jpg"/></div>
  369. <div class="overlay"><div class="about">Description here</div></div>
  370. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  371.  
  372.  
  373. <div class="member">
  374. <div class="icon">
  375. <img src="https://66.media.tumblr.com/5928fbc5b231d945e93378157863dbd1/tumblr_nbjhy3yUX71r54ex6o1_500.jpg"/></div>
  376. <div class="overlay"><div class="about">Description here</div></div>
  377. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  378.  
  379.  
  380. <div class="member"> <!--2nd row -->
  381. <div class="icon">
  382. <img src="https://66.media.tumblr.com/f5da17b943a5b461fbaa0dc155992bbd/tumblr_nn0sm83aOi1u54b7lo1_500.jpg"/></div>
  383. <div class="overlay"><div class="about">Description here</div></div>
  384. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  385.  
  386.  
  387. <div class="member">
  388. <div class="icon">
  389. <img src="https://66.media.tumblr.com/8744c4ac9db23e6852b33bca9571778e/tumblr_nmrdljWyir1rnajv7o1_500.jpg"/></div>
  390. <div class="overlay"><div class="about">Description here</div></div>
  391. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  392.  
  393.  
  394. <div class="member">
  395. <div class="icon">
  396. <img src="https://67.media.tumblr.com/3d7cb969dcdff235a92481fba9d288a3/tumblr_ny9d29AFz21u78fn7o1_500.jpg"/></div>
  397. <div class="overlay"><div class="about">Description here</div></div>
  398. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  399.  
  400.  
  401. <div class="member">
  402. <div class="icon">
  403. <img src="https://66.media.tumblr.com/22c6b1b7fe1da9621bf1180ad4dcff9e/tumblr_nognkiosJZ1tn6jt3o1_500.jpg"/></div>
  404. <div class="overlay"><div class="about">Description here</div></div>
  405. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  406.  
  407.  
  408. <div class="member"> <!--3rd row -->
  409. <div class="icon">
  410. <img src="https://66.media.tumblr.com/88d1c52d3a65fb51d892da3d5591303a/tumblr_nir95kDwRH1sca8xco1_500.jpg"/></div>
  411. <div class="overlay"><div class="about">Description here</div></div>
  412. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  413.  
  414.  
  415.  
  416. <div class="member">
  417. <div class="icon">
  418. <img src="https://66.media.tumblr.com/b2504b5fb3c22a6525e0f266b9c2d9bc/tumblr_o1ejjdo6IS1sg8ttro1_500.jpg"/></div>
  419. <div class="overlay"><div class="about">Description here</div></div>
  420. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  421.  
  422.  
  423.  
  424. <div class="member">
  425. <div class="icon">
  426. <img src="https://65.media.tumblr.com/ec74fb7cf0dd9c3579716a50bbe5a250/tumblr_myu98u2i6x1r7z6aio1_500.jpg"/></div>
  427. <div class="overlay"><div class="about">Description here</div></div>
  428. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  429.  
  430.  
  431. <div class="member">
  432. <div class="icon">
  433. <img src="https://67.media.tumblr.com/c2c673ae7c22b4a0f67c1860495362d0/tumblr_nvtdh373Po1ro5o6xo1_500.jpg"/></div>
  434. <div class="overlay"><div class="about">Description here</div></div>
  435. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  436.  
  437.  
  438. <div class="member"> <!--4th row -->
  439. <div class="icon">
  440. <img src="https://66.media.tumblr.com/6ac1ee670cdb415919eda7caf8797676/tumblr_o10smmsaMk1semkxlo1_500.jpg"/></div>
  441. <div class="overlay"><div class="about">Description here</div></div>
  442. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  443.  
  444.  
  445. <div class="member">
  446. <div class="icon">
  447. <img src="https://67.media.tumblr.com/03e69adb0ecc1dcefc10edb782930a41/tumblr_o6b80pQA8T1t4c668o1_500.jpg"/></div>
  448. <div class="overlay"><div class="about">Description here</div></div>
  449. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  450.  
  451.  
  452. <div class="member">
  453. <div class="icon">
  454. <img src="https://66.media.tumblr.com/cd5341cee191433490c2377bc9a9d579/tumblr_nzb5m32EFl1skpo5ko1_500.jpg"/></div>
  455. <div class="overlay"><div class="about">Description here</div></div>
  456. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  457.  
  458.  
  459. <div class="member">
  460. <div class="icon">
  461. <img src="https://67.media.tumblr.com/3e42cfbb93bbcd8b575fbcf12946fdfa/tumblr_nmkex9Akmo1thynt0o1_500.jpg"/></div>
  462. <div class="overlay"><div class="about">Description here</div></div>
  463. <div class="name"><a href="MEMBER URL">NAME</a></div></div>
  464.  
  465.  
  466. <!-- To add more members just copy one paragraph from <div class="member"> to </div></div> and paste it above this comment. -->
  467.  
  468.  
  469. </div>
  470.  
  471. <!-- Don't delete or edit this part in any way or I'll find you. -->
  472.  
  473. <div id="important"><a href="https://mhango.tumblr.com" target="_blank" title="theme by mhango"><i class="fa fa-cloud" aria-hidden="true"></i></a></div>
  474.  
  475. <!-- Seriously it's so small just leave it there, ok? -->
  476.  
  477. </body>
  478.  
  479. </html>
Add Comment
Please, Sign In to add comment