Advertisement
caturner746

heartshown

Dec 25th, 2018
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.66 KB | None | 0 0
  1. <!--
  2. This code has been written by http://ddkinzart.tumblr.com
  3. Do not sell, repost, remove credit or claim as your own.
  4.  
  5. __ ____ _ __
  6. ____/ /___/ / /__(_)___ ____ ____ ______/ /_
  7. / __ / __ / //_/ / __ \/_ / / __ `/ ___/ __/
  8. / /_/ / /_/ / ,< / / / / / / /_/ /_/ / / / /_
  9. \__,_/\__,_/_/|_/_/_/ /_/ /___/\__,_/_/ \__/
  10. __ __ __
  11. / /_/ /_ ___ ____ ___ ___ _________ ____/ /__
  12. / __/ __ \/ _ \/ __ `__ \/ _ \ / ___/ __ \/ __ / _ \
  13. / /_/ / / / __/ / / / / / __/ / /__/ /_/ / /_/ / __/
  14. \__/_/ /_/\___/_/ /_/ /_/\___/ \___/\____/\__,_/\___/
  15.  
  16. -->
  17.  
  18. <html>
  19. <head>
  20. <title>{Title}</title>
  21. <link rel="shortcut icon" href="{Favicon}">
  22. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  23. {block:Description}
  24. <meta name="description" content="{MetaDescription}" />
  25. {/block:Description}
  26. </head>
  27.  
  28. <!--tooltip script (it's to edit the way the title of your links look when you hover over them -->
  29. <style>figure{margin:0}.tmblr-iframe{position:absolute}.tmblr-iframe.hide{display:none}</style><link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  30. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  31. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  32. <script>
  33. (function($){
  34. $(document).ready(function(){
  35. $("[title]").style_my_tooltips({
  36. tip_follows_cursor:true,
  37. tip_delay_time:200,
  38. tip_fade_speed:500
  39. });
  40. });
  41. })(jQuery);
  42. </script>
  43.  
  44. <!--pop up tabs script-->
  45. <script>
  46. $(document).ready(function(){
  47. $("ul#tabs li").click(function(e){
  48. if (!$(this).hasClass("active")) {
  49. var tabNum = $(this).index();
  50. var nthChild = tabNum+1;
  51. $("ul#tabs li.active").removeClass("active");
  52. $(this).addClass("active");
  53. $("ul#tab li.active").removeClass("active");
  54. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  55. }
  56. });
  57. });
  58. </script>
  59. <!--script end-->
  60.  
  61. <!--tooltip script end-->
  62. <!--pop up script-->
  63. <script type="text/javascript"
  64. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  65. <script>
  66. $(document).ready(function() {
  67. //
  68. $('a.poplight[href^=#]').click(function() {
  69. var popID = $(this).attr('rel'); //Get Popup Name
  70. var popURL = $(this).attr('href'); //Get Popup href to define size
  71. var query= popURL.split('?');
  72. var dim= query[1].split('&');
  73. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  74. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  75. var popMargTop = ($('#' + popID).height() + 80) / 2;
  76. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  77. //Apply Margin to Popup
  78. $('#' + popID).css({
  79. 'margin-top' : -popMargTop,
  80. 'margin-left' : -popMargLeft
  81. });
  82. $('body').append('<div id="fade"></div>');
  83. $('#fade').css({'filter' : 'alpha(opacity=100)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  84. return false;
  85. });
  86. $('a.close, #fade').live('click', function() {
  87. $('#fade , .popup_block').fadeOut(function() {
  88. $('#fade, a.close').remove(); //fade them both out
  89. });
  90. return false;
  91. });
  92. });
  93. </script>
  94. <!--ask pop script end-->
  95.  
  96. <style type="text/css">
  97.  
  98. /*cursor code, change image to change cursor*/
  99. /*find more at http://pixel-soup.tumblr.com/tagged/cursors */
  100.  
  101. *, body, a { cursor:url("http://i.imgur.com/2qleX.jpg"), auto }
  102. a:hover { cursor:url("http://68.media.tumblr.com/tumblr_m2umkqvNUT1qfamg6.gif"), auto } /*this defines the pointer cursor*/
  103.  
  104. /*these are the custom fonts, you can install more just by pasting the code here*/
  105.  
  106. @font-face { font-family: "devil"; src: url("https://dl.dropboxusercontent.com/s/b2ouch55btvt1wi/who%20asks%20satan.ttf?"); }
  107. @font-face{font-family:"bebas neue";src:url('http://static.tumblr.com/zx3ibzm/JgJovyuzq/bebasneue.otf');}
  108.  
  109.  
  110.  
  111. /*selection color*/
  112.  
  113. ::-moz-selection { /* Code for Firefox */
  114. color: #fff; /*text color of selected text*/
  115. background: #764640; /*color of selection bg*/
  116. }
  117.  
  118. ::selection {
  119. color: #fff; /*text color of selected text*/
  120. background: #764640; /*color of selection bg*/
  121. }
  122.  
  123. /*selection color end*/
  124.  
  125. ::-webkit-scrollbar-thumb {
  126. background-color:#fff; /*scrollbar's slider color*/
  127. background-image:url('URL HERE'); /*optional background image*/
  128. height:0px;
  129. -moz-border-radius: 50px; /*these make bar rounded*/
  130. border-radius: 50px;
  131. }
  132.  
  133. ::-webkit-scrollbar {
  134. height:0px;
  135. width:1px; /*width of slider*/
  136. background-color:transparent; /*scrollbar's main color*/
  137. background-image:url('URL HERE'); /*optional background image*/
  138. }
  139.  
  140. /*the code here is to reduce the opacity of an image and make it more visible on hover, you can remove it if you want your image to always be at 100%*/
  141.  
  142. img, iframe {
  143.  
  144. opacity:1; /*change this to change visibility, set it to 1 if you want it completely visible*/
  145.  
  146. -moz-transition-duration: 0.5s;
  147.  
  148. -o-transition-duration: 0.5s;
  149.  
  150. -webkit-transition-duration: 0.5s;
  151.  
  152. transition-duration: 0.5s;
  153.  
  154. padding:5px;
  155. }
  156.  
  157.  
  158.  
  159. img:hover,iframe:hover {
  160.  
  161. opacity:1;
  162.  
  163. -webkit-filter:none;
  164.  
  165. -moz-transition-duration: 0.5s;
  166.  
  167. -o-transition-duration: 0.5s;
  168.  
  169. -webkit-transition-duration: 0.5s;
  170.  
  171. transition-duration: 0.5s;}
  172.  
  173. /*HOVER IMAGE CODE END*/
  174.  
  175.  
  176. body {
  177. background-color:#010101; /*set this the same color as your background image to avoid black areas on different resolutions*/
  178. background-image:url('https://i.imgur.com/TCzfaXT.png'); /*bg image goes here*/
  179. background-attachment: fixed;
  180. background-repeat: no-repeat;
  181. background-position: left top;
  182. color:#f7f7f7; /*body font color*/
  183. font-family: calibri;
  184. text-align:justify;
  185. font-size: 10px;
  186. letter-spacing:2px;
  187. }
  188.  
  189. .pagi {
  190. font-size:25px;
  191. font-family:calibiri;
  192. margin-top:252px; /*change to decide position of pagination*/
  193. margin-left:907px;
  194. color: #fff; /*color of pagination but keep in mind it's also influence by the 'a' codes as it is a link*/
  195. position:fixed;
  196. -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s;
  197. transition-duration: 0.8s; -o-transition-duration: 0.8s;
  198. background: -webkit-linear-gradient(#8e746e, #78352d);
  199. -webkit-background-clip: text;
  200. -webkit-text-fill-color: transparent;
  201. }
  202.  
  203. /*the tooltip is the text that appears when you hover on a link / tag / etc.
  204. this script stylizes it*/
  205.  
  206. #s-m-t-tooltip{
  207. max-width:400px;
  208. margin:15px;
  209. padding:2px 8px;
  210. background-image: url('https://i.imgur.com/uE7y20x.png'); /*include image if you want a background for the tooltip text*/
  211. background: transparent;
  212. background-repeat:repeat;
  213. background-attachment:fixed;
  214. color:#fff;
  215. /*the text shadow determines the outline of the text because there's no easy way to add an outline to it, you can change all the code to another color*/
  216. z-index:99999999999999999999;
  217. font-size:25px;
  218. letter-spacing:2px;
  219. font-style:bold;
  220. letter-spacing:2px;
  221. font-family: devil;
  222. text-transform:lowercase;
  223. box-shadow:0px 0px 0px;}
  224.  
  225. #s-m-tooltip:hover {
  226. -webkit-transition: all 0.6s ease-out;
  227. -moz-transition: all 0.6s ease-out;
  228. transition: all 0.6s ease-out;
  229. -o-transition:all 0.6s ease;
  230. -ms-transition: all 0.6s ease-in-out;}
  231.  
  232.  
  233. small,sub,sup {
  234. font-size:10px;
  235. }
  236.  
  237. b, bold, strong {
  238. font-size:20px;
  239. text-transform:uppercase;
  240. letter-spacing:1px;
  241. font-weight:normal;
  242. font-family: 'bebas neue';
  243. background: -webkit-linear-gradient(#8e746e, #78352d);
  244. -webkit-background-clip: text;
  245. -webkit-text-fill-color: transparent;
  246. }
  247.  
  248. lft{
  249. float:left;
  250. text-align:left;
  251. }
  252.  
  253. rgt{
  254. float:right;
  255. text-align:right;
  256. }
  257.  
  258. i, italic, em {
  259. font-size:12px;
  260. color: #fff;
  261. font-weight:normal;
  262. letter-spacing:1px;
  263. text-transform:lowercase;
  264. }
  265.  
  266. h1{text-align:left;
  267. }
  268.  
  269. h2{
  270. text-align:center;
  271. }
  272.  
  273. h3{
  274. background-image: url('https://i.imgur.com/uE7y20x.png');
  275. background-repeat:repeat;
  276. background-attachment:fixed;
  277. border: solid 1px #191919; /*color of border of the titles of the sidebar*/
  278. outline: dashed 1px #191919;
  279. outline-offset:2px;
  280. padding:4px;
  281. color:#eae9e9; /*text color of sidebar titles*/
  282. text-shadow:1px 1px #090a0b,
  283. 1px -1px #090a0b,
  284. 1px 0px #090a0b,
  285. 0px 1px #090a0b,
  286. 0px -1px #090a0b,
  287. -1px 1px #090a0b,
  288. -1px 0px #090a0b,
  289. -1px -1px #090a0b;
  290. /*change all the hex of the text shadow to the same code
  291. to change the outline of the text*/
  292. font-size:15px;
  293. font-family:calibri;
  294. text-transform:uppercase;
  295. letter-spacing:1px;
  296. text-align:center;}
  297.  
  298. h4 {
  299. font-family:devil;
  300. font-size:20px;
  301. background: -webkit-linear-gradient(#8e746e, #78352d);
  302. -webkit-background-clip: text;
  303. -webkit-text-fill-color: transparent;
  304. }
  305.  
  306.  
  307.  
  308. hr {
  309. width: 300px;
  310. margin-left: auto;
  311. margin-right: auto;
  312. color:#191919;
  313. border-top:solid 1px #191919;
  314. }
  315.  
  316.  
  317. a,a:visited,a:active {
  318. color:#fff;
  319. text-decoration:none;
  320. -moz-transition-duration: 0.6s;
  321. -o-transition-duration: 0.6s;
  322. -webkit-transition-duration: 0.6s;
  323. transition-duration: 0.6s;
  324.  
  325. }
  326.  
  327. a:hover {
  328. color: #764640; /*color of links on hover*/
  329. -webkit-transition: all 0.6s ease-out;
  330. -moz-transition: all 0.6s ease-out;
  331. transition: all 0.6s ease-out;
  332. -o-transition:all 0.6s ease;
  333. -ms-transition: all 0.6s ease-in-out;}
  334.  
  335. /*POST TITLE SETTINGS*/
  336.  
  337. .titulo {
  338.  
  339. font-family: 'sail';
  340. font-size: 23px; /*size of title*/
  341. text-align: center;
  342. text-transform: lowercase;
  343. color: #eae9e9; /*color of title*/
  344. text-shadow: 0px 3px 0 #764640,
  345. -1px 2px 0 #764640,
  346. 1px 2px 0 #764640;
  347.  
  348. }
  349.  
  350. #container {
  351. position:absolute;
  352. left:400px; /*change to position posts to your bg image*/
  353. top:150px;
  354. height:450px; /*determines height of container*/
  355. overflow-y:scroll;
  356. opacity:0;/*set this as '1' if you'd like the posts to always appear*/
  357. -webkit-transition: all 0.6s ease-out;
  358. -moz-transition: all 0.6s ease-out;
  359. transition: all 0.6s ease-out;
  360. -o-transition:all 0.6s ease;
  361. -ms-transition: all 0.6s ease-in-out;
  362. }
  363.  
  364. #entries {
  365. background-color:#010101; /*set this as background color to hide the image in the background, in the preview case the word reading 'hover' */
  366.  
  367.  
  368. }
  369.  
  370.  
  371. #entries img {
  372. max-width: 100%;
  373. height: auto;
  374.  
  375. }
  376.  
  377. #content {
  378. width:320px; /*determines size of posts*/
  379. margin-bottom:20px;
  380. padding:20px;
  381. }
  382.  
  383.  
  384. #container:hover {
  385. opacity: 1; /*this makes the posts appear on hover if you choose to keep them on '0' opacity when not on hover*/
  386. -webkit-transition: all 0.6s ease-out;
  387. -moz-transition: all 0.6s ease-out;
  388. transition: all 0.6s ease-out;
  389. -o-transition:all 0.6s ease;
  390. -ms-transition: all 0.6s ease-in-out;
  391. }
  392.  
  393. blockquote {
  394. border-left:1px solid #191919; /*color of blockquote*/
  395. margin: 3px 0px 3px 8px;
  396. border-radius:4px;
  397. }
  398.  
  399. blockquote img {
  400. max-width:100%;
  401. height:auto;
  402. }
  403.  
  404. /*ASK*/
  405.  
  406. #asker {
  407. font-size:30px;
  408. margin-bottom:0px;
  409. font-family: devil;
  410. text-align:center;
  411. text-decoration:none;
  412. -webkit-transition: all 0.6s ease-out;
  413. -moz-transition: all 0.6s ease-out;
  414. transition: all 0.6s ease-out;
  415. -o-transition:all 0.6s ease;
  416. -ms-transition: all 0.6s ease-in-out;
  417.  
  418. }
  419.  
  420. #asker a:hover {
  421. color: #764640; /*color of links on hover*/
  422. -webkit-transition: all 0.6s ease-out;
  423. -moz-transition: all 0.6s ease-out;
  424. transition: all 0.6s ease-out;
  425. -o-transition:all 0.6s ease;
  426. -ms-transition: all 0.6s ease-in-out;}
  427.  
  428. #ask {
  429. background: #000;
  430. background: url("https://i.imgur.com/uE7y20x.png");/*image behind the question*/
  431. background-repeat:repeat;
  432. border: solid 1px #191919; /*color of border of the titles of the sidebar*/
  433. outline: dashed 1px #191919;
  434. outline-offset:2px;
  435. padding: 10px 20px 10px 20px;
  436. text-align:center;
  437. text-shadow: 1px 1px #090a0b,
  438. 1px -1px #090a0b,
  439. 1px 0px #090a0b,
  440. 0px 1px #090a0b,
  441. 0px -1px #090a0b,
  442. -1px 1px #090a0b,
  443. -1px 0px #090a0b,
  444. -1px -1px #090a0b;
  445. /*change all the hex of the text shadow to the same code
  446. to change the outline of the text*/
  447. }
  448.  
  449.  
  450. #answer {
  451. padding-top:20px;
  452. }
  453. /*ASK ENDS HERE*/
  454.  
  455. /*CHAT POST BEGINS HERE*/
  456.  
  457. .convo {
  458. font-size: 11px;
  459. text-align:left;
  460. padding:0px;
  461.  
  462. }
  463.  
  464. .convo li {
  465. list-style:none;
  466. }
  467.  
  468. .convo .label {
  469. text-transform: uppercase;
  470. font-weight:bold;
  471.  
  472. }
  473.  
  474. .line_odd .label {
  475. color: #764640; /* Color of odd person in the chat */
  476. background: none;
  477. }
  478.  
  479. .line_even .label {
  480. color: #fff; /* Color of even person in the chat */
  481. }
  482.  
  483. .line_even {
  484. margin:12px;
  485. padding: 5px;
  486. color: #f9f9f9; /*color of even text*/
  487. }
  488.  
  489. .line_odd {
  490. margin:12px;
  491. padding: 5px;
  492. color: #f9f9f9; /*color of odd text*/
  493. }
  494.  
  495.  
  496.  
  497.  
  498. /*CHAT POST ENDS HERE*/
  499.  
  500. /*QUOTE BEGINS HERE*/
  501.  
  502. /*I have the first letter stylized to be the same as the quote, but you can remove that part by simply deleting the p::first-letter*/
  503.  
  504. .quote{
  505. font-size: 23px;
  506. text-align: center;
  507. color: #eae9e9; /*color of quote*/
  508. text-shadow: 0px 3px 0 #764640,
  509. -1px 2px 0 #764640,
  510. 1px 2px 0 #764640;
  511. }
  512.  
  513.  
  514.  
  515. /*QUOTE ENDS HERE*/
  516.  
  517.  
  518. /*LINK POST BEGIN*/
  519.  
  520. #linku {
  521. text-transform:uppercase;
  522. text-align:center;
  523. letter-spacing:0px;
  524. font-weight:normal;
  525. font-family: 'bebas neue';
  526. font-size:14px;
  527. }
  528.  
  529. /*LINK POST END*/
  530.  
  531. /*SIDE BAR / DESCRIPTION BEGINS HERE*/
  532.  
  533. #boxy {
  534. background:#010101;
  535. border: solid 1px #191919; /*color of border of the titles of the sidebar*/
  536. outline: dashed 1px #191919;
  537. outline-offset:2px;
  538. padding:10px;
  539. position:fixed;
  540. top:140px; /*position of the box*/
  541. overflow-y:scroll;
  542. height:100px; /*determines height of the box - increase it if you have too much text and want to avoid scrollbar*/
  543. margin-left:825px;
  544. opacity:1;
  545. -webkit-transition: all 0.7s ease;
  546. -moz-transition: all 0.7s ease;
  547. -o-transition: all 0.7s ease;
  548.  
  549. }
  550.  
  551. #boxy:hover {
  552. background:#010101;
  553. opacity:1;
  554. -webkit-transition: all 0.7s ease;
  555. -moz-transition: all 0.7s ease;
  556. -o-transition: all 0.7s ease;
  557. }
  558.  
  559. #despacito {
  560. background:#010101;
  561. margin-top:10px;
  562. width:150px; /*determines width of description*/
  563. text-align:center;
  564. font-size:9px;
  565.  
  566. }
  567.  
  568. /*SIDE BAR / DESCRIPTION END*/
  569.  
  570. /*TAGS AND INFO BEGINS HERE*/
  571. .permalinks {
  572. text-align:center;
  573. margin-top:15px;
  574. padding-top: 15px;
  575. padding-bottom: 5px;
  576. font-size:9px;
  577. color:#fff;
  578. text-transform:uppercase;
  579. border-top: solid 1px #191919;
  580. -moz-transition-duration:.6s;
  581. -webkit-transition-duration:.6s;
  582. -o-transition-duration:.6s;
  583. -webkit-filter: blur(0px);
  584. background-image: url(''); /*you can insert image here for the permalinks bg*/
  585.  
  586. }
  587.  
  588. .permalinks a {
  589. font-family:calibri;
  590. font-size:9px;
  591. color:#fff;
  592. font-weight:bold;
  593. text-decoration:none;
  594. }
  595.  
  596.  
  597. .permalinks a:hover {
  598. color:#8e746e;
  599. -webkit-transition: all 0.5s ease-in-out;
  600. -moz-transition: all 0.5s ease-in-out;
  601. -o-transition: all 0.5s ease-in-out;
  602. -ms-transition: all 0.5s ease-in-out;
  603. transition: all 0.5s ease-in-out;
  604. }
  605.  
  606. .tags {
  607.  
  608. padding-top:10px;
  609. text-align:center;
  610. padding-left:5px;
  611. padding-right:2px;
  612. color: #764640; /*this determines the color of the small symbol (by default a hashtag but you can change it) next to the tags*/
  613. font-size:9px;
  614. text-shadow:0px 0px 3px #764640
  615. }
  616.  
  617. .tags a {
  618. color:#f7f7f7; /*change this for the actual color of the tags*/
  619. font-size:8px;
  620. font-weight:bold;
  621. font-family:calibri;
  622. text-transform:uppercase;
  623. text-shadow:0px 0px 3px #764640
  624. letter-spacing:0px;
  625.  
  626. }
  627.  
  628.  
  629. .tags a:hover {
  630. color: #764640; /*tag color on hover*/
  631. -webkit-transition: all 0.5s ease-in-out;
  632. -moz-transition: all 0.5s ease-in-out;
  633. -o-transition: all 0.5s ease-in-out;
  634. -ms-transition: all 0.5s ease-in-out;
  635. transition: all 0.5s ease-in-out;
  636.  
  637. }
  638.  
  639.  
  640. /*POP UP CODES AND LINKS BEGIN*/
  641.  
  642.  
  643. #pops {
  644. position:fixed;
  645.  
  646. }
  647.  
  648. #linku2 {
  649. position:fixed;
  650. font-size:22px;
  651. text-decoration:none;
  652. transform: rotate(30deg);
  653. -ms-transform: rotate(30deg);
  654. -webkit-transform: rotate(30deg);
  655. -o-transform: rotate(30deg);
  656. -moz-transform: rotate(30deg);
  657. margin-left:950px;
  658. margin-top:-10px;
  659. }
  660.  
  661. #linku2:hover {
  662. -webkit-filter: blur(3px);
  663. -moz-filter: blur(3px);
  664. -o-filter: blur(3px);
  665. -ms-filter: blur(3px);
  666. filter: blur(3px);
  667. -webkit-transition: all 0.5s ease-in-out;
  668. -moz-transition: all 0.5s ease-in-out;
  669. -o-transition: all 0.5s ease-in-out;
  670. -ms-transition: all 0.5s ease-in-out;
  671. transition: all 0.5s ease-in-out;
  672. }
  673.  
  674.  
  675. .popup_block {
  676. display:none;
  677. HEIGHT:auto;
  678. width:325px;
  679. background:transparent;
  680. padding:0px;
  681. float:left;
  682. position:fixed;
  683. margin:auto;
  684. z-index: 99999;
  685. }
  686.  
  687. .popup_boxy {
  688. background:#010101; /*color of popup background*/
  689. position:absolute;
  690. text-align:center;
  691. font-size: 10px; /*font size of the words inside the box */
  692. padding:20px;
  693. width: 325px;
  694. height:450px; /*height of pop up, I have it set to almost fit the container and be in the position of the posts but you can change it according to preference*/
  695. overflow-y:scroll;
  696. overflow-x:hidden;
  697. top:180px; /*position of pop up*/
  698. left:590px;
  699. z-index: 99999; /*if the box is hiding behind other things in your theme, add more 9′s */
  700. }
  701.  
  702.  
  703. /*tabbed popups begins*/
  704.  
  705. ul#tabs {
  706. list-style-type: none;
  707. padding: 0;
  708. text-align: center;
  709. }
  710.  
  711. ul#tabs li:hover { /*appearance when you hover on titles*/
  712. text-align:justify;
  713. width: 100px; /*width of your title*/
  714. box-shadow: 1px 1px 5px #191919;
  715. background-image: url('https://i.imgur.com/uE7y20x.png'); /*background of tab title*/
  716. background-repeat:repeat;
  717. background-attachment:fixed;
  718. border: ridge 1px white; /*color of border of the titles of the sidebar*/
  719. padding:10px;
  720. margin:10px;
  721. color:#eae9e9; /*text color of tab titles*/
  722. font-size:11px;
  723. font-family:calibri;
  724. text-transform:uppercase;
  725. letter-spacing:1px;
  726. text-align:center;
  727. -webkit-transition: all 0.5s ease-out;
  728. -moz-transition: all 0.5s ease-out;
  729. transition: all 0.5s ease-out;
  730. }
  731.  
  732. ul#tabs li.active { /*your active tab title*/
  733. text-align:justify;
  734. width: 100px; /*width of your title*/
  735. box-shadow: 1px 1px 5px #111;
  736. background-image: url('https://i.imgur.com/uE7y20x.png'); /*background of tab title*/
  737. background-repeat:repeat;
  738. background-attachment:fixed;
  739. border: ridge 1px #191919; /*color of border of the titles of the sidebar*/
  740. padding:10px;
  741. margin:10px;
  742. color:#eae9e9; /*text color of tab titles*/
  743. font-size:11px;
  744. font-family:calibri;
  745. text-transform:uppercase;
  746. letter-spacing:1px;
  747. text-align:center;
  748. -webkit-transition: all 0.5s ease-out;
  749. -moz-transition: all 0.5s ease-out;
  750. transition: all 0.5s ease-out;
  751. }
  752.  
  753.  
  754. ul#tabs li { /*the rest of the titles / inactive one*/
  755. display:block;
  756. width: 100px;
  757. padding: 10px;
  758. margin:10px;
  759. font-size:11px;
  760. background-color:#010101;
  761. border: solid 1px #191919;
  762. box-shadow: 1px 1px 5px #111;
  763. color:#fff;
  764. font-family:calibri;
  765. text-transform:uppercase;
  766. cursor:pointer;
  767. -webkit-transition: all 0.5s ease-out;
  768. -moz-transition: all 0.5s ease-out;
  769. transition: all 0.5s ease-out;
  770. }
  771.  
  772.  
  773. ul#tab {
  774. list-style-type: none;
  775. margin: 0;
  776. padding: 0;
  777. }
  778. ul#tab li {
  779. display: none;
  780. width:325px;
  781. }
  782. ul#tab li.active {
  783. display: block;
  784. width:325px;
  785. }
  786.  
  787. #tabid { /*this is the navigation of your tabbed pop ups*/
  788. position:absolute;
  789. top: 325px; /*position of navigation*/
  790. left:1030px; /*position of navigation*/
  791. text-align:center;
  792. width:auto;
  793. background:transparent;
  794. height:auto;
  795. overflow:scroll;
  796. text-align:justify;
  797. padding:10px;
  798. font-size:9px;
  799. font-family:calibri;
  800. text-transform:uppercase;
  801. letter-spacing:1px;
  802. text-align:center;
  803. z-index: 999999;
  804.  
  805. }
  806.  
  807. /*end*/
  808.  
  809. img.btn_close {
  810. float: right;
  811. margin: -5px -5px 0 0;
  812. }
  813. /*--Making IE6 Understand Fixed Positioning--*/
  814. *html #fade {
  815. position: absolute;
  816. }
  817. *html .popup_block {
  818. position: absolute;
  819. }
  820.  
  821.  
  822.  
  823. .navi_linksu {
  824. text-align:center;
  825. }
  826.  
  827. .navi_linksu a {
  828. display: inline-block;
  829. width: 80px;
  830. padding: 5px;
  831. margin:5px;
  832. font-size:11px;
  833. background-image: url('https://i.imgur.com/uE7y20x.png');
  834. background-repeat:repeat;
  835. background-attachment:fixed;
  836. border: solid 1px #191919;
  837. color:#fff;
  838. font-family:calibri;
  839. text-transform:uppercase;
  840.  
  841.  
  842. }
  843.  
  844. .navi_linksu a:hover {
  845. -webkit-transition: all .5s ease-in-out;
  846. -moz-transition: all .5s ease-in-out;
  847. -ms-transition: all .5s ease-in-out;
  848. -o-transition: all .5s ease-in-out;
  849. transition: all .5s ease-in-out;
  850. background:#764640;
  851. border: solid 1px #191919;
  852. color:#fff;
  853. }
  854.  
  855.  
  856.  
  857. .versu {
  858. width:80px;
  859. height:auto;
  860. float:left;
  861. padding:20px;
  862. }
  863.  
  864.  
  865. .vee {
  866. text-align:center;
  867. padding:10px;
  868. margin-bottom:20px;
  869. }
  870.  
  871. /*POP UP END*/
  872.  
  873. /* DO NOT REMOVE THIS PART OR MAKE A COLOR THAT IS NOT VISIBLE */
  874. .credit {
  875. font-weight:bold;
  876. background:#010101;
  877. color:#fff;
  878. padding:10px;
  879. font-size:15px;
  880. bottom:0px;
  881. right:20px;
  882. position:fixed;
  883. font-family:'sail';
  884. -webkit-filter: blur(.5px);
  885. -moz-filter: blur(.5px);
  886. -o-filter: blur(.5px);
  887. -ms-filter: blur(.5px);
  888. filter: blur(.5px);
  889.  
  890. }
  891. /*CREDIT END*/
  892.  
  893. /* ---------------ANIMATION 1 -- BOUNCE EFFECT---------------*/
  894.  
  895. /* the first two sections of css are just setting up our object. you can set the positioning and any colours, backgrounds etc as usual! */
  896. .moose-animation{
  897. position:fixed;
  898. margin-left:20px;
  899. margin-top:20px;
  900. /* this is where we set up the animation for the object, there are several lines which seem to repeat the same information, but this is just for cross browser compatibility */
  901.  
  902. /* the next section picks apart the 3 lines needed to set up the animation and explains each. this is the duration, the iteration and the origin */
  903.  
  904. animation: bbounce linear 2.5s; /* this line links us to the keyframe name we set up. it also gives the total duration of the animation, if you want to make the animation slower, increase the time, for a quicker animation, decrease the time */
  905. animation-iteration-count: infinite; /* this makes sure the animation will continue to play, you can change this to a number if you only want the animation to play a certain number of times ( or to 1 if you only want it to play on page loading for example ) */
  906. transform-origin: 50% 50%; /* this just specifies that we want all transformations or effects to be centered on the object. you can change this if you want to pin the transition effect to a corner of your object */
  907.  
  908. /* Safari 4+, Android, Chrome */
  909. -webkit-animation: bbounce linear 2.5s;
  910. -webkit-animation-iteration-count: infinite;
  911. -webkit-transform-origin: 50% 50%;
  912.  
  913. /* Fx 5+ */
  914. -moz-animation: bbounce linear 2.5s;
  915. -moz-animation-iteration-count: infinite;
  916. -moz-transform-origin: 50% 50%;
  917.  
  918. /* Opera 12+ */
  919. -o-animation: bbounce linear 2.5s;
  920. -o-animation-iteration-count: infinite;
  921. -o-transform-origin: 50% 50%;
  922.  
  923. /* IE 10+, Fx 29+ */
  924. -ms-animation: bbounce linear 2.5s;
  925. -ms-animation-iteration-count: infinite;
  926. -ms-transform-origin: 50% 50%;}
  927.  
  928. /* in these examples i'm going to animate an image. this image could also be a link or the trigger for a hoverbox. you can animate pretty much any object, a piece of text, a whole block, a title, etc.*/
  929. .moose-animation img {
  930. height:85px;
  931. width:auto;
  932. padding:5px;}
  933.  
  934. /* this is my keyframe setup. i need to give it a name, in this case it's 'bbounce' - the name that is referred to in the css section above. i need to make sure that all of the browser extensions have the same name. we use percentages to specify at which point in the animation certain states have to be achieved. in the first css section above we specified the duration as 2.5 seconds. so at 0 seconds ( 0% ) the animation will begin. by 50% ( halfway through ) the object will have moved 10px down and by 100% ( the 2.5 second point ) it will have returned to the starting position. you can also use negative values to get things to move to the left or up. try out different settings to see how things move! the command 'transform:translate' will change position. */
  935. @keyframes bbounce{
  936. 0% {transform:translate(0px,0px);}
  937. 50% {transform:translate(0px,10px);}
  938. 100% {transform:translate(0px, 0px);}
  939. }
  940.  
  941. @-moz-keyframes bbounce{
  942. 0% {-moz-transform:translate(0px,0px);}
  943. 50% {-moz-transform:translate(0px,10px);}
  944. 100% {-moz-transform:translate(0px,0px);}
  945. }
  946.  
  947. @-webkit-keyframes bbounce {
  948. 0% {-webkit-transform:translate(0px,0px);}
  949. 50% {-webkit-transform:translate(0px,10px);}
  950. 100% {-webkit-transform:translate(0px,0px);}
  951. }
  952.  
  953. @-o-keyframes bbounce {
  954. 0% {-o-transform:translate(0px,0px);}
  955. 50% {-o-transform:translate(0px,10px);}
  956. 100% {-o-transform:translate(0px,0px);}
  957. }
  958.  
  959. @-ms-keyframes bbounce {
  960. 0% {-ms-transform:translate(0px,0px);}
  961. 50% {-ms-transform:translate(0px,10px);}
  962. 100% {-ms-transform:translate(0px,0px);}
  963. }
  964.  
  965.  
  966.  
  967.  
  968.  
  969. </style>
  970.  
  971. <body>
  972. <!--sidebar begins here-->
  973. <div id="boxy">
  974. <div id="despacito"> selective / canon divergent / headcanon based writing blog for
  975. lori grimes of amc's the walking dead.<br>
  976. developed and written by <i>janni</i>.<br>
  977. established in nov. 2018<br><br>
  978.  
  979. <a href="https://heartshown.tumblr.com" title="home."><i>refresh.</i></a>
  980. </div>
  981. </div>
  982.  
  983. <!--sidebar end-->
  984.  
  985. <!--this is where you edit the size and titles of the scattered links, you can edit their content way below though. The #?w= determines the width of the pop up, make sure to give your popups different box numbers-->
  986. <div id="pops">
  987. <div id="linku2"><div class="moose-animation"><a href="#?w=325" rel="box5" class="poplight" title="links."><img src='https://i.imgur.com/FsRKnqo.png' height=100 /></a></div></div>
  988. </div>
  989.  
  990. <!--/* DO /NOT/ REMOVE THIS PART OR MAKE A COLOR THAT IS NOT VISIBLE */-->
  991. <div class="credit"><a href="http://ddkinzart.tumblr.com" title="code by ddkinzart">D.</a></div>
  992.  
  993. <!--below is where the post structure begins, don't edit below this point if you're not familiar with coding or tumblr theme attritibutes-->
  994.  
  995. {block:Pagination}
  996. <div class="pagi">
  997. {block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  998. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  999. </div>
  1000. {/block:Pagination}
  1001. <div id="container">
  1002. <div id="entries">
  1003. {block:Posts}
  1004. <div id="content">
  1005. {block:Text}{block:Title}<div class="titulo">{Title}</div>{/block:Title}{Body}{/block:Text}
  1006. {block:Photo}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1007. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  1008.  
  1009. {block:Photoset}{Photoset}{block:Caption}{Caption}{/block:Caption}
  1010. {/block:Photoset}
  1011.  
  1012. {block:Quote}<div class="quote">{Quote}</div>{block:Source}{Source}{/block:Source}{/block:Quote}
  1013. {block:Link}
  1014. {block:Thumbnail}
  1015. <img src="{Thumbnail}" alt="{Name}" style="width:95%;border-radius:25px">
  1016. {/block:Thumbnail}
  1017. <div id="linku">
  1018. <span style="font-size:20px">❝ </span> <a href="{URL}" class="link" {Target}>{Name}</a><span style="font-size:20px"> ❞</span>
  1019. </div>
  1020. {/block:Link}
  1021.  
  1022. {block:Chat}
  1023. {block:Title}
  1024. <div class="titulo">{Title}</div>{/block:Title}<br>
  1025. <ul class="convo">{block:Lines}<li class="line_{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}
  1026. {Line}</li>{/block:Lines}</ul>
  1027. {/block:Chat}
  1028.  
  1029. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1030. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1031. {block:Answer}
  1032. <div id="asker" style="text-align:center;">{Asker}</div><div id="ask">{Question}</div>
  1033. <div id="answer">
  1034. {Answer}</div>
  1035. {/block:Answer}
  1036. <div class="permalinks">
  1037. {block:RebloggedFrom}
  1038. <a href="{ReblogParentURL}" title="via: {ReblogParentName}" > ✦ </a>
  1039. {/block:RebloggedFrom}
  1040. <span style="letter-spacing:-0.5px">posted </span><a href="{Permalink}" title="{timeago}" style="letter-spacing:-0.1px;"> &nbsp;{timeago}</a>{block:NoteCount} with
  1041. <a href="{Permalink}" title="{NoteCount} hits."> {NoteCount}</a> hits.{/block:NoteCount}
  1042. {block:ContentSource}
  1043. <a href="{SourceURL}" title="source: {SourceTitle}"> ✦ </a>
  1044. {/block:ContentSource}
  1045. <a href="{ReblogURL}" title="reblog" target="_blank"> ✦ </a>
  1046. {/block:RebloggedFrom}
  1047. </div>
  1048. <div class="tags">
  1049. {block:HasTags}
  1050. {block:Tags}
  1051. <!--you can change symbol before tags to something else--># <a href="{TagURL}" title="{Tag}">{Tag}</a>
  1052. {/block:Tags}
  1053. {/block:HasTags}
  1054. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1055.  
  1056. </div></div>
  1057. {/block:Posts}
  1058. </div>
  1059. </div>
  1060. </body>
  1061.  
  1062.  
  1063. <!--This is where the pop up begins, you can edit beyond this point-->
  1064. <div id="box5" class="popup_block">
  1065. <div id="tabid">
  1066. <ul id="tabs">
  1067. <li class="active">rules.</li>
  1068. <li>inbox.</li>
  1069. <li>verses.</li>
  1070. <li>navi.</li>
  1071. </ul></div>
  1072. <div class="popup_boxy">
  1073. <ul id="tab">
  1074.  
  1075. <li class="active">
  1076.  
  1077. <h3>RULES.</h3><br>
  1078.  
  1079. <lft><b>01.</b>&nbsp;&nbsp;&nbsp;&nbsp;</lft> this is a test. lets just copy and paste some of my rules here for an examble!<br><br><br>
  1080.  
  1081. <rgt><b>02.</b>&nbsp;&nbsp;&nbsp;&nbsp;</rgt> this is a private and selective blog, meaning I only write with mutuals and I am selective in doing it— this way I keep the most muse possible, but this does NOT mean i’m unapproachable! If you want to write come at me in my ims or ask for my discord and we can plot and talk about writing.<br><br><br>
  1082.  
  1083. <lft><b>01.</b>&nbsp;&nbsp;&nbsp;&nbsp;</lft> considering the nature of The Walking Dead, and my character mature and graphic themes will be present on this blog. I am of age as well as my character, so content that is nsfw is also highly likely to appear on the blog. I have no triggers, how ever, I will be tagging general trigger warnings ( i.e. tw bananas ) and if you need anything tagged you can come to me anonymously or not (I won’t ask questions ) and I will start tagging what you asked to be tagged.<br><br><br>
  1084.  
  1085. <rgt><b>02.</b>&nbsp;&nbsp;&nbsp;&nbsp;</rgt> and it just goes on and on and on and on.<br><br><br>
  1086.  
  1087. <hr></hr><br><br>
  1088.  
  1089. <h2>MAINS &. EXCLUSIVES.</h2>
  1090.  
  1091.  
  1092.  
  1093. </li>
  1094.  
  1095. <li>
  1096.  
  1097. <h3>INBOX.</h3>
  1098. <br>
  1099. <div class="queque">
  1100. <!-- this will automatically display your mobile header image, but you can substitute with the url of another image, try to choose image which's width matches your pop up-->
  1101. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  1102. </div>
  1103.  
  1104. </li>
  1105.  
  1106. <li>
  1107.  
  1108. <h3>VERSES.</h3>
  1109.  
  1110. </li>
  1111.  
  1112. <li>
  1113.  
  1114. <h3>navigation</h3>
  1115. <div class="navi_linksu">
  1116. <a href="/tagged/">TAG</a>
  1117. <a href="/tagged/">TAG</a>
  1118. <a href="/tagged/">TAG</a>
  1119. <a href="/tagged/">TAG</a>
  1120. <a href="/tagged/">TAG</a>
  1121. <a href="/tagged/">TAG</a>
  1122. <a href="/tagged/">TAG</a>
  1123. <a href="/tagged/">TAG</a>
  1124. <a href="/tagged/">TAG</a>
  1125. </div>
  1126. </li>
  1127.  
  1128. </ul> <!--important don't delete-->
  1129. </div></div></div></div></div></div></div></div></div></div></div></div>
  1130.  
  1131.  
  1132. </div></div>
  1133.  
  1134. </div></div></div></div></div></div></div></div></div></div>
  1135.  
  1136. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement