Advertisement
manon15

unoluscus theme code

Mar 4th, 2017
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!-- BACKGROUND & CODE BY ╰☆╮MANON / BUTSCREWMEFIRST╰☆╮
  5. DO NOT:
  6. -claim as your own.
  7. -steal.
  8. -use on another blog without asking.
  9. -take parts of this theme to use in your own.
  10. I AM ALWAYS WILLING TO HELP, SO YOU NEED ONLY ASK!
  11. for commissions for yourself, just contact me @butscrewmefirst.tumblr.com
  12. -->
  13.  
  14. <head>
  15.  
  16. <script type="text/javascript">
  17. // <![CDATA[
  18. var colour="#940000"; // what colour are the blobs
  19. var speed=66; // speed of animation, lower is faster
  20. var blobs=20; // how many blobs are in the jar
  21. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  22.  
  23. /***************************\
  24. * Blobs in a Jar Effect *
  25. *(c)2012-13 mf2fm web-design*
  26. * http://www.mf2fm.com/rv *
  27. * DON'T EDIT BELOW THIS BOX *
  28. \***************************/
  29.  
  30. var div;
  31. var xpos=new Array();
  32. var ypos=new Array();
  33. var zpos=new Array();
  34. var dx=new Array();
  35. var dy=new Array();
  36. var dz=new Array();
  37. var blob=new Array();
  38. var swide=800;
  39. var shigh=600;
  40. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  41.  
  42. function addLoadEvent(funky) {
  43. var oldonload=window.onload;
  44. if (typeof(oldonload)!='function') window.onload=funky;
  45. else window.onload=function() {
  46. if (oldonload) oldonload();
  47. funky();
  48. }
  49. }
  50.  
  51. addLoadEvent(fill_the_jar);
  52.  
  53. function fill_the_jar() {
  54. var i, dvs;
  55. div=document.createElement('div');
  56. dvs=div.style;
  57. dvs.position='fixed';
  58. dvs.left='0px';
  59. dvs.top='0px';
  60. dvs.width='1px';
  61. dvs.height='1px';
  62. document.body.appendChild(div);
  63. set_width();
  64. for (i=0; i<blobs; i++) {
  65. add_blob(i);
  66. jamjar(i);
  67. }
  68. }
  69.  
  70. function add_blob(ref) {
  71. var dv, sy;
  72. dv=document.createElement('div');
  73. sy=dv.style;
  74. sy.position='absolute';
  75. sy.textAlign='center';
  76. if (ie_version && ie_version<10) {
  77. sy.fontSize="10px";
  78. sy.width="100px";
  79. sy.height="100px";
  80. sy.paddingTop="40px";
  81. sy.color=colour;
  82. dv.appendChild(document.createTextNode(charc));
  83. }
  84. else if (ie_version) {
  85. sy.fontSize="1px";
  86. sy.width="0px";
  87. sy.height="0px";
  88. }
  89. else {
  90. dv.appendChild(document.createTextNode(charc));
  91. sy.color='rgba(0,0,0,0)';
  92. }
  93. ypos[ref]=Math.floor(shigh*Math.random());
  94. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  95. xpos[ref]=Math.floor(swide*Math.random());
  96. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  97. zpos[ref]=Math.random()*20;
  98. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  99. blob[ref]=dv;
  100. div.appendChild(blob[ref]);
  101. set_blob(ref);
  102. }
  103.  
  104. function rejig(ref, xy) {
  105. if (xy=='y') {
  106. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  107. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  108. }
  109. else {
  110. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  111. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  112. }
  113. }
  114.  
  115. function sign(a) {
  116. if (a<0) return (-2);
  117. else if (a>0) return (2);
  118. else return (0);
  119. }
  120.  
  121. function set_blob(ref) {
  122. var sy;
  123. sy=blob[ref].style;
  124. sy.top=ypos[ref]+'px';
  125. sy.left=xpos[ref]+'px';
  126. if (ie_version && ie_version<10) {
  127. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  128. sy.fontSize=30-zpos[ref]+"px";
  129. }
  130. else if (ie_version) {
  131. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  132. }
  133. else {
  134. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  135. sy.fontSize=40+zpos[ref]+'px';
  136. }
  137. }
  138.  
  139. function jamjar(ref) {
  140. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  141. ypos[ref]+=dy[ref];
  142. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  143. xpos[ref]+=dx[ref];
  144. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  145. zpos[ref]+=dz[ref];
  146. set_blob(ref);
  147. setTimeout("jamjar("+ref+")", speed);
  148. }
  149.  
  150. window.onresize=set_width;
  151. function set_width() {
  152. var sw_min=999999;
  153. var sh_min=999999;
  154. if (document.documentElement && document.documentElement.clientWidth) {
  155. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  156. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  157. }
  158. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  159. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  160. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  161. }
  162. if (document.body.clientWidth) {
  163. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  164. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  165. }
  166. if (sw_min==999999 || sh_min==999999) {
  167. sw_min=800;
  168. sh_min=600;
  169. }
  170. swide=sw_min;
  171. shigh=sh_min;
  172. }
  173. // ]]>
  174. </script>
  175.  
  176.  
  177. <title>{Title}</title>
  178. <link rel="shortcut icon" href="{Favicon}">
  179. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  180. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  181.  
  182.  
  183. <link href="https://fonts.googleapis.com/css?family=Caveat|Clicker+Script|Cookie|Creepster|Damion|Dancing+Script|Finger+Paint|Fredericka+the+Great|Great+Vibes|Homemade+Apple|Kaushan+Script|Knewave|Marck+Script|Mr+Dafoe|Nothing+You+Could+Do|Pacifico|Permanent+Marker|Playball|Reenie+Beanie|Rock+Salt|Sacramento|Satisfy|Tangerine|Walter+Turncoat|Yellowtail" rel="stylesheet">
  184. <link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre|Josefin+Sans" rel="stylesheet">
  185.  
  186. <link href="https://fonts.googleapis.com/css?family=Prata" rel="stylesheet">
  187.  
  188.  
  189. <script type="text/javascript"
  190. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  191. <script>
  192. $(document).ready(function() {
  193. //
  194. $('a.poplight[href^=#]').click(function() {
  195. var popID = $(this).attr('rel'); //Get Popup Name
  196. var popURL = $(this).attr('href'); //Get Popup href to define size
  197. var query= popURL.split('?');
  198. var dim= query[1].split('&');
  199. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  200. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  201. var popMargTop = ($('#' + popID).height() + 80) / 2;
  202. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  203. //Apply Margin to Popup
  204. $('#' + popID).css({
  205. 'margin-top' : -popMargTop,
  206. 'margin-left' : -popMargLeft
  207. });
  208. $('body').append('<div id="fade"></div>');
  209. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  210. return false;
  211. });
  212. $('a.close, #fade').live('click', function() {
  213. $('#fade , .popup_block, .popup_block2, .popup_block3, .popup_block4, .question_block').fadeOut(function() {
  214. $('#fade, a.close').remove(); //fade them both out
  215. });
  216. return false;
  217. });
  218. });
  219. </script>
  220.  
  221. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  222. <script type="text/javascript">
  223. $(document).ready(function(){
  224. $(".links_body").hide();
  225. $(".links_head").click(function(){
  226. $(this).next(".links_body").slideToggle("fast");
  227. }); }); </script>
  228. <style type="text/css">
  229. .links_list { margin:0px; padding:0px; width:100%;}
  230. .links_head { padding-top:5px; padding-bottom:5px; cursor:pointer; position:relative; margin:1px; text-align:center;}
  231. .links_body { padding:10px; text-align:left; display:none;}
  232. </style>
  233.  
  234. <!-- verses script -->
  235. <script src="http://static.tumblr.com/dxh5xq2/v6Gn8ju1e/tabs.js"></script>
  236.  
  237.  
  238. <style type="text/css">
  239.  
  240. .popup_block{
  241. display:none;
  242. float:left;
  243. background-image: url('http://i.imgur.com/MecoK3N.png');
  244. background-color: #fff;
  245. height:500px;
  246. position:fixed;
  247. top:50%; left: 50%;
  248. z-index:9999999999999;
  249. opacity:1;
  250. }
  251.  
  252. .popup_block2{
  253. display:none;
  254. float:left;
  255. background-image: url('http://i.imgur.com/ulDypOp.png');
  256. background-color: #fff;
  257. height:500px;
  258. position:fixed;
  259. top:50%; left: 50%;
  260. z-index:9999999999999;
  261. opacity:1;
  262. }
  263.  
  264. .popup_block4{
  265. display:none;
  266. float:left;
  267. background-image: url('http://i.imgur.com/Y4pAtF9.png');
  268. background-color: #fff;
  269. height:500px;
  270. position:fixed;
  271. top:50%; left: 50%;
  272. z-index:9999999999999;
  273. opacity:1;
  274. }
  275.  
  276. *html #fade {position: absolute;}
  277. *html .popup_block {position: absolute;}
  278. #fade {
  279. display:none;
  280. position:fixed;
  281. left:0px;
  282. top:0px;
  283. width:100%;
  284. height:100%;
  285. z-index:999999;
  286. background:#000001;
  287. opacity:.5;
  288. }
  289.  
  290. #headerbar{
  291. left:50%;
  292. top:50%;
  293. margin-left:300px;
  294. margin-top:15px;
  295. width:298px;
  296. overflow:auto;
  297. text-align:justify;
  298. color:#fff;
  299. font-family:"calibri";
  300. font-size:12px;
  301. }
  302.  
  303. #tabbar{
  304. left:50%;
  305. top:50%;
  306. margin-left:292px;
  307. margin-top:20px;
  308. width:298px;
  309. height:405px;
  310. overflow: auto;
  311. text-align:justify;
  312. color:#fff;
  313. font-family:"calibri";
  314. font-size:12px;
  315. }
  316.  
  317. ul#tabs {text-align:center;}
  318.  
  319. ul#tabs li {
  320. list-style-type: none;
  321. display:inline-block;
  322. padding:2px;
  323. cursor:pointer;
  324. text-decoration:none;
  325. opacity:1;
  326. color:#fff;
  327. }
  328.  
  329. ul#tabs li.active {
  330. background-color:#000;
  331. color:#fff;
  332. -webkit-transition: all 0.5s ease-out;
  333. -moz-transition: all 0.5s ease-out;
  334. transition: all 0.5s ease-out;
  335. }
  336.  
  337. ul#tab, ul#tabs {
  338. list-style-type: none;
  339. margin:0px;
  340. padding:0px;
  341. }
  342. ul#tab li {display: none;}
  343. ul#tab li.active {display: block;}
  344.  
  345. .links_list {
  346. margin:0px;
  347. padding:0.5px;
  348. width:270px;
  349. margin-top:0px;
  350. margin-left:23.5px;
  351. }
  352.  
  353. .links_head {
  354. padding-top:7px;
  355. padding-bottom:7px;
  356. cursor:pointer;
  357. position:relative;
  358. margin:1px;
  359. text-align:center;
  360. font-size:9px;
  361. letter-spacing:2px;
  362. background-color:#1a1a1a;
  363. background-image:url("http://i.imgur.com/puYrx2l.png");
  364. border:1px solid #fff;
  365. outline:0px solid #fff;
  366. }
  367.  
  368. .links_body {
  369. height:150px;
  370. overflow:auto;
  371. padding:10px;
  372. display:none;
  373. background:#1a1a1a;
  374. font-size:10px;
  375. text-align:center;
  376. letter-spacing: 1px;
  377. font-family:calibri;
  378. color:#fff;
  379. line-height:100%;
  380. text-transform:lowercase;
  381. }
  382.  
  383. #text {
  384. top:50%;
  385. left:50%;
  386. margin-top:50px;
  387. margin-left:450px;
  388. width:270px;
  389. height:200px;
  390. overflow:scroll;
  391. text-align:justify;
  392. font-family:calibri;
  393. font-size:10px;
  394. color:#fff;
  395. background:transparent;
  396. }
  397.  
  398. #heading {
  399. top:50%;
  400. left:50%;
  401. margin-top:-22px;
  402. text-align:left;
  403. margin-left:0px;
  404. font-family:"prata";
  405. font-size:40px;
  406. color:#fff;
  407. background:transparent;
  408. text-shadow: 0px 0px 14px #fff;
  409. }
  410.  
  411. #poptext {
  412. margin-top:12px;
  413. margin-left:313px;
  414. width:276px;
  415. height:476px;
  416. font-family:'calibri';
  417. color:#fff;
  418. font-size:12px;
  419. overflow:auto;
  420. text-align:justify;
  421. }
  422.  
  423. #poptext2 {
  424. margin-top:14px;
  425. margin-left:322px;
  426. width:260px;
  427. height:473px;
  428. font-family:'calibri';
  429. color:#fff;
  430. font-size:12px;
  431. overflow:auto;
  432. text-align:justify;
  433. }
  434.  
  435. .question_block{
  436. height:300px;
  437. display: none;
  438. float: left;
  439. position: fixed;
  440. top: 50%; left: 50%;
  441. z-index: 999999999999;
  442. }
  443.  
  444.  
  445.  
  446.  
  447.  
  448. para {
  449. font-family: 'Prata', serif;
  450. color:#000;
  451. text-shadow:0 0 2px #fff;
  452. font-size:15px;
  453.  
  454. }
  455.  
  456. /*edit scrollbar*/
  457.  
  458. ::-webkit-scrollbar-thumb {
  459. height:auto;
  460. }
  461.  
  462. ::-webkit-scrollbar {
  463. height:4px;
  464. width:3px;
  465. padding-right:2px;
  466. }
  467. /*edit the body this is what post text looks like, background color, etc.*/
  468.  
  469. body {
  470. background-image:url("http://i.imgur.com/whgntJr.png");
  471. background-position:top left;
  472. background-attachment:fixed;
  473. background-repeat:no-repeat;
  474. margin:0px;
  475. background-color:#1a1a1a;
  476. color:#fff;
  477. font-family:"calibri";
  478. font-size:16px;
  479. line-height:120%;
  480. overflow-x:hidden;
  481. overflow-y:hidden;
  482. }
  483.  
  484.  
  485. /*edit links*/
  486.  
  487. a {
  488. text-decoration:none;
  489. outline:none;
  490. -moz-outline-style:none;
  491. color:#fff;
  492. -moz-transition-duration:0.8s;
  493. -webkit-transition-duration:0.8s;
  494. -o-transition-duration:0.8s;
  495. text-transform:uppercase;
  496. }
  497.  
  498. /*edit link hover*/
  499.  
  500. a:hover {
  501. color:#000;
  502. outline:none;
  503. -moz-outline-style:none;
  504. text-decoration:none;
  505. border-radius: 20px 20px 20px 20px #fff;
  506. -webkit-filter: blur(0px);
  507. }
  508.  
  509. img {
  510. opacity:.8;
  511. -webkit-filter: Grayscale(50%);
  512. -webkit-transition-duration: 0.8s;
  513. -moz-transition-duration:0.8s;
  514. transition-duration:0.8s;
  515. -o-transition-duration:0.8s;
  516. -webkit-filter: blur(0px);
  517. border-radius: 20px 20px 20px 20px #000;
  518. }
  519.  
  520. img:hover {
  521. opacity:1;
  522. -webkit-filter: Grayscale(0%);
  523. -webkit-transition: all 0.8s ease-out;
  524. -moz-transition: all 0.8s ease-out;
  525. transition: all 0.8s ease-out;
  526. -webkit-filter: blur(0px);
  527. border-radius: 20px 20px 20px 20px #000;
  528.  
  529. }
  530.  
  531. blockquote {
  532. padding-left:5px;
  533. border-left:1px solid #660907;
  534. border-radius:6px;
  535.  
  536. }
  537.  
  538. blockquote blockquote {
  539. padding-left:5px;
  540. border-left:2px solid;
  541. }
  542.  
  543. h1 {
  544. font-size:18px;
  545. text-align:left;
  546. font-family:"oswald";
  547. text-align:center;
  548. line-height:115%;
  549. letter-spacing:2px;
  550. color:#622519;
  551. text-transform:uppercase;
  552. }
  553.  
  554. h2 {
  555. font-size:20px;
  556. text-align:left;
  557. font-family:"Tangerine", cursive;
  558. text-align:center;
  559. line-height:110%;
  560. letter-spacing:2px;
  561. color:#fff;
  562. }
  563.  
  564. pre {
  565. font-family:"calibri";
  566. font-size:12px;
  567. color:#fff;
  568. text-shadow:0px 0px 2px #fff;
  569. letter-spacing:1px;
  570. text-align:center;
  571. text-transform:uppercase;
  572. background:url('');
  573. padding:2px;
  574. background-clip:content-box;
  575. border-radius:2px;
  576. text-decoration:underline;
  577. }
  578.  
  579.  
  580.  
  581.  
  582. #title {
  583. color:#fff;
  584. font-family:arial;
  585. font-size:16px;
  586. text-transform:lowercase;
  587. font-weight:bold;
  588. letter-spacing:0px;
  589. padding:4px;
  590. margin-top:-20px;
  591. margin-left:-14px;
  592. position:fixed;
  593. text-align:left;
  594. }
  595.  
  596.  
  597. #navi {
  598. float:left;
  599. width:115px;
  600. padding:3px;
  601. }
  602.  
  603. #muses {
  604. width:125px;
  605. float:left;
  606. overflow:auto;
  607. margin:1px 2px;
  608. }
  609.  
  610. .muses text {
  611. height:50px;
  612. overflow:scroll;
  613. }
  614.  
  615. @-webkit-keyframes cuntess{
  616. from { -webkit-transform:rotate(0deg);}
  617. to {-webkit-transform:rotate(360deg);}
  618. }
  619.  
  620. @-webkit-keyframes donovan{
  621. from {-webkit-transform: scale(0.5);}
  622. 75% {-webkit-transform: scale(1.0);}
  623. to {-webkit-transform: scale(0.5);}
  624. }
  625.  
  626. @-webkit-keyframes james{
  627. from {-webkit-transform:translate(0, 0px);}
  628. 25% {-webkit-transform:translate(0, 50px);}
  629. to {-webkit-transform: translate(0, -0px);}
  630. }
  631.  
  632. @-webkit-keyframes sally{
  633. from {-webkit-filter: blur(0px);}
  634. 60% {-webkit-filter: blur(3px);}
  635. to {-webkit-filter: blur(0px);}
  636. }
  637.  
  638.  
  639. /*sidebar links*/
  640.  
  641. .links {
  642. position: fixed;
  643. font-style:none;
  644. top:395px;
  645. margin-left:120px;
  646. font-size:25px;
  647. line-height: 850%;
  648. text-align: left;
  649. width:30px;
  650. margin-right: auto;
  651. transform:rotate(-50deg);
  652. -ms-transform: rotate(-50deg);
  653.  
  654.  
  655. }
  656.  
  657. .links a {
  658. -webkit-filter:blur(0px);
  659. letter-spacing: 1px;
  660. padding:3px;
  661. text-shadow: 1px 0px 1px #000;
  662.  
  663. }
  664.  
  665. .links a:hover {
  666. color:#000;
  667. opacity:1;
  668. -webkit-transition: all 0.8s ease-out;
  669. -moz-transition: all 0.8s ease-out;
  670. transition: all 0.8s ease-out;
  671. -webkit-filter:blur(3px);
  672. }
  673.  
  674. .alinks {
  675. position: fixed;
  676. font-style:none;
  677. top:425px;
  678. margin-left:195px;
  679. font-size:25px;
  680. word-spacing:2px;
  681. line-height: 850%;
  682. text-align: left;
  683. width:20px;
  684. margin-right: auto;
  685. transform:rotate(20deg);
  686. -ms-transform: rotate(20deg);
  687.  
  688. }
  689.  
  690. .alinks a {
  691. -webkit-filter:blur(0px);
  692. letter-spacing: 1px;
  693. padding:3px;
  694. text-shadow: 1px 0px 1px #000;
  695.  
  696. }
  697.  
  698. .alinks a:hover {
  699. color:#000;
  700. opacity:1;
  701. -webkit-transition: all 0.8s ease-out;
  702. -moz-transition: all 0.8s ease-out;
  703. transition: all 0.8s ease-out;
  704. -webkit-filter:blur(3px);
  705. }
  706.  
  707.  
  708. .clinks {
  709. position: fixed;
  710. font-style:none;
  711. top:375px;
  712. margin-left:265px;
  713. font-size:25px;
  714. word-spacing:2px;
  715. line-height: 850%;
  716. text-align: left;
  717. width:20px;
  718. margin-right: auto;
  719. transform:rotate(40deg);
  720. -ms-transform: rotate(40deg);
  721.  
  722. }
  723.  
  724. .clinks a {
  725. -webkit-filter:blur(0px);
  726. letter-spacing: 1px;
  727. padding:3px;
  728. text-shadow: 1px 0px 1px #000;
  729. }
  730.  
  731. .clinks a:hover {
  732. color:#000;
  733. opacity:1;
  734. -webkit-transition: all 0.8s ease-out;
  735. -moz-transition: all 0.8s ease-out;
  736. transition: all 0.8s ease-out;
  737. -webkit-filter:blur(3px);
  738. }
  739.  
  740. .elinks {
  741. position: fixed;
  742. font-style:none;
  743. top:400px;
  744. margin-left:385px;
  745. font-size:25px;
  746. word-spacing:2px;
  747. line-height: 850%;
  748. text-align: left;
  749. width:20px;
  750. margin-right: auto;
  751. transform:rotate(-30deg);
  752. -ms-transform: rotate(-30deg);
  753.  
  754. }
  755.  
  756. .elinks a {
  757. -webkit-filter:blur(0px);
  758. letter-spacing: 1px;
  759. padding:3px;
  760. text-shadow: 1px 0px 1px #000;
  761. }
  762.  
  763. .elinks a:hover {
  764. color:#000;
  765. opacity:1;
  766. -webkit-transition: all 0.8s ease-out;
  767. -moz-transition: all 0.8s ease-out;
  768. transition: all 0.8s ease-out;
  769. -webkit-filter:blur(3px);
  770. }
  771.  
  772. .flinks {
  773. position: fixed;
  774. font-style:none;
  775. top:450px;
  776. margin-left:450px;
  777. font-size:25px;
  778. word-spacing:2px;
  779. line-height: 850%;
  780. text-align: left;
  781. width:20px;
  782. margin-right: auto;
  783. transform:rotate(50deg);
  784. -ms-transform: rotate(50deg);
  785.  
  786. }
  787.  
  788. .flinks a {
  789. -webkit-filter:blur(0px);
  790. letter-spacing: 1px;
  791. padding:3px;
  792. text-shadow: 1px 0px 1px #000;
  793. }
  794.  
  795. .flinks a:hover {
  796. color:#000;
  797. opacity:1;
  798. -webkit-transition: all 0.8s ease-out;
  799. -moz-transition: all 0.8s ease-out;
  800. transition: all 0.8s ease-out;
  801. -webkit-filter:blur(3px);
  802. }
  803.  
  804. /* this is the box that comes up when you hover over something with a title*/
  805.  
  806. #s-m-t-tooltip {
  807. margin-left:15px;
  808. margin-top:-21px;
  809. letter-spacing:0px;
  810. font-family:"calibri";
  811. text-transform:auto;
  812. font-size:10px;
  813. text-transform:none;
  814. color:#fff;
  815. background-image:url('http://i.imgur.com/puYrx2l.png');
  816. background-color:#010403;
  817. border:2px double #940000;
  818. text-shadow:0px 0px 3px #000;
  819. padding: 3px;
  820. z-index:99999999999999999999999;
  821. -webkit-transition:all 1.5s;
  822. -moz-transition:all 1.5s;
  823. -ms-transition:all 1.5s;
  824. -o-transition:all 1.5s;
  825. transition:all 1.5s;
  826. }
  827.  
  828.  
  829. .buttons {
  830. display:inline-block;
  831. width:90px;
  832. font-size:10px;
  833. text-decoration: underline;
  834. border:1px solid #fff;
  835. margin:3px;
  836. padding:3px;
  837. text-align:center;
  838. }
  839.  
  840. .buttons:hover {
  841. background:url('http://i.imgur.com/puYrx2l.png');
  842. text-decoration:underline;
  843.  
  844. }
  845.  
  846. /*next page and previous page*/
  847.  
  848. #pagination {
  849. top:382px;
  850. font-size:10px;
  851. margin-left:710px;
  852. color:#fff;
  853. position: absolute;
  854. font-family:"calibri", sans-serif;
  855. text-align: left;
  856. letter-spacing:2px;
  857. padding-left:87px;
  858. width:300px;
  859. word-spacing:2px;
  860. text-transform:uppercase;
  861. -ms-transform: rotate(0deg); /* IE 9 */
  862. -webkit-transform: rotate(0deg); /* Safari */
  863. transform: rotate(0deg)
  864.  
  865.  
  866. }
  867.  
  868. #pagination a {
  869. padding:0 3px;
  870. opacity:2;
  871. -webkit-filter: Grayscale(0%);
  872. -webkit-transition: all 0.8s ease-out;
  873. -moz-transition: all 0.8s ease-out;
  874. transition: all 0.8s ease-out;
  875. -webkit-filter: blur(0px)
  876.  
  877. }
  878.  
  879. #pagination a:hover {
  880. color:#000;
  881. opacity:1;
  882. -webkit-transition: all 0.8s ease-out;
  883. -moz-transition: all 0.8s ease-out;
  884. transition: all 0.8s ease-out;
  885. -webkit-filter:blur(.8px);
  886. }
  887.  
  888.  
  889. #container {
  890. position: fixed;
  891. width:255px;
  892. height:496px;
  893. top:102px;
  894. margin-left:515px;
  895. overflow:auto;
  896. text-align:justify;
  897. }
  898.  
  899.  
  900. #post {
  901. width:250px;
  902. font-size:12px;
  903. line-height:110%;
  904. padding-top:10px;
  905. margin-top:20px;
  906. margin-left:auto;
  907. margin-right:auto;
  908. overflow:auto;
  909. }
  910.  
  911. #post blockquote {
  912. padding-left:10px;
  913. margin-left:10px;
  914. border-left:#fff 1px solid;
  915. }
  916.  
  917.  
  918. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  919.  
  920. b, strong, bold {
  921. color:#940000;
  922. text-shadow:0px 0px 2px #940000;
  923. font-size:12px;
  924. letter-spacing:2px;
  925. font-family:"oswald";
  926. line-height:115%;
  927. font-weight: bold;
  928. text-transform:uppercase;
  929. }
  930.  
  931. i, em, italic {
  932. color: #939292;
  933. text-shadow:none;
  934. font-size:21px;
  935. line-height:115%;
  936. font-family:"Tangerine", cursive;
  937. font-weight:italic;
  938. text-transform:lowercase;
  939. letter-spacing:2px;
  940.  
  941. }
  942.  
  943. sup, sub {
  944. color: #fff;
  945. text-shadow:none;
  946. font-size:11px;
  947. line-height:115%;
  948. font-family:"calibri";
  949. font-weight:none;
  950. text-transform:lowercase;
  951. letter-spacing:2px;
  952. }
  953.  
  954. small {
  955. color: #fff;
  956. text-shadow:none;
  957. font-size:11px;
  958. line-height:115%;
  959. font-family:"calibri";
  960. font-weight:none;
  961. text-transform:lowercase;
  962. letter-spacing:2px;
  963. }
  964.  
  965. /*time posted, note count, via and source*/
  966.  
  967. #info {
  968. width:200px;
  969. font-size:16px;
  970. padding:4px 0px 1px 0px;
  971. margin:0px 0px 40px 0px;
  972. letter-spacing:4px;
  973. font-size:22px;
  974. color:#fff;
  975. text-transform:none;
  976. }
  977.  
  978. #info a {
  979. color:#fff;
  980. text-shadow:none;
  981. text-transform:none;
  982. }
  983.  
  984. #info a:hover {
  985. color:#806e79;
  986. text-shadow:0px 0px 1px #000;
  987. }
  988.  
  989.  
  990. /*tags*/
  991.  
  992. .tags {
  993. width:200px;
  994. margin:-20px 0px 0px 30px;
  995. line-height:115%;
  996. padding:5px;
  997. font-size:10px;
  998. word-break:keep-all;
  999. text-align:center;
  1000. font-family:calibri;
  1001. background:#000;
  1002. border:dotted 1px #940000;
  1003. border-radius:3px 3px 8px 8px;
  1004. background:url('http://i.imgur.com/puYrx2l.png');
  1005. opacity:1;
  1006. }
  1007.  
  1008. .tags a {
  1009. color:#fff;
  1010. text-shadow:0px 0px 4px #000;
  1011. }
  1012.  
  1013. .tags a:hover {
  1014. color:#6d6d6d;
  1015. text-shadow:0px 0px 1px #6d6d6d;
  1016. }
  1017.  
  1018. .postnote {
  1019. width:220px;
  1020. margin-top:40px;
  1021. font-family:arial;
  1022. text-transform:lowercase;
  1023. font-style:normal;
  1024. letter-spacing:0px;
  1025. font-size:10px;
  1026. text-align:left;
  1027. }
  1028.  
  1029. .verses img {
  1030. float:center;
  1031. -webkit-filter: grayscale(0%);
  1032. width:260px;
  1033. height:100px;
  1034. }
  1035.  
  1036. .pic img {
  1037. float: center;
  1038. padding: 0px;
  1039. margin-right: 10px;
  1040. width: 100px;
  1041. height: 100px;
  1042. }
  1043.  
  1044. /*here go asks*/
  1045.  
  1046. #ask {
  1047. width:220px;
  1048. margin-left:13px;
  1049. font-size:24px;
  1050. text-align:center;
  1051. font-family:"Clicker Script", cursive;
  1052. font-style:none;
  1053. text-transform:lowercase;
  1054. color:#fff;
  1055. }
  1056.  
  1057. #ask a {
  1058. color:#fff;
  1059. text-transform:lowercase;
  1060. text-shadow:0px 2px 5px #000;
  1061.  
  1062. }
  1063.  
  1064. #ask a:hover {
  1065. color:#000;
  1066. letter-spacing:2px;
  1067. text-shadow:0px 2px 7px #000;
  1068. }
  1069.  
  1070. #q {
  1071. width:226px;
  1072. margin-left:0px;
  1073. padding:10px;
  1074. text-align:center;
  1075. font-family:"calibri";
  1076. font-size:12px;
  1077. color:#fff;
  1078. text-shadow:0px 0px 5px #000;
  1079. border-radius:0px 0px 0px 2px;
  1080. border:2px double #940000;
  1081. background:url('http://i.imgur.com/puYrx2l.png');
  1082. }
  1083.  
  1084. #ans {
  1085. text-align:justify;
  1086. padding:5px;
  1087. }
  1088.  
  1089.  
  1090.  
  1091.  
  1092. .playerbuttonbg {
  1093. position: absolute;
  1094. left: 10px;
  1095. top: 10px;
  1096. width: 18px;
  1097. height: 18px;
  1098. background-color:#fff;
  1099. padding: 10px;
  1100. -webkit-border-radius: 40px;
  1101. -moz-border-radius: 40px;
  1102. border-radius: 40px;
  1103. opacity: .4;
  1104. filter: alpha(opacity=40);
  1105. -moz-opacity: 0.4;
  1106. -khtml-opacity: 0.4;
  1107. transition: opacity .7s ease-in-out;
  1108. -moz-transition: opacity .7s ease-in-out;
  1109. -webkit-transition: opacity .7s ease-in-out;
  1110. }
  1111.  
  1112. .playerbuttonbg:hover {
  1113. opacity: 1;
  1114. filter: alpha(opacity=100);
  1115. -moz-opacity: 1;
  1116. -khtml-opacity: 1;
  1117. }
  1118.  
  1119. .newplayerbutton {
  1120. position: relative;
  1121. width: 19px;height: 19px;
  1122. overflow: hidden;
  1123. }
  1124.  
  1125. .playerbuttonhug {
  1126. position: absolute;
  1127. top: -18px;left: -7px;
  1128. }
  1129.  
  1130. .tumblr_audio_player {
  1131. border:none;
  1132. height: 50px;
  1133. width: 240px;
  1134. margin-left:3px;
  1135. margin-top:3px;
  1136. }
  1137.  
  1138. .audioimgwrapper {
  1139. position: absolute;
  1140. left: 0px;
  1141. top: 0px;
  1142. overflow: hidden;
  1143. width: 60px;
  1144. height: 60px;
  1145. }
  1146.  
  1147. .audioimgwrapper img {
  1148. width: 100%;
  1149. height: auto;
  1150. }
  1151. .trackdetails {
  1152. width: auto;
  1153. display:inline-block;
  1154. margin-left: 90px;
  1155. min-height: 85px;
  1156. }
  1157.  
  1158. .audiowrapper {
  1159. position: relative;
  1160. display:inline-block;
  1161. }
  1162.  
  1163.  
  1164.  
  1165. /* --- UPDATES ---*/
  1166.  
  1167. #updates {
  1168. position:fixed;
  1169. width:182px;
  1170. height:186px;
  1171. top:402px;
  1172. margin-left:790px;
  1173. font-size:9px;
  1174. padding:5px;
  1175. overflow:auto;
  1176. text-align:center;
  1177. }
  1178.  
  1179.  
  1180.  
  1181. /*credit. only change this if you actually make the code your own*/
  1182.  
  1183. #credit {
  1184. position:fixed;
  1185. font-size:18px;
  1186. color:#940000;
  1187. font-weight:none;
  1188. line-height:50%;
  1189. letter-spacing:2px;
  1190. font-family:'prata';
  1191. right:20px;
  1192. bottom:15px;
  1193. text-transform:none;
  1194. text-align:left;
  1195. -webkit-transition: all 0.5s ease-in-out;
  1196. -moz-transition: all 0.5s ease-in-out;
  1197. -o-transition: all 0.5s ease-in-out;
  1198. }
  1199.  
  1200. #credit a {
  1201. letter-spacing: 0px;
  1202. padding:3px;
  1203. color:#940000;
  1204. }
  1205.  
  1206. #credit a:hover {
  1207. background:#1a1a1a;
  1208. color:#fff;
  1209. }
  1210.  
  1211.  
  1212.  
  1213.  
  1214. {CustomCSS}
  1215.  
  1216. }
  1217.  
  1218. </style></head><body>
  1219. <script src=“http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js”></script>
  1220. <script src=“http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js”></script>
  1221. <script>
  1222. (function($){
  1223. $(document).ready(function(){
  1224. $("a[title]").style_my_tooltips({
  1225. tip_follows_cursor:true,
  1226. tip_delay_time:7,
  1227. tip_fade_speed:7,
  1228. attribute:"title"
  1229. });
  1230. });
  1231. })(jQuery);
  1232. </script>
  1233.  
  1234.  
  1235. <!-- begin updates tab -->
  1236.  
  1237. <div id="updates">
  1238. Lorem ipsum dolor sit <i>amet</i>, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. <b>Suspendisse</b> sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1239. <h3>look another title</h3>
  1240. <pre>pre title it pretty</pre>
  1241. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1242. <HR WIDTH=35%>
  1243. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  1244.  
  1245. </div>
  1246.  
  1247. <!-- end updates tab -->
  1248.  
  1249.  
  1250.  
  1251. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  1252. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  1253. <script>
  1254.  
  1255. (function($){
  1256.  
  1257. $(document).ready(function(){
  1258.  
  1259. $("a[title]").style_my_tooltips({
  1260.  
  1261. tip_follows_cursor:true,
  1262.  
  1263. tip_delay_time:50,
  1264.  
  1265. tip_fade_speed:600,
  1266.  
  1267. attribute:"title"
  1268.  
  1269. });
  1270.  
  1271. });
  1272.  
  1273. })(jQuery);
  1274.  
  1275. </script>
  1276.  
  1277.  
  1278.  
  1279.  
  1280. <div class="links">
  1281. <a href="/" title="home.">♕</a></div>
  1282.  
  1283. <div class="alinks">
  1284. <a href="#?w=500" title="queries." rel="box1" class="poplight">♕</div>
  1285.  
  1286. <div class="clinks">
  1287. <a href="#?w=600" title="dossier." rel="box2" class="poplight">♕</div>
  1288.  
  1289. <div class="elinks">
  1290. <a href="#?w=600" title="relations." rel="box5" class="poplight">♕</div>
  1291.  
  1292. <div class="flinks">
  1293. <a href="#?w=600" title="verses." rel="box3" class="poplight">♕</div>
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  
  1308. </div>
  1309.  
  1310. <div id="description">{Description}</div>
  1311.  
  1312.  
  1313. <div id="pagination">
  1314. {block:Pagination}
  1315. {block:PreviousPage}
  1316. <a href="{PreviousPage}">back</a>
  1317. {/block:PreviousPage}
  1318.  
  1319.  
  1320. {block:NextPage}
  1321. <a href="{NextPage}">/ forth</a>
  1322. {/block:NextPage}
  1323. {/block:Pagination}
  1324. </div>
  1325.  
  1326.  
  1327.  
  1328.  
  1329. </div>
  1330.  
  1331.  
  1332. <div id="container">
  1333. <div id="content">
  1334.  
  1335. {block:Posts}<div id="post">
  1336.  
  1337. {block:Text}
  1338. {block:Title}<b><center>{Title}</center></b>{/block:Title}
  1339. {Body}
  1340. {/block:Text}
  1341.  
  1342. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1343.  
  1344. <center>{block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}</center>
  1345.  
  1346. {block:Quote}
  1347. <h2>{Quote}</h2>
  1348. <h1>—{Source}</h1>
  1349. {/block:Quote}
  1350.  
  1351. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  1352.  
  1353. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  1354.  
  1355. {block:AudioPlayer}
  1356. <div class="audiowrapper">
  1357. {block:AlbumArt}
  1358. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  1359. {/block:AlbumArt}
  1360.  
  1361. <div class="playerbuttonbg">
  1362. <div class="newplayerbutton">
  1363. <div class="playerbuttonhug">
  1364. {AudioPlayerWhite}
  1365. </div></div></div>
  1366.  
  1367. <div class="trackdetails">
  1368. {block:TrackName}<b>{TrackName}</b>{/block:TrackName}<br/>
  1369. {block:Artist}{Artist}{/block:Artist}<br/>
  1370. {PlayCountWithLabel}
  1371. </div></div>
  1372. {block:Caption}{Caption}{/block:Caption}
  1373. {/block:AudioPlayer}
  1374.  
  1375. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1376.  
  1377. {block:Answer}
  1378.  
  1379. <div id="ask">{Asker}</div>
  1380. <div id="q">{Question}</div>
  1381. <br/>{Answer}{/block:Answer}
  1382.  
  1383. {block:Date}
  1384. <div id="info">
  1385. <a href="{Permalink}" title="{ShortMonth} {DayOfMonthWithZero} - {TimeAgo}" style="position:absolute; margin-left:13px;font-size:10; margin-top:4px;-webkit-transform: rotate(-40deg);-ms-transform: rotate(-70deg);transform: rotate(-70deg);">✢</a>
  1386. <a href="{Permalink}" title="{NoteCountWithLabel}" style="position:absolute; margin-left:-1px; margin-top:10px;font-size:17px;-webkit-transform: rotate(20deg);-ms-transform: rotate(20deg);transform: rotate(20deg);">✕</a>
  1387. <a href={ReblogURL} target=”_blank” class=”details” title="reblog" style="position:absolute; margin-left:13px; margin-top:25px;font-size:16px;-webkit-transform: rotate(-20deg);-ms-transform: rotate(-20deg);transform: rotate(-20deg);">▽</a>
  1388. {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->{/block:ContentSource}
  1389. <!-- {block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  1390. </div>
  1391. {/block:Date}
  1392.  
  1393.  
  1394. {block:HasTags}
  1395. <div class="tags">
  1396. {block:Tags} <a href="{TagURL}" title="{Tag}">&nbsp;#{Tag}&nbsp;</a> {/block:Tags}</div>
  1397. {/block:HasTags}
  1398.  
  1399.  
  1400. <div class="postnote">
  1401. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1402. </div>
  1403. </div>
  1404. {/block:Posts}
  1405. </div>
  1406. </div>
  1407. </div>
  1408. </div></div>
  1409.  
  1410.  
  1411.  
  1412.  
  1413. </div></div></div></div>
  1414. </div>
  1415.  
  1416. <div id="credit"><a href="http://butscrewmefirst.tumblr.com" title="theme by manon"><big>Ⓜ</big></a></div>
  1417.  
  1418. </body>
  1419.  
  1420. </div></div></div></div></div></div></div></div></div></div>
  1421.  
  1422.  
  1423. <div id="box1" class="question_block">
  1424. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  1425. </div>
  1426. </div></div></div></div></div></div></div></div></div></div>
  1427.  
  1428.  
  1429. <div id="box8" class="question_block" style="height:450px; padding:0px; background:url(); background-repeat:no repeat; overflow-x:hidden;">
  1430. <iframe frameborder="0" height="200" id="submit_form" scrolling="yes" src="http://www.tumblr.com/submit_form/{Name}.tumblr.com" width="100%"></iframe>
  1431. </div>
  1432. </div></div>
  1433.  
  1434.  
  1435. <div id="box2" class="popup_block4">
  1436. <div id="poptext">
  1437. Biography here. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1438. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1439. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1440. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1441. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<p>
  1442.  
  1443.  
  1444. </div>
  1445. </div>
  1446. </div>
  1447.  
  1448. </div></div></div></div></div></div></div></div></div></div>
  1449.  
  1450. <div id="box3" class="popup_block">
  1451. <div id="headerbar">
  1452. <ul id="tabs">
  1453. <li class="active">MAIN VERSES</li>
  1454. <li>ALT VERSES</li>
  1455. <li>ALT VERSES</li>
  1456. </ul></div>
  1457. <div id="tabbar">
  1458. <ul id="tab">
  1459.  
  1460. <li class="active">
  1461.  
  1462. <div class="links_list">
  1463. <p class="links_head">VERSE TAB ONE</p>
  1464. <div class="links_body">
  1465. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1466. <center>
  1467. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1468. </center>
  1469. </div></div>
  1470.  
  1471. <div class="links_list">
  1472. <p class="links_head">VERSE</p>
  1473. <div class="links_body">
  1474. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1475. <center>
  1476. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1477. </center>
  1478. </div></div>
  1479.  
  1480. <div class="links_list">
  1481. <p class="links_head">VERSE</p>
  1482. <div class="links_body">
  1483. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1484. <center>
  1485. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1486. </center>
  1487. </div></div>
  1488.  
  1489. <div class="links_list">
  1490. <p class="links_head">VERSE</p>
  1491. <div class="links_body">
  1492. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1493. <center>
  1494. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1495. </center>
  1496. </div></div>
  1497.  
  1498. <div class="links_list">
  1499. <p class="links_head">VERSE</p>
  1500. <div class="links_body">
  1501. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1502. <center>
  1503. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1504. </center>
  1505. </div></div>
  1506.  
  1507. </li>
  1508.  
  1509. <li>
  1510.  
  1511. <div class="links_list">
  1512. <p class="links_head">VERSE TAB TWO</p>
  1513. <div class="links_body">
  1514. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1515. <center>
  1516. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1517. </center>
  1518. </div></div>
  1519.  
  1520. <div class="links_list">
  1521. <p class="links_head">VERSE</p>
  1522. <div class="links_body">
  1523. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1524. <center>
  1525. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1526. </center>
  1527. </div></div>
  1528.  
  1529. <div class="links_list">
  1530. <p class="links_head">VERSE</p>
  1531. <div class="links_body">
  1532. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1533. <center>
  1534. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1535. </center>
  1536. </div></div>
  1537.  
  1538. </li>
  1539.  
  1540. <li>
  1541.  
  1542. <div class="links_list">
  1543. <p class="links_head">VERSE TAB THREE</p>
  1544. <div class="links_body">
  1545. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1546. <center>
  1547. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1548. </center>
  1549. </div></div>
  1550.  
  1551. <div class="links_list">
  1552. <p class="links_head">VERSE</p>
  1553. <div class="links_body">
  1554. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1555. <center>
  1556. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1557. </center>
  1558. </div></div>
  1559.  
  1560. <div class="links_list">
  1561. <p class="links_head">VERSE</p>
  1562. <div class="links_body">
  1563. <a href="/VERSE TAG HERE"><img src="http://i.imgur.com/2AO4R9c.png"></a>
  1564. <center>
  1565. img 220x100. YOUR CONTENT GOES HERE. you can include links, images, and pretty much anything you want. you don’t need to watch the length of your content either, since this code automatically limits the dropdown part into a certain height, which you can edit through the previous code ( the non-script one ) that I shared above. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.<br>
  1566. </center>
  1567. </div></div>
  1568.  
  1569. </li>
  1570.  
  1571. </ul>
  1572. </div></div></div></div></div></div></div></div></div></div>
  1573.  
  1574. <div id="box5" class="popup_block2">
  1575. <div id="poptext">
  1576. <!-- to make another relation, copy from here... -->
  1577. <center><img src="http://i.imgur.com/2AO4R9c.png" class="verses"></center>
  1578. <b><center><pre><a href="/tagged/MUSE LINK HERE" style="text-align:center;">MUSE NAME HERE.</a></pre></center></b>
  1579. verse info goes here a-yo. image 220 x 100
  1580. <HR WIDTH="90%">
  1581.  
  1582. <!-- to here, and then paste! -->
  1583.  
  1584. <!-- to make another relation, copy from here... -->
  1585. <center><img src="http://i.imgur.com/2AO4R9c.png" class="verses"></center>
  1586. <b><center><pre><a href="/tagged/MUSE LINK HERE" style="text-align:center;">MUSE NAME HERE.</a></pre></center></b>
  1587. verse info goes here a-yo. image 220 x 100
  1588. <HR WIDTH="90%">
  1589.  
  1590. <!-- to here, and then paste! -->
  1591.  
  1592. <!-- to make another relation, copy from here... -->
  1593. <center><img src="http://i.imgur.com/2AO4R9c.png" class="verses"></center>
  1594. <b><center><pre><a href="/tagged/MUSE LINK HERE" style="text-align:center;">MUSE NAME HERE.</a></pre></center></b>
  1595. verse info goes here a-yo. image image 220 x 100
  1596. <HR WIDTH="90%">
  1597.  
  1598. <!-- to here, and then paste! -->
  1599.  
  1600. <!-- to make another relation, copy from here... -->
  1601. <center><img src="http://i.imgur.com/2AO4R9c.png" class="verses"></center>
  1602. <b><center><pre><a href="/tagged/MUSE LINK HERE" style="text-align:center;">MUSE NAME HERE.</a></pre></center></b>
  1603. verse info goes here a-yo. image 220 x 100
  1604. <HR WIDTH="90%">
  1605.  
  1606. <!-- to here, and then paste! -->
  1607.  
  1608.  
  1609. </center>
  1610. </div>
  1611. </div>
  1612. </div>
  1613. </div></div></div></div></div></div></div></div></div></div>
  1614.  
  1615.  
  1616. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement