Advertisement
Guest User

if i make any more changes, stab me

a guest
Oct 12th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <!--THEME MADE BY WOLVIRN. DO NOT STEAL -->
  4.  
  5. <title>{Title}</title>
  6. <link rel="shortcut icon" href="{Favicon}">
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  8. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  9.  
  10. <script type="text/javascript">
  11. // <![CDATA[
  12. var colour="#e9d6d7"; // what colour are the blobs
  13. var speed=66; // speed of animation, lower is faster
  14. var blobs=10; // how many blobs are in the jar
  15. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  16.  
  17. /***************************\
  18. *(c)2012-13 mf2fm web-design*
  19. * http://www.mf2fm.com/rv *
  20. * DON'T EDIT BELOW THIS BOX *
  21. \***************************/
  22.  
  23. var div;
  24. var xpos=new Array();
  25. var ypos=new Array();
  26. var zpos=new Array();
  27. var dx=new Array();
  28. var dy=new Array();
  29. var dz=new Array();
  30. var blob=new Array();
  31. var swide=800;
  32. var shigh=600;
  33. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  34.  
  35. function addLoadEvent(funky) {
  36. var oldonload=window.onload;
  37. if (typeof(oldonload)!='function') window.onload=funky;
  38. else window.onload=function() {
  39. if (oldonload) oldonload();
  40. funky();
  41. }
  42. }
  43.  
  44. addLoadEvent(fill_the_jar);
  45.  
  46. function fill_the_jar() {
  47. var i, dvs;
  48. div=document.createElement('div');
  49. dvs=div.style;
  50. dvs.position='fixed';
  51. dvs.left='0px';
  52. dvs.top='0px';
  53. dvs.width='1px';
  54. dvs.height='1px';
  55. document.body.appendChild(div);
  56. set_width();
  57. for (i=0; i<blobs; i++) {
  58. add_blob(i);
  59. jamjar(i);
  60. }
  61. }
  62.  
  63. function add_blob(ref) {
  64. var dv, sy;
  65. dv=document.createElement('div');
  66. sy=dv.style;
  67. sy.position='absolute';
  68. sy.textAlign='center';
  69. if (ie_version && ie_version<10) {
  70. sy.fontSize="10px";
  71. sy.width="100px";
  72. sy.height="100px";
  73. sy.paddingTop="40px";
  74. sy.color=colour;
  75. dv.appendChild(document.createTextNode(charc));
  76. }
  77. else if (ie_version) {
  78. sy.fontSize="1px";
  79. sy.width="0px";
  80. sy.height="0px";
  81. }
  82. else {
  83. dv.appendChild(document.createTextNode(charc));
  84. sy.color='rgba(0,0,0,0)';
  85. }
  86. ypos[ref]=Math.floor(shigh*Math.random());
  87. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  88. xpos[ref]=Math.floor(swide*Math.random());
  89. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  90. zpos[ref]=Math.random()*20;
  91. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  92. blob[ref]=dv;
  93. div.appendChild(blob[ref]);
  94. set_blob(ref);
  95. }
  96.  
  97. function rejig(ref, xy) {
  98. if (xy=='y') {
  99. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  100. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  101. }
  102. else {
  103. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  104. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  105. }
  106. }
  107.  
  108. function sign(a) {
  109. if (a<0) return (-2);
  110. else if (a>0) return (2);
  111. else return (0);
  112. }
  113.  
  114. function set_blob(ref) {
  115. var sy;
  116. sy=blob[ref].style;
  117. sy.top=ypos[ref]+'px';
  118. sy.left=xpos[ref]+'px';
  119. if (ie_version && ie_version<10) {
  120. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  121. sy.fontSize=30-zpos[ref]+"px";
  122. }
  123. else if (ie_version) {
  124. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  125. }
  126. else {
  127. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  128. sy.fontSize=40+zpos[ref]+'px';
  129. }
  130. }
  131.  
  132. function jamjar(ref) {
  133. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  134. ypos[ref]+=dy[ref];
  135. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  136. xpos[ref]+=dx[ref];
  137. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  138. zpos[ref]+=dz[ref];
  139. set_blob(ref);
  140. setTimeout("jamjar("+ref+")", speed);
  141. }
  142.  
  143. window.onresize=set_width;
  144. function set_width() {
  145. var sw_min=999999;
  146. var sh_min=999999;
  147. if (document.documentElement && document.documentElement.clientWidth) {
  148. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  149. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  150. }
  151. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  152. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  153. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  154. }
  155. if (document.body.clientWidth) {
  156. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  157. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  158. }
  159. if (sw_min==999999 || sh_min==999999) {
  160. sw_min=800;
  161. sh_min=600;
  162. }
  163. swide=sw_min;
  164. shigh=sh_min;
  165. }
  166. // ]]>
  167. </script>
  168.  
  169. <link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre|Montserrat|Noto+Serif+KR|Quicksand" rel="stylesheet">
  170.  
  171. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  172. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  173. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  174. <script>
  175. (function($){
  176. $(document).ready(function(){
  177. $("[title]").style_my_tooltips({
  178. tip_follows_cursor:true,
  179. tip_delay_time:200,
  180. tip_fade_speed:300
  181. });
  182. });
  183. })(jQuery);
  184. </script>
  185.  
  186.  
  187.  
  188. <style type="text/css">
  189.  
  190.  
  191. ::-webkit-scrollbar {
  192. background-color: #ffffff;
  193. height:8px;
  194. width:5px;
  195. }
  196.  
  197. ::-webkit-scrollbar-thumb:vertical {
  198. background-color:#c28f8f;
  199. height:50px;
  200. }
  201.  
  202. ::-webkit-scrollbar-thumb:horizontal {
  203. background-color:#ffffff;
  204. height:8px;
  205. }
  206.  
  207.  
  208. #s-m-t-tooltip {
  209. max-width:300px;
  210. margin:15px;
  211. padding:5px;
  212. border:1px solid #eeeeee;
  213. border-radius:0px;
  214. background:#ffffff;
  215. color:#614848;
  216. z-index:999999;
  217. font-size:7px;
  218. font-style:none;
  219. letter-spacing:2px;
  220. font-family:arial;
  221. text-transform:uppercase;
  222. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  223. }
  224.  
  225.  
  226.  
  227. body {
  228. background:#fff;
  229. color:#614848;
  230. font-family: 'Open Sans', sans-serif;
  231. font-size:11px;
  232. line-height:150%;
  233. margin:0;
  234. text-align:left;
  235. }
  236.  
  237. small {
  238. font-size:11px;
  239. }
  240.  
  241. a {
  242. font-family: 'Quicksand', sans-serif;
  243. color:#b98682;
  244. text-decoration:none;
  245. }
  246.  
  247. a:hover {
  248. color:#905976;
  249. transition:1s;
  250. -webkit-transition:1s;
  251. -moz-transition:1s;
  252. -o-transition:1s;
  253. }
  254.  
  255. b, bold {
  256. font-size:10px;
  257. text-transform:uppercase;
  258. letter-spacing:1px;
  259. font-family: times;
  260. color: #b98682;
  261. text-shadow:1px 0px 0 #323131;
  262. }
  263.  
  264.  
  265. i, italic {
  266. font-size:12px;
  267. color: #894f4f;
  268. font-family:Montserrat;
  269. text-shadow:1px 0px 0 #2c2c2c;
  270. letter-spacing:1px;
  271. text-transform:lowercase;
  272. }
  273.  
  274.  
  275. u, u a {
  276. background-color: transparent;
  277. font-family:'Frank Ruhl Libre', serif;
  278. color:#c14545!important;
  279. font-size: 28px;
  280. text-decoration:none!important;
  281. font-style:normal!important;
  282. font-weight:100!important;
  283. text-transform:uppercase!important;
  284. float: left;
  285. margin-right: 9px;
  286. margin-top: 0px;
  287. padding-top:13px;
  288. padding-bottom:12px;
  289. padding-left:12px;
  290. padding-right:12px;
  291. }
  292.  
  293. img {
  294. opacity:1;
  295. text-decoration:none;
  296. }
  297.  
  298. #h1 {
  299. padding:0px 0px 5px 0px;
  300. letter-spacing:1px;
  301. line-height:100%;
  302. color: #b17267;
  303. font-weight:300;
  304. text-align:center;
  305. text-transform:uppercase;
  306. font-size:15px;
  307. padding:5px;
  308. border-top:2px dotted #b17267;
  309. border-bottom:2px dotted #b17267;
  310. }
  311.  
  312. #h1 a {text-transform:uppercase;
  313. font-weight:300;
  314. font-size:10px;}
  315.  
  316. h3 {
  317. background:#925449;
  318. background-repeat:repeat;
  319. background-attachment:fixed;
  320. border:1px solid #96b193;
  321. margin-bottom:10px;
  322. margin-top:10px;
  323. padding:8px;
  324. text-align:center;
  325. font-family:Montserrat;
  326. font-style:normal;
  327. font-weight:700;
  328. font-size:10px;
  329. line-height:10px;
  330. color:#f5f5f5;
  331. text-transform:uppercase;
  332. }
  333.  
  334.  
  335. h3 a {
  336. font-family:Montserrat;
  337. font-style:normal;
  338. font-weight:700;
  339. font-size:10px;
  340. line-height:10px;
  341. color:#c14545;
  342. }
  343.  
  344.  
  345. blockquote {
  346. background:#e1cfcf;
  347. padding-left:10px;
  348. margin:10px;
  349. border-right:4px solid #bc7b6f;
  350. border-left:4px solid #bc7b6f;
  351. }
  352.  
  353.  
  354. .header img {
  355. position:justified;
  356. height:397px;
  357. width:1100px;
  358. margin-bottom:0px;
  359. box-shadow:10px 0px 0 0 #ff5f52, -10px 0px 0 0 #ff5f52;
  360. border-top-left-radius:50px;
  361. border-top-right-radius:50px;
  362. }
  363.  
  364.  
  365. #navigation li {
  366. list-style: none;
  367. display: block;
  368. float: left;
  369. margin: 1em;
  370. }
  371.  
  372. #navigation li a {
  373. font-family: 'Quicksand', sans-serif;
  374. color:#fff;
  375. text-shadow: 1px 1px 1px #414f41;
  376. text-align:center;
  377. padding:10px;
  378. text-transform:uppercase;
  379. font-size:25px;
  380. font-weight:bold;
  381. }
  382.  
  383. fl {
  384. color:#ff5f52;
  385. }
  386.  
  387.  
  388. #navigation_container {
  389. margin: 0 auto;
  390. width: 1200px;
  391. }
  392.  
  393. .rectangle {
  394. background:#f06e64;
  395. height: 42px;
  396. position: relative;
  397. -moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
  398. box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
  399. -webkit-border-radius: 3px;
  400. -moz-border-radius: 3px;
  401. border-radius: 3px;
  402. z-index: 500; /* the stack order: foreground */
  403. margin-top:-30px;
  404. }
  405.  
  406. .l-triangle-top {
  407. border-color: #cc6158 transparent transparent;
  408. border-style:solid;
  409. border-width:30px;
  410. height:0px;
  411. width:0px;
  412. position: relative;
  413. float: left;
  414. top: 1px;
  415. left: -40px;
  416. }
  417.  
  418. .l-triangle-bottom {
  419. border-color: transparent transparent #cc6158;
  420. border-style:solid;
  421. border-width:30px;
  422. height:0px;
  423. width:0px;
  424. position: relative;
  425. float: left;
  426. top: -20px;
  427. left: -100px;
  428. }
  429.  
  430. .r-triangle-top {
  431. border-color: #cc6158 transparent transparent;
  432. border-style:solid;
  433. border-width:30px;
  434. height:0px;
  435. width:0px;
  436. position: relative;
  437. float: right;
  438. right: -35px;
  439. top: -42px;
  440. }
  441.  
  442. .r-triangle-bottom {
  443. border-color: transparent transparent #cc6158;
  444. border-style:solid;
  445. border-width:30px;
  446. height:0px;
  447. width:0px;
  448. position: relative;
  449. float: right;
  450. top: -65px;
  451. right: -95px;
  452. }
  453. .links {
  454. font-family: 'Quicksand', sans-serif;
  455. text-shadow: 1px 1px 1px #cc6158;
  456. text-align:center;
  457. padding:18px;
  458. text-transform:uppercase;
  459. font-size:15px;
  460. font-weight:bold;
  461. }
  462.  
  463. fl {
  464. color:#f5ccc9;
  465. }
  466. .links a {
  467. color:#c2b3b4;
  468. margin-right:40px;
  469. }
  470.  
  471. .links a:hover {
  472. color:#6a464b;
  473. }
  474.  
  475.  
  476. .sidebar {
  477. position:absolute;
  478. width:350px;
  479. margin-top:50px;
  480. margin-left:20px;
  481.  
  482. }
  483.  
  484. .sidebar img {
  485. min-width:75px;
  486. min-height:75px;
  487. max-width:75px;
  488. max-height:75px;
  489. margin-right:10px;
  490. padding:10px;
  491. border: 1px solid #bca9a8;
  492. background-color: transparent;
  493. -webkit-filter: brightness(1) contrast(1) saturate(1);
  494. }
  495.  
  496. .cat {
  497. padding:20px;
  498. border:1px solid #bca9a8;
  499. margin-bottom:50px;
  500. background:#fff;
  501. border:1px solid #fff;
  502. outline: 2px dashed #fff;
  503. outline-offset: 5px;
  504. }
  505.  
  506. .cti {
  507. font-family:Montserrat;
  508. text-transform:uppercase;
  509. font-size:15px;
  510. text-shadow: 1px 1px 1px #9f9f9f;
  511. font-weight:bold;
  512. text-align:left;
  513. font-weight:250;
  514. padding:10px;
  515. border-bottom:1px solid #bca9a8;
  516. margin-bottom:20px;
  517. color:#000;
  518. background:#fff;
  519. }
  520.  
  521.  
  522. .description {
  523. font-family: 'Noto Serif KR', sans-serif;
  524. text-align:justify;
  525. padding:20px;
  526. margin:5px;
  527. margin-top:0px;
  528. font-size:12px;
  529. border-top:1px solid #96b193;
  530. border-bottom:1px solid #96b193;
  531. }
  532.  
  533. .description:first-letter {
  534. background-color: transparent;
  535. font-family:'Frank Ruhl Libre', serif;
  536. color:#c36767!important;
  537. text-decoration:none!important;
  538. font-style:normal!important;
  539. font-weight:100!important;
  540. text-transform:uppercase!important;
  541. float: left;
  542. font-size: 40px;
  543. margin-right: 11px;
  544. margin-top: 0px;
  545. padding-top:16px;
  546. padding-bottom:16px;
  547. padding-left:12px;
  548. padding-right:12px;
  549. }
  550.  
  551.  
  552.  
  553.  
  554. .pinfo {
  555. height:100px;
  556. margin-top:25px;
  557. }
  558.  
  559.  
  560.  
  561. .user {
  562. float:left;
  563. padding:10px;
  564. margin-right:10px;
  565. text-transform:uppercase;
  566. font-weight:bold;
  567. }
  568.  
  569. .e {
  570. padding:10px;
  571.  
  572. }
  573.  
  574.  
  575. .affiliates {
  576. width:300px;
  577. padding:5px;
  578. text-align:left;
  579. text-transform:uppercase;
  580. font-size:9px;
  581. letter-spacing:1px;
  582. margin-top:20px;
  583. }
  584.  
  585. .affiliates img {
  586. padding:5px;
  587. width:50px;
  588.  
  589.  
  590. }
  591.  
  592.  
  593.  
  594.  
  595. #pagination {
  596. margin-left:520px;
  597. width:400px;
  598. text-align:center;
  599. font-size:25px;
  600. padding:25px;
  601. }
  602.  
  603. #pagination a {
  604. text-transform:uppercase;
  605. background:#fff;
  606. margin:15px;
  607. padding:20px;
  608. border:1px solid #fff;
  609. outline: 2px dashed #fff;
  610. outline-offset: 5px;
  611. }
  612.  
  613.  
  614. .container {
  615. width:1060px;
  616. margin-left:calc(50% - 550px);
  617. background:#7b917b;
  618. padding:20px;
  619. margin-top:-5px;
  620. border-bottom-left-radius:50px;
  621. border-bottom-right-radius:50px;
  622. box-shadow:10px 0px 0 0 #ff5f52, -10px 0px 0 0 #ff5f52;
  623. }
  624.  
  625.  
  626. .entries {
  627. margin-top:50px;
  628. width:500px;
  629. margin-left:500px;
  630. }
  631.  
  632. .posts {
  633. width:500px;
  634. margin-bottom:70px;
  635. background:#fff;
  636. padding:20px;
  637. border:1px solid #fff;
  638. outline: 2px dashed #fff;
  639. outline-offset: 5px;
  640. }
  641.  
  642.  
  643.  
  644. .quote {
  645. font-family:'Frank Ruhl Libre', serif;
  646. color:#8f7676;
  647. text-align:left;
  648. font-size:15px;
  649. padding-top:0px;
  650. padding-bottom:24px;
  651. line-height:165%;
  652. letter-spacing:-0.6px;
  653. min-height:52px;
  654. }
  655.  
  656. .quote:first-letter {
  657. background-color: transparent;
  658. font-family:'Frank Ruhl Libre', serif;
  659. color:#d76c6c!important;
  660. font-size: 50px;
  661. text-decoration:none!important;
  662. font-style:normal!important;
  663. font-weight:100!important;
  664. text-transform:uppercase!important;
  665. float: left;
  666. margin-right: 9px;
  667. margin-top: 7px;
  668. padding-top:11px;
  669. padding-bottom:11px;
  670. padding-left:12px;
  671. padding-right:12px;
  672. }
  673.  
  674. .quotesource {
  675. font-family:calibri;
  676. font-weight:bold;
  677. text-align:right;
  678. font-size:10px;
  679. color: #736262;
  680. text-transform:uppercase;
  681. margin-top:-1px;
  682. }
  683.  
  684.  
  685. .chat {
  686. line-height:150%;
  687. list-style:none;
  688. }
  689.  
  690. .line.odd {
  691. padding:10px;
  692. background:#f8f8f8;
  693. }
  694.  
  695. .line.even {
  696. padding:10px;
  697. }
  698.  
  699. .label {
  700. text-transform:uppercase;
  701. font-size:10px;
  702. letter-spacing:1px;
  703. font-weight:bold;
  704. }
  705.  
  706.  
  707. .cover {
  708. position:relative;
  709. z-index:1;
  710. max-width:100px;
  711. padding:10px;
  712. float:left;
  713. }
  714.  
  715. .playbutton {
  716. width:20px;
  717. height:30px;
  718. overflow:hidden;
  719. position:relative;
  720. z-index:2;
  721.  
  722. }
  723.  
  724.  
  725. .playbox {
  726. background-color:#000;
  727. position:absolute;
  728. z-index:2;
  729. padding:15px 24px 13px 16px;
  730. margin-top:30px;
  731. margin-left:30px;
  732. opacity:0.5;
  733. }
  734.  
  735. .trackdetails {
  736. padding:10px;
  737. width:auto;
  738. height:100px;
  739. margin-top:10px;
  740. margin-left:100px;
  741. }
  742.  
  743.  
  744. .asker {
  745. font-size:15px;
  746. font-family:Open Sans;
  747. color:#8f3d3d;
  748. padding
  749. text-shadow: 1px 1px 1px #fff;
  750. margin: 5px;
  751. margin-top: 10px;
  752. width: -moz-calc(100% - 10px);
  753. width: -webkit-calc(100% - 10px);
  754. width: -o-calc(100% - 10px);
  755. width: calc(100% - 10px);
  756. height: auto;
  757. }
  758.  
  759. .asker a{
  760. color:#a95849;
  761. text-transform:uppercase;
  762. text-shadow: 1px 1px 1px #fff;
  763. font-weight:bold;
  764. }
  765.  
  766. .bubble {
  767. margin-left:50px;
  768. width: -moz-calc(100% - 70px);
  769. width: -webkit-calc(100% - 70px);
  770. width: -o-calc(100% - 70px);
  771. width: calc(100% - 70px);
  772. height: auto;
  773. min-height: 35px;
  774. padding: 10px;
  775. line-height: 20px;
  776. background: #ca948a;
  777. border:1px dashed #aa4545;
  778. z-index:10;
  779. }
  780.  
  781. .triangle {
  782. position: absolute;
  783. margin-left: -20px;
  784. width: 0;
  785. z-index:0;
  786. border-right: 20px solid #ca948a;
  787. border-bottom: 10px solid transparent;
  788. border-top: 10px solid transparent;
  789.  
  790. }
  791.  
  792. .asker img {
  793. float: left;
  794. margin-right: 0px;
  795. max-width: 30px;
  796. border: 1.5px solid #caaaa5;
  797. border-radius: 2px;
  798. z-index:1000;
  799. opacity:1;
  800. }
  801.  
  802. .answer {
  803. margin: 10px;
  804. margin-bottom: 0;
  805. }
  806.  
  807.  
  808. .info {
  809. padding:10px;
  810. text-transform:uppercase;
  811. border-top:1px solid #bca9a8;
  812. margin-top:25px;
  813. }
  814.  
  815.  
  816. .tags {
  817. margin-left:10px;
  818. margin-top:-5px;
  819. }
  820.  
  821. .tags a {
  822. margin-right:10px;
  823. letter-spacing:1px;
  824. }
  825.  
  826.  
  827. ol.notes {
  828. padding:0px;
  829. list-style-type:none;
  830. width:500px;
  831. margin-bottom:70px;
  832. background:#fff;
  833. padding:20px;
  834. border:1px solid #fff;
  835. outline: 2px dashed #fff;
  836. outline-offset: 5px;
  837. }
  838.  
  839. ol.notes li.note {
  840. padding:10px;
  841. }
  842.  
  843. ol.notes li.note img.avatar {
  844. vertical-align:-4px;
  845. margin-right:10px;
  846. width:16px;
  847. height:16px;
  848. }
  849.  
  850. ol.notes li.note span.action {
  851. font-weight:none;
  852. }
  853.  
  854. ol.notes li.note .answer_content {
  855. font-weight:normal;
  856. }
  857.  
  858. ol.notes li.note blockquote {
  859. padding:4px 10px;
  860. margin:10px 0px 0px 25px;
  861. }
  862.  
  863. ol.notes li.note blockquote a {
  864. text-decoration:none;
  865. }
  866.  
  867. </style>
  868. </head>
  869.  
  870. <body>
  871. <center><div class="header"><img src="https://static.tumblr.com/of7uq1q/M9Gpgh2mu/texture_4.png"></div></center>
  872. <div id="navigation_container">
  873. <div class="l-triangle-top"></div>
  874. <div class="l-triangle-bottom"></div>
  875. <div class="rectangle">
  876. <ul id="navigation">
  877. <li><a href="https://rosenguard.tumblr.com/"><fl>H</fl>OME</a></li>
  878. <li><a href="/ask"><fl>I</fl>NBOX</a></li>
  879. <li><a href="/about"><fl>A</fl>BOUT</a></li>
  880. <li><a href="/verses"><fl>V</fl>ERSES</a></li>
  881. <li><a href="/bonds"><fl>B</fl>ONDS</a></li>
  882. <li><a href="/headcanons"><fl>H</fl>EADCANONS</a></li>
  883. <li><a href="/rules"><fl>R</fl>ULES</a></li>
  884. </ul>
  885. </div>
  886. <div class="r-triangle-top"></div>
  887. <div class="r-triangle-bottom"></div>
  888.  
  889. <!-- end container -->
  890. </div>
  891.  
  892. <div class="container">
  893.  
  894. <div class="sidebar">
  895.  
  896. <div class="cat">
  897. <center>
  898. <img src="https://static.tumblr.com/of7uq1q/8Napgh2or/icon1.png"><img src="https://static.tumblr.com/of7uq1q/MIapgh2pj/icon3.png">
  899. </center>
  900. <h3>I'LL COME BACK</a></h3>
  901. <div class="description">Hello there! This is a <i>private</i> & <i>selective </i>roleplay blog for <b>Aerith Gainsborough</b> from Final Fantasy 7. Please do read my rules before interacting with me!</div>
  902. <h3>WHEN IT'S ALL OVER</h3>
  903. <center>
  904. <img src="https://static.tumblr.com/of7uq1q/Veopgh2tt/icon_4.png"><img src="https://static.tumblr.com/of7uq1q/JNEpgh4n4/icon2.png">
  905. </center>
  906. </div>
  907.  
  908.  
  909.  
  910.  
  911. </div>
  912.  
  913. <div class="entries">
  914.  
  915. {block:Posts}
  916.  
  917. <div class="posts">
  918.  
  919. {block:Text}
  920. {block:Title}<div id="h1">{Title}</div>{/block:Title}
  921. {Body}{/block:Text}
  922.  
  923.  
  924. {block:Photo}
  925. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  926. {block:Caption}{Caption}{/block:Caption}
  927. {/block:Photo}
  928.  
  929.  
  930. {block:Photoset}
  931. {Photoset-500}
  932. {block:Caption}{Caption}{/block:Caption}
  933. {/block:Photoset}
  934.  
  935.  
  936. {block:Quote}
  937. <div class="quote">"{Quote}"</div>
  938. {block:Source}<div class="quotesource"> — {Source}</div>
  939. {/block:Source}{/block:Quote}
  940.  
  941.  
  942. {block:Link}
  943. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  944. {block:Description}{Description}{/block:Description}
  945. {/block:Link}
  946.  
  947.  
  948. {block:Chat}
  949. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  950. {/block:Chat}
  951.  
  952.  
  953. {block:Audio}
  954.  
  955. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  956.  
  957. {block:AlbumArt}
  958. <img src="{AlbumArtURL}" class="cover">
  959. {/block:AlbumArt}
  960.  
  961.  
  962. <div class="trackdetails"><br>
  963. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  964.  
  965. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  966.  
  967. <b>PLAYS:</b> {FormattedPlayCount}</div>
  968.  
  969.  
  970. {block:Caption}
  971. <div class="caption">{Caption}</div>
  972. {/block:Caption}
  973. {/block:Audio}
  974.  
  975.  
  976. {block:Video}
  977. {Video-500}
  978. {block:Caption}{Caption}{/block:Caption}
  979. {/block:Video}
  980.  
  981.  
  982. {block:Answer}
  983. <div class="asker">
  984. <img src="{AskerPortraitURL-48}">
  985. <div class="bubble" style="border-color: {color:Ask bubble}; background: {color:Ask bubble};"> <div class="triangle"></div>
  986. {Asker}asked:
  987. <br>{Question}
  988. </div>
  989. </div>
  990. <div class="answer">
  991. {Answer}
  992. </div>
  993. {/block:Answer}
  994.  
  995.  
  996. <div class="info">
  997. {block:Date}
  998. <b><a href="{Permalink}" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix}</b></a>
  999. {/block:Date}
  1000.  
  1001. &nbsp;&nbsp;
  1002. <a href="{Permalink}">{NoteCount}</a>
  1003. &nbsp;&nbsp;
  1004.  
  1005. <a href="{ReblogURL}" target="_blank" class="details"><i class="fa fa-repeat"></i></a>&nbsp;&nbsp;<b>Posted by <a href="{PostAuthorURL}">{PostAuthorName}</a></b>
  1006.  
  1007. <font style="float:right">
  1008. {block:RebloggedFrom}
  1009. <a href="{ReblogParentURL}" title="{ReblogParentName}">via </a>
  1010. {block:ContentSource}
  1011. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}">/ src</a>
  1012. {/block:ContentSource}
  1013. {/block:RebloggedFrom}
  1014. </font style>
  1015.  
  1016.  
  1017. </div>
  1018.  
  1019.  
  1020. {block:HasTags}
  1021. <div class="tags">
  1022. {block:Tags}
  1023. #<a href="{TagURL}">{Tag}</a>
  1024. {/block:Tags}
  1025. </div>
  1026. {/block:HasTags}
  1027.  
  1028. </div>
  1029.  
  1030.  
  1031. {block:PostNotes}
  1032. {PostNotes}
  1033. {/block:PostNotes}
  1034. {/block:Posts}</div>
  1035.  
  1036. <div id="pagination">
  1037. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">BACK</a>{/block:PreviousPage}{/block:Pagination}
  1038. {block:Pagination}{block:NextPage}<a href="{NextPage}">NEXT</a>{/block:NextPage}{/block:Pagination}
  1039. </div>
  1040. </div>
  1041.  
  1042. {block:ContentSource}
  1043. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  1044. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  1045. {/block:SourceLogo}
  1046. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  1047. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  1048. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  1049. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  1050. <script type="text/javascript">var scrolltotop={setting:{startline:100,scrollto:0,scrollduration:1e3,fadeduration:[500,100]},controlHTML:'<img src="https://i1155.photobucket.com/albums/p559/scrolltotop/arrow74.png" />',controlattrs:{offsetx:5,offsety:5},anchorkeyword:"#top",state:{isvisible:!1,shouldvisible:!1},scrollup:function(){this.cssfixedsupport||this.$control.css({opacity:0});var t=isNaN(this.setting.scrollto)?this.setting.scrollto:parseInt(this.setting.scrollto);t="string"==typeof t&&1==jQuery("#"+t).length?jQuery("#"+t).offset().top:0,this.$body.animate({scrollTop:t},this.setting.scrollduration)},keepfixed:function(){var t=jQuery(window),o=t.scrollLeft()+t.width()-this.$control.width()-this.controlattrs.offsetx,s=t.scrollTop()+t.height()-this.$control.height()-this.controlattrs.offsety;this.$control.css({left:o+"px",top:s+"px"})},togglecontrol:function(){var t=jQuery(window).scrollTop();this.cssfixedsupport||this.keepfixed(),this.state.shouldvisible=t>=this.setting.startline?!0:!1,this.state.shouldvisible&&!this.state.isvisible?(this.$control.stop().animate({opacity:1},this.setting.fadeduration[0]),this.state.isvisible=!0):0==this.state.shouldvisible&&this.state.isvisible&&(this.$control.stop().animate({opacity:0},this.setting.fadeduration[1]),this.state.isvisible=!1)},init:function(){jQuery(document).ready(function(t){var o=scrolltotop,s=document.all;o.cssfixedsupport=!s||s&&"CSS1Compat"==document.compatMode&&window.XMLHttpRequest,o.$body=t(window.opera?"CSS1Compat"==document.compatMode?"html":"body":"html,body"),o.$control=t('<div id="topcontrol">'+o.controlHTML+"</div>").css({position:o.cssfixedsupport?"fixed":"absolute",bottom:o.controlattrs.offsety,right:o.controlattrs.offsetx,opacity:0,cursor:"pointer"}).attr({title:"Scroll to Top"}).click(function(){return o.scrollup(),!1}).appendTo("body"),document.all&&!window.XMLHttpRequest&&""!=o.$control.text()&&o.$control.css({width:o.$control.width()}),o.togglecontrol(),t('a[href="'+o.anchorkeyword+'"]').click(function(){return o.scrollup(),!1}),t(window).bind("scroll resize",function(t){o.togglecontrol()})})}};scrolltotop.init();</script>
  1051. <noscript>Not seeing a <a href="https://www.scrolltotop.com/">Scroll to Top Button</a>? Go to our FAQ page for more info.</noscript>
  1052.  
  1053. <script language=JavaScript>
  1054. <!--
  1055.  
  1056. //Disable right mouse click Script
  1057. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  1058. //For full source code, visit http://www.dynamicdrive.com
  1059.  
  1060. var message="no";
  1061.  
  1062. ///////////////////////////////////
  1063. function clickIE4(){
  1064. if (event.button==2){
  1065. alert(message);
  1066. return false;
  1067. }
  1068. }
  1069.  
  1070. function clickNS4(e){
  1071. if (document.layers||document.getElementById&&!document.all){
  1072. if (e.which==2||e.which==3){
  1073. alert(message);
  1074. return false;
  1075. }
  1076. }
  1077. }
  1078.  
  1079. if (document.layers){
  1080. document.captureEvents(Event.MOUSEDOWN);
  1081. document.onmousedown=clickNS4;
  1082. }
  1083. else if (document.all&&!document.getElementById){
  1084. document.onmousedown=clickIE4;
  1085. }
  1086.  
  1087. document.oncontextmenu=new Function("alert(message);return false")
  1088.  
  1089. // -->
  1090. </script>
  1091. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement