alicescreed

diversestimulation 2

Aug 9th, 2020
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.36 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>{Title}</title>
  7.  
  8.  
  9. <!-- please do not steal, redistribute, or claim as your own. KEEP CREDIT IN TACT. thank you! -->
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />
  13.  
  14. {/block:Description}
  15.  
  16. <meta name="color:text" content="#d4d4d4">
  17. <meta name="color:bold" content="#aa3727">
  18. <meta name="color:italic" content="#a29278">
  19. <meta name="color:links" content="#a29278">
  20. <meta name="color:borders" content="#cac3c0">
  21. <meta name="color:hover link" content="#e7e7e7">
  22.  
  23. <meta name="text:link1url" content="link">
  24. <meta name="text:link1title" content="title">
  25. <meta name="text:link2url" content="link">
  26. <meta name="text:link2title" content="title">
  27. <meta name="text:link3url" content="link">
  28. <meta name="text:link3title" content="title">
  29. <meta name="text:link4url" content="link">
  30. <meta name="text:link4title" content="title">
  31.  
  32. <link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&family=Shadows+Into+Light&display=swap" rel="stylesheet">
  33.  
  34. <script type="text/javascript"
  35. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  36. <script>
  37. $(document).ready(function() {
  38. //
  39. $('a.poplight[href^=#]').click(function() {
  40. var popID = $(this).attr('rel'); //Get Popup Name
  41. var popURL = $(this).attr('href'); //Get Popup href to define size
  42. var query= popURL.split('?');
  43. var dim= query[1].split('&');
  44. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  45. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  46. var popMargTop = ($('#' + popID).height() + 80) / 2;
  47. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  48. //Apply Margin to Popup
  49. $('#' + popID).css({
  50. 'margin-top' : -popMargTop,
  51. 'margin-left' : -popMargLeft
  52. });
  53. $('body').append('<div id="fade"></div>');
  54. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  55. return false;
  56. });
  57. $('a.close, #fade').live('click', function() {
  58. $('#fade , .popup_block').fadeOut(function() {
  59. $('#fade, a.close').remove(); //fade them both out
  60. });
  61. return false;
  62. });
  63. });
  64. </script>
  65.  
  66.  
  67. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  68. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  69. <script>
  70. (function($){
  71. $(document).ready(function(){
  72. $("[title]").style_my_tooltips({
  73. tip_follows_cursor:true,
  74. tip_delay_time:200,
  75. tip_fade_speed:300
  76. }
  77. );
  78. });
  79. })(jQuery);
  80. </script>
  81.  
  82.  
  83. <style type="text/css">
  84.  
  85.  
  86. body {
  87. font-family: 'Nanum Gothic', sans-serif;
  88. color: {color:text};
  89. font-size: 9pt;
  90. letter-spacing: 0px;
  91. background-color:#000;
  92. background-image: url('https://i.imgur.com/TdjUExf.png');
  93. background-position: top-right;
  94. background-repeat: no-repeat;
  95. background-attachment: fixed;
  96. line-height: 12pt;
  97. text-align: justify;
  98. }
  99.  
  100. #s-m-t-tooltip{
  101. position: absolute;
  102. z-index: 999999999999999999999999999999999999999999999999999999999999;
  103. margin-top: 10px;
  104. margin-left: 5px;
  105. display: block;
  106. color: #fff;
  107. background-image: url('https://i.imgur.com/rl6K9J3.gif');
  108. background-attachment: fixed;
  109. background-repeat: repeat;
  110. background-position: center;
  111. text-align: center;
  112. font-style: italic;
  113. box-shadow: 2px 2px 5px #000;
  114. font-family: 'Nanum Gothic', sans-serif;
  115. letter-spacing: 1px;
  116. text-shadow: 1px 1px 5px #2d2d2d;
  117. border: 4px double{Color:Borders};
  118. padding: 10px;
  119. font-size: 22pt;
  120. margin-bottom: 5px;
  121. }
  122.  
  123. ::-webkit-scrollbar-thumb:vertical {
  124. background-color: {color:scrollbar};
  125. height:auto;
  126. }
  127.  
  128. ::-webkit-scrollbar-thumb:horizontal {
  129. background-color: {color:scrollbar};
  130. height:2px;
  131. }
  132.  
  133. ::-webkit-scrollbar {
  134. height:2px;
  135. width:2px;
  136. background-color:transparent;
  137. }
  138.  
  139.  
  140. a {
  141. text-decoration: none;
  142. color: {color:links};
  143. font-size: 13pt;
  144. line-height: 19pt;
  145. transition-duration: 0.6s;
  146. -moz-transition-duration: 0.6s;
  147. -webkit-transition-duration: 0.6s;
  148. -o-transition-duration: 0.6s;
  149. font-family: 'Nanum Gothic', sans-serif;
  150. font-weight: bold;
  151. letter-spacing: 1px;
  152. text-shadow: 1px 1px 3px #2d2d2d;
  153. }
  154.  
  155.  
  156. a:hover {
  157. text-decoration: none;
  158. letter-spacing: 1px;
  159. filter:blur(2px);
  160. color: {color:hover link};
  161. transition-duration: 0.6s;
  162. -moz-transition-duration: 0.6s;
  163. -webkit-transition-duration: 0.6s;
  164. -o-transition-duration: 0.6s;
  165. }
  166.  
  167. small, sup, sub {
  168. font-size: 100%;
  169. }
  170.  
  171. b, strong {
  172. text-shadow: 1px 1px 4px #2d2d2d;
  173. padding-left: 2px;
  174. padding-right: 2px;
  175. color:{color:bold};
  176. letter-spacing: 0px;
  177. font-size: 12pt;
  178. }
  179.  
  180. i, em {
  181. text-shadow: 1px 1px 4px #2d2d2d;
  182. color:{color:italic};
  183. font-style: italic;
  184. font-family: 'Shadows Into Light', cursive;
  185. letter-spacing: 1px;
  186. padding-left:5px;
  187. padding-right: 5px;
  188. padding-top: 10px;
  189. padding-bottom: 10px;
  190. font-size: 18pt;
  191. }
  192.  
  193.  
  194.  
  195.  
  196. h2 {
  197. text-shadow: 1px 1px 5px #2d2d2d;
  198. font-family: 'Nanum Gothic', sans-serif;
  199. font-size: 16pt;
  200. font-weight: bold;
  201. line-height: 120%;
  202. letter-spacing: 1px;
  203. }
  204.  
  205.  
  206. #info {
  207. padding: 10px;
  208. color: {color:bold};
  209. margin-top: 10px;
  210. background-image: url('https://i.imgur.com/rl6K9J3.gif');
  211. text-align: center;
  212. margin-bottom: 80px;
  213. letter-spacing: 1px;
  214. transition-duration: 0.6s;
  215. -moz-transition-duration: 0.6s;
  216. -webkit-transition-duration: 0.6s;
  217. -o-transition-duration: 0.6s;
  218. font-size:14pt;
  219. border: 4px double{Color:Borders};
  220. }
  221.  
  222. #info a {
  223. color: {color:Bold};
  224. font-family: 'Shadows Into Light', cursive;
  225. font-size: 20pt;
  226. text-shadow: 1px 1px 5px #000;
  227. font-weight:bold;
  228. }
  229.  
  230. #h1 {
  231. text-align: center;
  232. font-family: 'Nanum Gothic', sans-serif;
  233. padding: 10px;
  234. text-shadow: 1px 1px 4px #000;
  235. line-height: 110%;
  236. font-size: 18pt;
  237. background-position: center;
  238. margin-bottom: 5px;
  239. }
  240.  
  241. #sidebar {
  242. margin-left:1133px;
  243. width: 110px;
  244. font-size: 10pt;
  245. margin-top: 180px;
  246. position: fixed;
  247. }
  248.  
  249. #description {
  250. height:193px;
  251. font-size: 10px;
  252. line-height: 14px;
  253. overflow: auto;
  254. }
  255.  
  256. #audio {
  257. text-align: center;
  258. font-size: 8pt;
  259. line-height: 9pt;
  260. }
  261.  
  262.  
  263. #musicinfo {
  264.  
  265. text-transform: uppercase;
  266. margin-top:10px;
  267. }
  268.  
  269. blockquote {
  270. border: 10px solid transparent;
  271. border-image: url('https://i.imgur.com/rl6K9J3.gif') 10 round;
  272. outline: 1px solid {color:borders};
  273. color: #fff;
  274. background-color: #000;
  275. padding: 5px;
  276. font-size: 95%
  277. }
  278.  
  279. blockquote img {
  280. max-width: 100%;
  281. display: block;
  282. height: auto
  283. }
  284.  
  285. img {
  286. max-width: 100%;
  287. display: block;
  288. height: auto
  289. }
  290.  
  291.  
  292. ol.notes {
  293. text-align: left;
  294. list-style: upper-roman;
  295. padding: 10px;
  296.  
  297. }
  298.  
  299.  
  300. #info a:hover {
  301. color: {color:bold};
  302. }
  303.  
  304. #credit {
  305. right:10px;
  306. bottom:7px;
  307. padding:5px;
  308. font-size:10px;
  309. position:fixed;
  310. background-image: url('https://i.imgur.com/rl6K9J3.gif');
  311. text-align: center;
  312. font-style: italic;
  313. font-family: 'Nanum Gothic', sans-serif;
  314. letter-spacing: 1px;
  315. border: 4px double {Color:Borders};
  316. padding: 5px;
  317. font-size: 120%;
  318. margin-bottom: 5px;
  319. transition-duration: 0.6s;
  320. -moz-transition-duration: 0.6s;
  321. -webkit-transition-duration: 0.6s;
  322. -o-transition-duration: 0.6s;
  323. }
  324.  
  325.  
  326. #credit a {
  327. font-family: 'Nanum Gothic', sans-serif;
  328. color:#fff;
  329. padding:5px;
  330. letter-spacing:1px;
  331. text-decoration:none;
  332. font-weight:bold;
  333. }
  334.  
  335. #tags a {
  336. font-family: verdana;
  337. font-weight: bold;
  338. font-size: 8px;
  339. line-height: 6px;
  340. color: white;
  341. text-transform: uppercase;
  342. text-shadow: 1px 1px 1px #000;
  343. }
  344.  
  345. #post {
  346. width: 500px;
  347. margin-bottom: 25px;
  348. }
  349.  
  350. #posts {
  351. width: 500px;
  352. background-color: #000;
  353. height: auto;
  354. border-left: 3px solid #cac3c0;
  355. border-right: 3px solid #cac3c0;
  356. overflow-y: auto;
  357. margin-top: -10px;
  358. padding: 25px;
  359. position: absolute;
  360. margin-left:543px;
  361. }
  362.  
  363. #ask a {
  364. color: {color:italic};
  365. text-shadow: 1px 1px 4px #000;
  366. font-size:20pt;
  367. font-family: 'Shadows Into Light', cursive;
  368. }
  369.  
  370. #ask {
  371. background-image: url('https://i.imgur.com/rl6K9J3.gif');
  372. background-repeat: repeat;
  373. text-align: center;
  374. color: {Color:text};
  375. padding: 10px;
  376. height: auto;
  377. border: 4px double{Color:Borders};
  378. background-color: #040404;
  379. text-shadow: 1px 1px 3px #fff;
  380. }
  381.  
  382. #pa { margin-top: 20px;
  383. text-align: center;
  384. }
  385.  
  386. #pa a {
  387. text-shadow: 1px 1px 5px #000;
  388. color: #fff;
  389. opacity: .7;
  390. font-family: 'Nanum Gothic', sans-serif;
  391. text-transform: uppercase;
  392. font-size: 15pt;
  393. }
  394.  
  395. @keyframes bounce {
  396. 0% { transform: translateY(0); }
  397. 100% { transform: translateY(-10px); }
  398. }
  399.  
  400. #li {
  401. position: fixed;
  402. animation: bounce 2s;
  403. animation-direction: alternate;
  404. animation-iteration-count: infinite;
  405. transition-duration: 0.6s;
  406. }
  407.  
  408. #li a {
  409. animation: bounce 2s;
  410. animation-direction: alternate;
  411. animation-iteration-count: infinite;
  412. transition-duration: 0.6s;
  413. color: #000;
  414. opacity: .8;
  415. font-size: 40pt;
  416. line-height: 35px;
  417. text-shadow: 2px 2px 10px #fff;
  418. font-family: 'caveat', handwritten;
  419. }
  420.  
  421. #li a:hover {
  422. opacity: 1;
  423. filter: blur(2px);
  424. }
  425.  
  426.  
  427. </style>
  428.  
  429. </head>
  430.  
  431. <body>
  432.  
  433. <div id="sidebar">
  434. <div id="description">
  435. {Description}<p>
  436. </div>
  437. <div id="pa">{block:Pagination}
  438. {block:PreviousPage}
  439. <a href="{PreviousPage}">fall</a> /
  440. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  441. {/block:NextPage}
  442. {/block:Pagination}</div>
  443. </div>
  444.  
  445. <div id="li">
  446.  
  447. <a href="/" title="home" style="position: fixed; margin-top: 160px; margin-left: 100px; font-size: 70pt;">♠</a>
  448. <a href="/ask" title="message" style="position: fixed; margin-top: 300px; margin-left: 250px; font-size: 50pt;" >♠</a>
  449. <a href="{text:link1url}" title="{text:link1title}" style="position: fixed; margin-top: 30px; margin-left: 450px;">♠</a>
  450. <a href="{text:link2url}" title="{text:link2title}" style="position: fixed; margin-top: 530px; margin-left: 400px; font-size: 60pt;">♠</a>
  451. <a href="{text:link3url}" title="{text:link3title}" style="position: fixed; margin-top: 100px; margin-left: 1120px;">♠</a>
  452. <a href="{text:link4url}" title="{text:link4title}" style="position: fixed; margin-top: 450px; margin-left: 1260px; font-size: 50pt;">♠</a>
  453.  
  454.  
  455.  
  456. </div>
  457.  
  458. <div id="posts">
  459.  
  460.  
  461. {block:Posts}<div id="post">
  462.  
  463.  
  464.  
  465. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  466.  
  467. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  468.  
  469. {Caption} {/block:Caption}{/block:Photo}
  470.  
  471. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  472.  
  473. {/block:Photoset}
  474.  
  475. {block:Quote}<b style="text-align: center; font-size: 18pt; line-height: 20pt;">{Quote}</b>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  476.  
  477. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  478.  
  479. {Description}{/block:Description}{/block:Link}
  480.  
  481. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  482.  
  483. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  484.  
  485. {block:Audio}
  486. <div id="audio">
  487. {block:TrackName}
  488. <div id="musicinfo" style="margin-top: 5px;">
  489. {AudioPlayerGrey} <br>
  490. {TrackName} by
  491. {/block:TrackName}
  492. {block:Artist}
  493. {Artist}
  494. {/block:Artist}
  495.  
  496. </div>
  497. </div>
  498. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  499. {/block:Audio}
  500.  
  501.  
  502. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  503.  
  504. {block:Answer}
  505. <div id="ask">
  506. <center>
  507. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  508. {Asker} asked,<br>
  509. {Question}
  510. </div>
  511. {Answer}{/block:Answer}
  512.  
  513. <div id="info">
  514. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}️</a> ♠ <a href="{Permalink}" title="{NoteCount} notes">{notecount}️</a> ♠ <a href="{ReblogURL}" title="reblog">reblog️</a>
  515. <div id="tags">
  516. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  517. {/block:Tags}{/block:HasTags}
  518. </div>
  519. </div>
  520.  
  521.  
  522. </div>
  523. {block:PostNotes}<Div style="width: 500px;">
  524.  
  525.  
  526. {PostNotes}</div>{/block:PostNotes}
  527. {/block:Posts}</div>
  528.  
  529.  
  530. <div id="credit">
  531. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  532. </div>
  533.  
  534.  
  535.  
  536.  
  537. </body>
  538.  
  539.  
  540.  
  541. </html>
Add Comment
Please, Sign In to add comment