Advertisement
manon15

heartlesxtyrant theme code

Sep 3rd, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/butscrewmefirst. don't take as your own!-->
  5.  
  6. <head>
  7.  
  8.  
  9. <title>{Title}</title>
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  13.  
  14.  
  15. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  16. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  17. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  18. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  19. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  20. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  21. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  22. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  23. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  24. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  25. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  26. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  27. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  28. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  29. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  30. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  31. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  32. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  33. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  34. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  35. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  36. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  37. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  38. <link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  39. <link href='https://fonts.googleapis.com/css?family=Meddon' rel='stylesheet' type='text/css'>
  40. <link href='https://fonts.googleapis.com/css?family=Khand' rel='stylesheet' type='text/css'>
  41. <link href='https://fonts.googleapis.com/css?family=Black+Ops+One' rel='stylesheet' type='text/css'>
  42. <link href='https://fonts.googleapis.com/css?family=Kristi' rel='stylesheet' type='text/css'>
  43. <link href='https://fonts.googleapis.com/css?family=Waiting+for+the+Sunrise' rel='stylesheet' type='text/css'>
  44. <link href='https://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'>
  45. <link href='https://fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
  46. <link href='https://fonts.googleapis.com/css?family=Yellowtail' rel='stylesheet' type='text/css'>
  47. <link href='https://fonts.googleapis.com/css?family=Alex+Brush' rel='stylesheet' type='text/css'>
  48. <link href="https://fonts.googleapis.com/css?family=Over+the+Rainbow" rel='stylesheet' type='text/css'>
  49. <link href="https://fonts.googleapis.com/css?family=Reenie+Beanie" rel='stylesheet' type='text/css'>
  50. <link href="https://fonts.googleapis.com/css?family=Sacramento" rel="stylesheet">
  51.  
  52.  
  53. <script type="text/javascript"
  54. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  55. <script>
  56. $(document).ready(function() {
  57. //
  58. $('a.poplight[href^=#]').click(function() {
  59. var popID = $(this).attr('rel'); //Get Popup Name
  60. var popURL = $(this).attr('href'); //Get Popup href to define size
  61. var query= popURL.split('?');
  62. var dim= query[1].split('&');
  63. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  64. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  65. var popMargTop = ($('#' + popID).height() + 80) / 2;
  66. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  67. //Apply Margin to Popup
  68. $('#' + popID).css({
  69. 'margin-top' : -popMargTop,
  70. 'margin-left' : -popMargLeft
  71. });
  72. $('body').append('<div id="fade"></div>');
  73. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  74. return false;
  75. });
  76. $('a.close, #fade').live('click', function() {
  77. $('#fade , .popup_block, .question_block').fadeOut(function() {
  78. $('#fade, a.close').remove(); //fade them both out
  79. });
  80. return false;
  81. });
  82. });
  83. </script>
  84.  
  85.  
  86. <style type="text/css">
  87.  
  88. .popup_block{
  89. display:none;
  90. float:left;
  91. background-image: url('http://i.imgur.com/Qy0VZIi.png');
  92. background-color: #fff;
  93. height:500px;
  94. position:fixed;
  95. top:50%; left: 50%;
  96. z-index:9999999999999;
  97. opacity:1;
  98. }
  99.  
  100.  
  101. *html #fade {position: absolute;}
  102. *html .popup_block {position: absolute;}
  103. #fade {
  104. display:none;
  105. position:fixed;
  106. left:0px;
  107. top:0px;
  108. width:100%;
  109. height:100%;
  110. z-index:999999;
  111. background:#000001;
  112. opacity:.5;
  113. }
  114.  
  115.  
  116. #text {
  117. top:50%; *
  118. left:50%; *
  119. margin-top:50px; *
  120. margin-left:450px; *
  121. width:270px; **
  122. height:200px; **
  123. overflow:scroll; **
  124. text-align:justify;
  125. font-family:calibri;
  126. font-size:10px;
  127. color:#fff;
  128. background:transparent;
  129. }
  130.  
  131. #heading {
  132. top:50%;
  133. left:50%;
  134. margin-top:20px;
  135. text-align:left;
  136. margin-left:20px;
  137. font-family:"prata";
  138. font-size:40px;
  139. color:#000;
  140. background:transparent;
  141. text-shadow: 0px 0px 14px #000;
  142. }
  143.  
  144. #poptext2 {
  145. margin-top:267px;
  146. margin-left:185px;
  147. width:260px;
  148. height:195px;
  149. font-family:'calibri';
  150. font-size:12px;
  151. overflow:scroll;
  152. text-align:justify;
  153. }
  154.  
  155. #poptext {
  156. margin-top:268px;
  157. margin-left:172px;
  158. width:260px;
  159. height:196px;
  160. font-family:'calibri';
  161. font-size:12px;
  162. overflow:scroll;
  163. text-align:justify;
  164. }
  165.  
  166. .question_block{
  167. height:300px;
  168. display: none;
  169. float: left;
  170. position: fixed;
  171. top: 50%; left: 50%;
  172. z-index: 999999999999;
  173. }
  174.  
  175.  
  176.  
  177.  
  178.  
  179. para {
  180. font-family: 'Prata', serif;
  181. color:#fff;
  182. font-size:10px;
  183.  
  184. }
  185.  
  186. /*edit scrollbar*/
  187.  
  188. ::-webkit-scrollbar-thumb {
  189. height:auto;
  190. }
  191.  
  192. ::-webkit-scrollbar {
  193. height:4px;
  194. width:3px;
  195. padding-right:2px;
  196. }
  197. /*edit the body this is what post text looks like, background color, etc.*/
  198.  
  199. body {
  200. background-image:url("http://i.imgur.com/oSrwkv4.png");
  201. background-position:center bottom;
  202. background-attachment:fixed;
  203. background-repeat:no-repeat;
  204. margin:0px;
  205. background-color:#000;
  206. color:#fff;
  207. font-family:arial;
  208. font-size:12px;
  209. line-height:120%;
  210. overflow-x:hidden;
  211. overflow-y:hidden;
  212. }
  213.  
  214.  
  215. /*edit links*/
  216.  
  217. a {
  218. text-decoration:none;
  219. outline:none;
  220. -moz-outline-style:none;
  221. color:#745377;
  222. -moz-transition-duration:0.8s;
  223. -webkit-transition-duration:0.8s;
  224. -o-transition-duration:0.8s;
  225. text-transform:uppercase;
  226. }
  227.  
  228. /*edit link hover*/
  229.  
  230. a:hover {
  231. color:#000;
  232. outline:none;
  233. -moz-outline-style:none;
  234. text-decoration:none;
  235. border-radius: 20px 20px 20px 20px #851e1a;
  236. -webkit-filter: blur(0px);
  237. }
  238.  
  239. img {
  240. opacity:.8;
  241. -webkit-filter: Grayscale(50%);
  242. -webkit-transition-duration: 0.8s;
  243. -moz-transition-duration:0.8s;
  244. transition-duration:0.8s;
  245. -o-transition-duration:0.8s;
  246. -webkit-filter: blur(0px);
  247. border-radius: 20px 20px 20px 20px #000;
  248. }
  249.  
  250. img:hover {
  251. opacity:1;
  252. -webkit-filter: Grayscale(0%);
  253. -webkit-transition: all 0.8s ease-out;
  254. -moz-transition: all 0.8s ease-out;
  255. transition: all 0.8s ease-out;
  256. -webkit-filter: blur(0px);
  257. border-radius: 20px 20px 20px 20px #000;
  258.  
  259. }
  260.  
  261. blockquote {
  262. padding-left:5px;
  263. border-left:1px solid #dab5df;
  264. border-radius:6px;
  265.  
  266. }
  267.  
  268. blockquote blockquote {
  269. padding-left:5px;
  270. border-left:2px solid;
  271. }
  272.  
  273. h1 {
  274. font-size:18px;
  275. text-align:left;
  276. font-family:"Great Vibes";
  277. text-align:center;
  278. line-height:115%;
  279. letter-spacing:1px;
  280. color:#755d7f;
  281. text-transform:lowercase;
  282. }
  283.  
  284. h2 {
  285. font-size:18px;
  286. text-align:left;
  287. font-family:"Bad Script";
  288. text-align:center;
  289. line-height:110%;
  290. letter-spacing:1px;
  291. color:#a78ab1;
  292. }
  293.  
  294. h3 {
  295. font-size:16px;
  296. text-align:left;
  297. font-family:"Sacramento";
  298. text-align:center;
  299. line-height:110%;
  300. letter-spacing:1px;
  301. color:#e41936;
  302. }
  303.  
  304. h4 {
  305. font-size:13px;
  306. text-align:left;
  307. font-family:"Prata";
  308. text-align:center;
  309. line-height:110%;
  310. letter-spacing:1px;
  311. color:#a78ab1;
  312. }
  313.  
  314. h5 { /*this is for home link*/
  315. font-size:20px;
  316. text-align:left;
  317. font-family:"prata";
  318. text-align:center;
  319. line-height:110%;
  320. letter-spacing:1px;
  321. color:#e41936;
  322. }
  323.  
  324. h6 { /*this is for pagination*/
  325. font-size:8px;
  326. font-family:"prata";
  327. text-align:center;
  328. line-height:110%;
  329. letter-spacing:1px;
  330. width:250px;
  331. color:#fff;
  332. }
  333.  
  334. pre {
  335. font-family:calibri;
  336. font-size:9px;
  337. color:#fff;
  338. text-shadow:0px 0px 1px #222;
  339. letter-spacing:1px;
  340. text-align:center;
  341. text-transform:uppercase;
  342. padding:5px;
  343. background:url('http://i.imgur.com/2ho2wVl.png');
  344. background-position:top center;
  345. border-radius:10px 3px 10px 3px;
  346. border:3px double #222;
  347. }
  348.  
  349.  
  350.  
  351. #title {
  352. color:#fff;
  353. font-family:arial;
  354. font-size:16px;
  355. text-transform:lowercase;
  356. font-weight:bold;
  357. letter-spacing:0px;
  358. padding:4px;
  359. margin-top:-20px;
  360. margin-left:-14px;
  361. position:fixed;
  362. text-align:left;
  363. }
  364.  
  365.  
  366. #navi {
  367. float:left;
  368. width:115px;
  369. padding:3px;
  370. }
  371.  
  372. #muses {
  373. width:125px;
  374. float:left;
  375. overflow:auto;
  376. margin:1px 2px;
  377. }
  378.  
  379. .muses text {
  380. height:50px;
  381. overflow:scroll;
  382. }
  383.  
  384.  
  385. /*sidebar links*/
  386.  
  387. .links {
  388. position: fixed;
  389. font-style:none;
  390. left:50%;
  391. bottom:318px;
  392. margin-left:115px;
  393. font-size:26px;
  394. line-height: 850%;
  395. text-align: left;
  396. width:300px;
  397. margin-right: auto;
  398. -ms-transform: rotate(10deg); /* IE 9 */
  399. -webkit-transform: rotate(10deg); /* Safari */
  400. transform: rotate(10deg)
  401.  
  402. }
  403.  
  404. .links a {
  405. -webkit-filter:blur(0px);
  406. letter-spacing: 1px;
  407. padding:3px;
  408. text-shadow: 1px 0px 1px #4e3351;
  409.  
  410. }
  411.  
  412. .links a:hover {
  413. color:#4e33514;
  414. opacity:1;
  415. -webkit-transition: all 0.8s ease-out;
  416. -moz-transition: all 0.8s ease-out;
  417. transition: all 0.8s ease-out;
  418. -webkit-filter:blur(3px);
  419. }
  420.  
  421. .alinks {
  422. position: fixed;
  423. font-style:none;
  424. left:50%;
  425. bottom:210px;
  426. margin-left:70px;
  427. font-size:26px;
  428. word-spacing:2px;
  429. line-height: 850%;
  430. text-align: left;
  431. width:20px;
  432. margin-right: auto;
  433. -ms-transform: rotate(-30deg); /* IE 9 */
  434. -webkit-transform: rotate(-30deg); /* Safari */
  435. transform: rotate(-30deg)
  436.  
  437.  
  438. }
  439.  
  440. .alinks a {
  441. -webkit-filter:blur(0px);
  442. letter-spacing: 1px;
  443. padding:3px;
  444. text-shadow: 1px 0px 1px #4e3351;
  445.  
  446. }
  447.  
  448. .alinks a:hover {
  449. color:#4e3351;
  450. opacity:1;
  451. -webkit-transition: all 0.8s ease-out;
  452. -moz-transition: all 0.8s ease-out;
  453. transition: all 0.8s ease-out;
  454. -webkit-filter:blur(3px);
  455. }
  456.  
  457. .blinks {
  458. position: fixed;
  459. font-style:none;
  460. left:50%;
  461. bottom:215px;
  462. margin-left:235px;
  463. font-size:35px;
  464. word-spacing:2px;
  465. line-height: 850%;
  466. text-align: left;
  467. width:20px;
  468. margin-right: auto;
  469. -ms-transform: rotate(-10deg); /* IE 9 */
  470. -webkit-transform: rotate(-10deg); /* Safari */
  471. transform: rotate(-10deg)
  472.  
  473. }
  474.  
  475. .blinks a {
  476. -webkit-filter:blur(0px);
  477. letter-spacing: 1px;
  478. padding:3px;
  479. text-shadow: 1px 0px 1px #4e3351;
  480. }
  481.  
  482. .blinks a:hover {
  483. color:#4e3351;
  484. opacity:1;
  485. -webkit-transition: all 0.8s ease-out;
  486. -moz-transition: all 0.8s ease-out;
  487. transition: all 0.8s ease-out;
  488. -webkit-filter:blur(3px);
  489. }
  490.  
  491. .clinks {
  492. position: fixed;
  493. font-style:none;
  494. left:50%;
  495. bottom:137px;
  496. margin-left:137px;
  497. font-size:22px;
  498. word-spacing:2px;
  499. line-height: 850%;
  500. text-align: left;
  501. width:20px;
  502. margin-right: auto;
  503. -ms-transform: rotate(-120deg); /* IE 9 */
  504. -webkit-transform: rotate(-120deg); /* Safari */
  505. transform: rotate(-120deg)
  506. }
  507.  
  508. .clinks a {
  509. -webkit-filter:blur(0px);
  510. letter-spacing: 1px;
  511. padding:3px;
  512. text-shadow: 1px 0px 1px #4e3351;
  513. }
  514.  
  515. .clinks a:hover {
  516. color:#4e3351;
  517. opacity:1;
  518. -webkit-transition: all 0.8s ease-out;
  519. -moz-transition: all 0.8s ease-out;
  520. transition: all 0.8s ease-out;
  521. -webkit-filter:blur(3px);
  522. }
  523.  
  524. .dlinks {
  525. position: fixed;
  526. font-style:none;
  527. left:50%;
  528. bottom:140px;
  529. margin-left:261px;
  530. font-size:16px;
  531. word-spacing:2px;
  532. line-height: 850%;
  533. text-align: left;
  534. width:20px;
  535. margin-right: auto;
  536. -ms-transform: rotate(-40deg); /* IE 9 */
  537. -webkit-transform: rotate(-40deg); /* Safari */
  538. transform: rotate(-40deg)
  539. }
  540.  
  541. .dlinks a {
  542. -webkit-filter:blur(0px);
  543. letter-spacing: 1px;
  544. padding:3px;
  545. text-shadow: 1px 0px 1px #4e3351;
  546. }
  547.  
  548. .dlinks a:hover {
  549. color:#4e3351;
  550. opacity:1;
  551. -webkit-transition: all 0.8s ease-out;
  552. -moz-transition: all 0.8s ease-out;
  553. transition: all 0.8s ease-out;
  554. -webkit-filter:blur(3px);
  555. }
  556.  
  557. .elinks {
  558. position: fixed;
  559. font-style:none;
  560. left:50%;
  561. bottom:500px;
  562. margin-left:-150px;
  563. font-size:20px;
  564. word-spacing:2px;
  565. line-height: 850%;
  566. text-align: left;
  567. width:20px;
  568. margin-right: auto;
  569. -ms-transform: rotate(30deg); /* IE 9 */
  570. -webkit-transform: rotate(30deg); /* Safari */
  571. transform: rotate(30deg)
  572.  
  573. }
  574.  
  575. .elinks a {
  576. -webkit-filter:blur(0px);
  577. letter-spacing: 1px;
  578. padding:3px;
  579. text-shadow: 1px 0px 1px #4e3351;
  580.  
  581. }
  582.  
  583. .elinks a:hover {
  584. color:#4e3351;
  585. opacity:1;
  586. -webkit-transition: all 0.8s ease-out;
  587. -moz-transition: all 0.8s ease-out;
  588. transition: all 0.8s ease-out;
  589. -webkit-filter:blur(3px);
  590. }
  591.  
  592. .flinks {
  593. position: fixed;
  594. font-style:none;
  595. left:50%;
  596. bottom:470px;
  597. margin-left:-275px;
  598. font-size:20px;
  599. word-spacing:2px;
  600. line-height: 850%;
  601. text-align: left;
  602. width:20px;
  603. margin-right: auto;
  604. -ms-transform: rotate(50deg); /* IE 9 */
  605. -webkit-transform: rotate(50deg); /* Safari */
  606. transform: rotate(50deg)
  607.  
  608. }
  609.  
  610. .flinks a {
  611. -webkit-filter:blur(0px);
  612. letter-spacing: 1px;
  613. padding:3px;
  614. text-shadow: 1px 0px 1px #4e3351;
  615.  
  616. }
  617.  
  618. .flinks a:hover {
  619. color:#4e3351;
  620. opacity:1;
  621. -webkit-transition: all 0.8s ease-out;
  622. -moz-transition: all 0.8s ease-out;
  623. transition: all 0.8s ease-out;
  624. -webkit-filter:blur(3px);
  625. }
  626.  
  627. #description {
  628. width:208px;
  629. font-size:11px;
  630. padding:5px;
  631. text-align:justify;
  632. letter-spacing:0px;
  633. line-height:90%;
  634. margin-left:-16px;
  635. margin-top:-2px;
  636. }
  637.  
  638. /* this is the box that comes up when you hover over something with a title*/
  639.  
  640. #s-m-t-tooltip {
  641. margin-left:15px;
  642. margin-top:-21px;
  643. letter-spacing:0px;
  644. font-family:"prata";
  645. text-transform:auto;
  646. font-size:12px;
  647. color:#fff;
  648. background:url('http://i.imgur.com/2ho2wVl.png');
  649. border:1px solid #fff;
  650. text-shadow:0px 0px 1px #fff;
  651. padding: 3px;
  652. z-index:99999999999999999999999;
  653. -webkit-transition:all 1.5s;
  654. -moz-transition:all 1.5s;
  655. -ms-transition:all 1.5s;
  656. -o-transition:all 1.5s;
  657. transition:all 1.5s;
  658. }
  659.  
  660. .buttons {
  661. display:inline-block;
  662. width:90px;
  663. border-top:1px solid #fff;
  664. border-bottom:1px solid #fff;
  665. margin:5px;
  666. padding:5px;
  667. text-align:center;
  668. }
  669.  
  670. .buttons:hover {
  671. background:url('http://i.imgur.com/2ho2wVl.png');
  672. }
  673.  
  674. /*next page and previous page*/
  675.  
  676. #pagination {
  677. left:50%;
  678. bottom:192px;
  679. font-size:10px;
  680. margin-left:-24px;
  681. color:#fff;
  682. position: absolute;
  683. font-family:"prata";
  684. text-align: left;
  685. letter-spacing:2px;
  686. padding-left:87px;
  687. width:300px;
  688. word-spacing:2px;
  689. text-transform:lowercase;
  690. -ms-transform: rotate(22deg); /* IE 9 */
  691. -webkit-transform: rotate(22deg); /* Safari */
  692. transform: rotate(22deg)
  693.  
  694.  
  695. }
  696.  
  697. #pagination a {
  698. padding:0 3px;
  699. opacity:2;
  700. -webkit-filter: Grayscale(0%);
  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(0px)
  705.  
  706. }
  707.  
  708. #pagination a:hover {
  709. color:#18191b;
  710. opacity:1;
  711. -webkit-transition: all 0.8s ease-out;
  712. -moz-transition: all 0.8s ease-out;
  713. transition: all 0.8s ease-out;
  714. -webkit-filter:blur(.8px);
  715. }
  716.  
  717.  
  718. #container {
  719. position: fixed;
  720. width:255px;
  721. height:348px;
  722. left:50%;
  723. bottom:215px;
  724. margin-left:-214px;
  725. overflow: auto;
  726. text-align:justify;
  727. }
  728.  
  729. .content { /* --- Entries within the container --- */
  730. padding:5px;
  731. width:250px;
  732. height:315px;
  733. margin-left:-125px;
  734. margin-top:-150px;
  735. margin-bottom:40px;
  736. position:fixed;
  737. overflow:scroll;
  738. overflow-x:hidden;
  739. background-color:transparent;
  740. -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1), rgba(0,0,0,0));
  741.  
  742. }
  743.  
  744. #post {
  745. width:250px;
  746. margin-top:5px;
  747. font-size:12px;
  748. line-height:110%;
  749. padding-top:10px;
  750. margin-bottom:20px;
  751. margin-left:auto;
  752. margin-right:auto;
  753. }
  754.  
  755. #post blockquote {
  756. padding-left:10px;
  757. margin-left:10px;
  758. border-left:#dab5df 1px solid;
  759. }
  760.  
  761.  
  762. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  763.  
  764. b, strong, bold {
  765. color:#e41936;
  766. font-size:12px;
  767. font-family:"helvetica";
  768. letter-spacing:2px;
  769. line-height:115%;
  770. font-weight: bold;
  771. text-transform:none;
  772. }
  773.  
  774. i, em, italic {
  775. color: #fabbdd;
  776. font-size:15px;
  777. line-height:115%;
  778. font-family:"Homemade Apple", cursive;
  779. text-transform:lowercase;
  780. letter-spacing:2px;
  781.  
  782. }
  783.  
  784. /*time posted, note count, via and source*/
  785.  
  786. #info {
  787. width:230px;
  788. font-size:16px;
  789. padding:4px 0px 1px 0px;
  790. margin:0px 0px 40px 0px;
  791. letter-spacing:4px;
  792. font-size:22px;
  793. color:#fff;
  794. }
  795.  
  796. #info a {
  797. color:#4e3351;
  798. text-shadow:none;
  799. }
  800.  
  801. #info a:hover {
  802. color:#000;
  803. text-shadow:0px 0px 1px #4e3351;
  804. }
  805.  
  806.  
  807. /*tags*/
  808.  
  809. .tags {
  810. width:200px;
  811. margin:-20px 0px 0px 30px;
  812. line-height:115%;
  813. padding:5px;
  814. font-size:10px;
  815. word-break:keep-all;
  816. text-align:center;
  817. font-family:calibri;
  818. background:#fff;
  819. border-top:dashed 1px #5b0000;
  820. border-radius:3px 3px 8px 8px;
  821. background:url('http://i.imgur.com/2ho2wVl.png');
  822. }
  823.  
  824. .tags a {
  825. color:#fff;
  826. text-shadow:0px 0px 1px #222;
  827. }
  828.  
  829. .tags a:hover {
  830. color:#6d6d6d;
  831. text-shadow:0px 0px 1px #6d6d6d;
  832. }
  833.  
  834. .postnote {
  835. width:200px;
  836. margin-top:40px;
  837. font-family:arial;
  838. text-transform:lowercase;
  839. font-style:normal;
  840. letter-spacing:0px;
  841. font-size:10px;
  842. text-align:left;
  843. }
  844.  
  845. .verses img {
  846. float:center;
  847. -webkit-filter: grayscale(0%);
  848. width:260px;
  849. height:100px;
  850. }
  851.  
  852. .pic img {
  853. float: center;
  854. padding: 0px;
  855. margin-right: 10px;
  856. width: 100px;
  857. height: 100px;
  858. }
  859.  
  860. /*here go asks*/
  861.  
  862. #ask {
  863. width:220px;
  864. margin-left:5px;
  865. font-size:15px;
  866. text-align:center;
  867. font-family:arial;
  868. font-style:italic;
  869. text-transform:lowercase;
  870. color:#514058;
  871. }
  872.  
  873. #ask a {
  874. color:#514058;
  875. text-transform:lowercase;
  876. }
  877.  
  878. #ask a:hover {
  879. color:#6d6d6d;
  880. letter-spacing:2px;
  881. }
  882.  
  883. #q {
  884. width:220px;
  885. margin-left:5px;
  886. padding:10px;
  887. text-align:center;
  888. font-family:calibri;
  889. font-size:12px;
  890. color:#fff;
  891. border-radius:3px 5px 3px 5px;
  892. border:1px solid #1d1d1d;
  893. background:url('http://i.imgur.com/2ho2wVl.png');
  894. }
  895.  
  896. #ans {
  897. text-align:justify;
  898. padding:5px;
  899. }
  900.  
  901.  
  902.  
  903.  
  904. /*audio player container*/
  905.  
  906. .playercontainer {
  907. text-align:left;
  908. padding:10px;
  909. padding-left:0px;
  910. background-color:#191919;
  911. width:250px;
  912. }
  913.  
  914. /*artist, song, etc.*/
  915.  
  916. .musicinfo {
  917. padding-top:7px;
  918. padding-left:50px;
  919. color:#fff;
  920. text-align:justify;
  921. }
  922.  
  923. /* --- UPDATES ---*/
  924.  
  925.  
  926.  
  927. #bite
  928. #bite a{
  929. display:block
  930. }
  931. #bite .death {
  932. margin-top:0px;filter: alpha(opacity = 0);
  933. opacity:0;-webkit-transition: all 0.5s ease-out;
  934. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  935. }
  936.  
  937. #bite:hover .death {
  938. margin-top:0px;
  939. -webkit-transition: all 0.8s ease-out;
  940. -moz-transition: all 0.8s ease-out;
  941. transition: all 0.8s ease-out;
  942. filter: alpha(opacity = 100);
  943. filter: alpha(opacity = 100);
  944. opacity:100;
  945. }
  946.  
  947. #actualnews {
  948. font-family:'calibri';
  949. font-size:12px;
  950. color: #fff;
  951. width:150px;
  952. height:auto;
  953. padding-top:3px;
  954. left:50%;
  955. margin-left:-590px;
  956. bottom:160px;
  957. text-align:center;
  958. position:fixed;
  959. background:transparent;
  960. }
  961.  
  962. #thekey {
  963. width:auto;
  964. letter-spacing:5px;
  965. left:50%;
  966. bottom:400px;
  967. margin-left:30px;
  968. padding:2px;
  969. position:fixed;
  970. font-size:11px;
  971. font-family: 'prata', serif;
  972. color:#000;
  973. text-transform:uppercase;
  974. text-shadow: 0px 0px 0px #000;
  975. -ms-transform: rotate(90deg); /* IE 9 */
  976. -webkit-transform: rotate(90deg); /* Safari */
  977. transform: rotate(90deg)
  978.  
  979. }
  980.  
  981. /*credit. only change this if you actually make the code your own*/
  982.  
  983. #credit {
  984. position:fixed;
  985. font-size:18px;
  986. color:#f9bef9;
  987. font-weight:none;
  988. line-height:50%;
  989. letter-spacing:2px;
  990. font-family:'prata';
  991. right:20px;
  992. bottom:15px;
  993. text-transform:none;
  994. text-align:left;
  995. -webkit-transition: all 0.5s ease-in-out;
  996. -moz-transition: all 0.5s ease-in-out;
  997. -o-transition: all 0.5s ease-in-out;
  998. }
  999.  
  1000. #credit a {
  1001. letter-spacing: 0px;
  1002. padding:3px;
  1003. color:#f9bef9;
  1004. }
  1005.  
  1006. #credit a:hover {
  1007. background:#000;
  1008. color:#000;
  1009. }
  1010.  
  1011.  
  1012.  
  1013.  
  1014. {CustomCSS}
  1015.  
  1016. }
  1017.  
  1018. </style></head><body>
  1019. <script src=“http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js”></script>
  1020. <script src=“http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js”></script>
  1021. <script>
  1022. (function($){
  1023. $(document).ready(function(){
  1024. $("a[title]").style_my_tooltips({
  1025. tip_follows_cursor:true,
  1026. tip_delay_time:7,
  1027. tip_fade_speed:7,
  1028. attribute:"title"
  1029. });
  1030. });
  1031. })(jQuery);
  1032. </script>
  1033.  
  1034.  
  1035. <!-- begin updates tab -->
  1036.  
  1037. <div id="bite">
  1038. <div id="thekey">HOVER</div>
  1039. <div class="death">
  1040. <div id="actualnews">
  1041. <para><h1>omg look at this font</h1><br>
  1042. there's a small space between lines<p>
  1043. <h2>big space between lines and a new font!</h2>
  1044. <HR WIDTH="70%">
  1045. <h3>that's how you make a line, and this is a new font too!</h3><br>
  1046. <marquee>to make font move hollaaaa</marquee>
  1047. </para>
  1048. </div></div></div>
  1049.  
  1050. <!-- end updates tab -->
  1051.  
  1052.  
  1053. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  1054. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  1055. <script>
  1056.  
  1057. (function($){
  1058.  
  1059. $(document).ready(function(){
  1060.  
  1061. $("a[title]").style_my_tooltips({
  1062.  
  1063. tip_follows_cursor:true,
  1064.  
  1065. tip_delay_time:50,
  1066.  
  1067. tip_fade_speed:600,
  1068.  
  1069. attribute:"title"
  1070.  
  1071. });
  1072.  
  1073. });
  1074.  
  1075. })(jQuery);
  1076.  
  1077. </script>
  1078.  
  1079.  
  1080.  
  1081.  
  1082. <div class="links">
  1083. <a href="/" title="home">♛</a></div>
  1084.  
  1085. <div class="alinks">
  1086. <a href="#?w=400" title="questions" rel="box1" class="poplight">♛</a></div>
  1087.  
  1088. <div class="blinks">
  1089. <a href="#?w=600" title="about" rel="box6" class="poplight">♛</a></div>
  1090.  
  1091. <div class="clinks">
  1092. <a href="#?w=600" title="verses" rel="box3" class="poplight">♛</a></div>
  1093.  
  1094. <div class="dlinks">
  1095. <a href="#?w=600" title="rules" rel="box2" class="poplight">♛</a></div>
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109. </div>
  1110.  
  1111. <div id="description">{Description}</div>
  1112.  
  1113.  
  1114. <div id="pagination">
  1115. {block:Pagination}
  1116. {block:PreviousPage}
  1117. <a href="{PreviousPage}">back</a>
  1118. {/block:PreviousPage}
  1119.  
  1120.  
  1121. {block:NextPage}
  1122. <a href="{NextPage}">/ forth</a>
  1123. {/block:NextPage}
  1124. {/block:Pagination}
  1125. </div>
  1126.  
  1127.  
  1128.  
  1129. </div>
  1130.  
  1131.  
  1132. <div id="container">
  1133. <div id="content">
  1134.  
  1135. {block:Posts}<div id="post">
  1136.  
  1137. {block:Text}
  1138. {block:Title}<h1><center>{Title}</center></h1>{/block:Title}
  1139. {Body}
  1140. {/block:Text}
  1141.  
  1142. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1143.  
  1144. <center>{block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}</center>
  1145.  
  1146. {block:Quote}
  1147. <h2>{Quote}</h2>
  1148. <h1>—{Source}</h1>
  1149. {/block:Quote}
  1150.  
  1151. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  1152.  
  1153. {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}
  1154.  
  1155. {block:Audio}<div class="audio">{AudioPlayerBlack}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1156.  
  1157. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1158.  
  1159. {block:Answer}
  1160.  
  1161. <div id="ask">{Asker}</div>
  1162. <div id="q">{Question}</div>
  1163. <br/>{Answer}{/block:Answer}
  1164.  
  1165. {block:Date}
  1166. <div id="info">
  1167. <a href="{Permalink}" title="{ShortMonth} {DayOfMonthWithZero} - {TimeAgo}" style="position:absolute; margin-left:25px; margin-top:6px;-webkit-transform: rotate(-20deg);-ms-transform: rotate(-20deg);transform: rotate(-20deg);">*</a>
  1168. <a href="{Permalink}" title="{NoteCountWithLabel}" style="position:absolute; margin-left:3px; margin-top:5px;font-size:25px;-webkit-transform: rotate(20deg);-ms-transform: rotate(20deg);transform: rotate(20deg);">△</a>
  1169. <a href={ReblogURL} target=”_blank” class=”details” title="Reblog" style="position:absolute; margin-left:5px; margin-top:23px;font-size:17px;-webkit-transform: rotate(-50deg);-ms-transform: rotate(-50deg);transform: rotate(-50deg);">▲</a>
  1170. {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->{/block:ContentSource}
  1171. <!-- {block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  1172. </div>
  1173. {/block:Date}
  1174.  
  1175.  
  1176. {block:HasTags}
  1177. <div class="tags">
  1178. {block:Tags} <a href="{TagURL}" title="{Tag}">&nbsp;#{Tag}&nbsp;</a> {/block:Tags}</div>
  1179. {/block:HasTags}
  1180.  
  1181.  
  1182. <div class="postnote">
  1183. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1184. </div>
  1185. </div>
  1186. {/block:Posts}
  1187. </div>
  1188. </div>
  1189. </div>
  1190. </div></div>
  1191.  
  1192.  
  1193.  
  1194.  
  1195. </div></div></div></div>
  1196. </div>
  1197.  
  1198. <div id="credit"><a href="http://butscrewmefirst.tumblr.com" title="theme by manon"><big>Ⓜ</big></a></div>
  1199.  
  1200. </body>
  1201.  
  1202. </div></div></div></div></div></div></div></div></div></div>
  1203. <div id="box1" class="question_block">
  1204. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  1205. </div>
  1206. </div></div></div></div></div></div></div></div></div></div>
  1207.  
  1208. <div id="box8" class="question_block" style="height:450px; padding:0px; background:url(); background-repeat:no repeat; overflow-x:hidden;">
  1209. <iframe frameborder="0" height="200" id="submit_form" scrolling="yes" src="http://www.tumblr.com/submit_form/{Name}.tumblr.com" width="100%"></iframe>
  1210. </div>
  1211. </div></div>
  1212.  
  1213. <div id="box2" class="popup_block">
  1214. <div id="heading">GUIDELINES</div>
  1215. <div id="poptext">
  1216. 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. 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>
  1217. 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. 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.
  1218. </div>
  1219. </div>
  1220.  
  1221. </div></div></div></div></div></div></div></div></div></div>
  1222.  
  1223.  
  1224.  
  1225.  
  1226. <div id="box6" class="popup_block">
  1227. <div id="heading">BIOGRAPHY</div>
  1228. <div id="poptext">
  1229. <img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center><br>
  1230. 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>
  1231. 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>
  1232. 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.
  1233.  
  1234. </div>
  1235. </div>
  1236. </div>
  1237.  
  1238. </div></div></div></div></div></div></div></div></div></div>
  1239.  
  1240.  
  1241.  
  1242. <div id="box2" class="popup_block">
  1243. <div id="heading">GUIDELINES</div>
  1244. <div id="poptext">
  1245. -Don’t be an asshole. Seriously, this one’s easy to follow.<br>
  1246. -No godmodding will be tolerated. Annette is my oc and i’ll play her how I want.<br>
  1247. -I am not Lana Del Rey or affiliated with her, nor do I claim to be.<br>
  1248. My blog says selective, but seriously, don’t be afraid to shoot me a message.<br>
  1249. -I will rp in Tumblr IM, but I would rather you message me first and ask. Random ic messages will most likely be ignored.<br>
  1250. -The mun and muse both are 21+.<br>
  1251. -This blog will contain nsfw material and triggers, which I will do my best to keep tagged appropriately. If you see something triggering on my blog, don’t hesitate to ask me to tag it.<br>
  1252. -I ask that anyone I rp nsfw-themed threads with be at least 18.<br>
  1253. -I reserve the right to refuse to play with anyone regardless the reason.<br>
  1254. if I haven’t replied to our thread, chances are I lost it. Don’t hesitate to message me and remind me because nine times out of ten, I forget, but please don’t nag. If I say I’ll get to it, then I’ll get to it.<br>
  1255. -Likewise, I might reply to someone multiple times while I’m still working on your reply, and that’s just because I might have a stronger muse for that thread, not because I'm ignoring you or I'm mad at you or anything like that. Annette is a little shit, she does what she wants. I'm just the poor bastard who has to write it all down.<br>
  1256. -No hate will be tolerated.<br>
  1257. -I am very open to playing with oc’s or characters of most fandoms.<br>
  1258. -Don’t be offended if I don’t follow you back, it’s just because I like to keep my dash clean and tidy.<br>
  1259. -This list is subject to change at any point, so you might want to check back randomly. If I do change something, though, I will probably throw a psa up.
  1260. </div>
  1261. </div>
  1262.  
  1263. </div></div></div></div></div></div></div></div></div></div>
  1264.  
  1265.  
  1266.  
  1267.  
  1268. <div id="box3" class="popup_block">
  1269. <div id="heading">UNIVERSES</div>
  1270. <div id="poptext">
  1271. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1272. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1273.  
  1274. 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.
  1275. <HR WIDTH="90%">
  1276. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1277. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1278.  
  1279. 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.
  1280. <HR WIDTH="90%">
  1281. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1282. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1283.  
  1284. 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.
  1285. <HR WIDTH="90%">
  1286. <center><img src="http://i.imgur.com/aB1KCnl.gif" class="verses"></center>
  1287. <b><center><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></center></b>
  1288. 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.
  1289.  
  1290. </center>
  1291. </div>
  1292. </div>
  1293. </div>
  1294. </div></div></div></div></div></div></div></div></div></div>
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement