Advertisement
Nightroad

Knightlord Theme

Sep 29th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.04 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 Basil (edhelhernil). Edit as much as you like to suit your needs, however, please leave my credit in tact, thank you!.-->
  5.  
  6.  
  7. <meta name="color:background" content="#ffffff"/>
  8. <meta name="color:text" content="#000000"/>
  9. <meta name="color:link" content="#000000"/>
  10. <meta name="color:link hover" content="#ddd"/>
  11. <meta name="color:post links" content="#928f8f">
  12. <meta name="color:border" content="#000000"/>
  13. <meta name="color:hoverlink text" content="#000000"/>
  14. <meta name="color:scrollbar bg" content="#6b6d6d"/>
  15. <meta name="color:tooltip color" content="#6b6d6d"/>
  16. <meta name="color:title color" content="#000000"/>
  17. <meta name="color:blockquote color" content="#000000"/>
  18. <meta name="color:sidebar link" content="#000000" />
  19.  
  20.  
  21. <meta name="text:link1" content="" />
  22. <meta name="text:link1 url" content="/">
  23. <meta name="text:link2" content="" />
  24. <meta name="text:link2 url" content="/">
  25. <meta name="text:link3" content="" />
  26. <meta name="text:link3 url" content="/">
  27. <meta name="text:link4" content="" />
  28. <meta name="text:link4 url" content="/">
  29. <meta name="text:link5" content="" />
  30. <meta name="text:link5 url" content="/">
  31. <meta name="text:link6" content="" />
  32. <meta name="text:link6 url" content="/">
  33. <meta name="text:link7" content="" />
  34. <meta name="text:link7 url" content="/">
  35. <meta name="text:link8" content="" />
  36. <meta name="text:link8 url" content="/">
  37.  
  38. <meta name="image:background" content=""/>
  39. <meta name="image:info bg" content=""/>
  40. <meta name="image:boxbackground" content=""/>
  41. <meta name="image:tooltip bg" content=""/>
  42.  
  43.  
  44.  
  45. <head><title>{Title}</title>
  46. <link rel="shortcut icon" href="{Favicon}">
  47. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  48. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  49.  
  50.  
  51. <script type="text/javascript"
  52. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  53. <script>
  54. $(document).ready(function() {
  55. //
  56. $('a.poplight[href^=#]').click(function() {
  57. var popID = $(this).attr('rel'); //Get Popup Name
  58. var popURL = $(this).attr('href'); //Get Popup href to define size
  59. var query= popURL.split('?');
  60. var dim= query[1].split('&');
  61. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  62. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  63. var popMargTop = ($('#' + popID).height() + 80) / 2;
  64. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  65. //Apply Margin to Popup
  66. $('#' + popID).css({
  67. 'margin-top' : -popMargTop,
  68. 'margin-left' : -popMargLeft
  69. });
  70. $('body').append('<div id="fade"></div>');
  71. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  72. return false;
  73. });
  74. $('a.close, #fade').live('click', function() {
  75. $('#fade , .popup_block').fadeOut(function() {
  76. $('#fade, a.close').remove(); //fade them both out
  77. });
  78. return false;
  79. });
  80. });
  81. </script>
  82.  
  83. <href='http://fonts.googleapis.com/css?family=Monsieur+La+Doulaise' rel='stylesheet' type='text/css'>
  84.  
  85.  
  86. <style type="text/css">
  87.  
  88.  
  89. .popup_block{
  90. color:{color:text} !important;
  91. font-family:times;
  92. font-size:15px;
  93. display:none;
  94. background:#000;
  95. float:left;
  96. padding:10px 10px 10px;
  97. position:fixed;
  98. background-image: url({image:boxbackground});
  99. top:55%;left:50%;
  100. width: 450px;
  101. height: 430px;
  102. overflow-y:scroll;
  103. overflow-x:hidden;
  104. z-index: 99999;
  105. box-shadow: 0px 0px 0px #000; /* delete for solid white */
  106. }
  107.  
  108. .popup_block a {
  109. color:#6b12128;
  110. text-decoration:underline;
  111. }
  112.  
  113. *html #fade {position: absolute;}
  114. *html .popup_block {position: absolute;}
  115. #fade {
  116. display:none;
  117. position:fixed;
  118. left:0px;
  119. top:0px;
  120. width:100%;
  121. height:100%;
  122. z-index:9999;
  123. background:#000; /* change to #fff for solid white */
  124. opacity:0.5; /* change to opacity:1; */
  125. }
  126.  
  127. /*--Making IE6 Understand Fixed Positioning--*/
  128. *html #fade {
  129. position: absolute;
  130. }
  131. *html .popup_block {
  132. position: absolute;
  133. }
  134.  
  135. /* --- UPDATES ---*/
  136.  
  137. #updates {
  138. font-size:9px;
  139. color:#fff !important;
  140. text-align:center;
  141. font-family:times;
  142. background-color:rgba(229, 229, 229, 0.75);
  143. height:13px;
  144. width:150px;
  145. padding:4px;
  146. top:5px;
  147. left:-5px;
  148. z-index:10;
  149. position:fixed;
  150. overflow:hidden;
  151. -webkit-transition: all 0.5s ease-in-out;
  152. -moz-transition: all 0.5s ease-in-out;
  153. -o-transition: all 0.5s ease-in-out;
  154. }
  155.  
  156. #updates:hover {
  157. height:220px;
  158. color:#6b1212 !important;
  159. -webkit-transition: all 0.5s ease-in-out;
  160. -moz-transition: all 0.5s ease-in-out;
  161. -o-transition: all 0.5s ease-in-out;
  162. }
  163.  
  164. #updates:hover a {
  165. color:#925d75;
  166. }
  167.  
  168.  
  169. #updatestitle {
  170. font-size:9px;
  171. text-transform:uppercase;
  172. font-family:times;
  173. font-weight:none;
  174. text-shadow:1px 1px 1px #737373;
  175. color: #6b1212;
  176. }
  177.  
  178.  
  179. ::-webkit-scrollbar-thumb {
  180. height:auto;
  181. background-color:{color:scrollbar bg};
  182. }
  183.  
  184. ::-webkit-scrollbar {
  185. height:0px;
  186. width:0px;
  187. padding-right:2px;
  188. background-color:white;
  189. }
  190.  
  191.  
  192.  
  193. h1 {
  194. font-weight:normal;
  195. font-size:15px;
  196. text-align:center;
  197. font-style:normal;
  198. line-height:100%;
  199. letter-spacing:1px;
  200. text-transform:uppercase;
  201. color:{color:text};
  202. }
  203.  
  204. blockquote {
  205. border-left:2px solid #e3e3e3;
  206. border-radius:2px;
  207. padding-left:8px;
  208. margin:17px;
  209. text-align:left;
  210. }
  211.  
  212.  
  213.  
  214. h2 {
  215. font-size:10px;
  216. text-align:center;
  217. line-height:60%;
  218. letter-spacing:-0.5px;
  219. color:{color:text};
  220. font-weight:bold;
  221. text-transform:uppercase;
  222. padding:5px;
  223. padding-bottom:2px;
  224. }
  225.  
  226. body {
  227. background:{color:background};
  228. background-image: url({image:background});
  229. background-attachment: absolute;
  230. background-repeat: no-repeat;
  231. background-position: top left;
  232. margin:0px;
  233. color:#a2a2a2;
  234. font-family:cambria;
  235. font-size:15px;
  236. text-align:left;
  237. line-height:100%;
  238. word-wrap:break-word;
  239. }
  240.  
  241. a {
  242. text-decoration:none;
  243. outline:none;
  244. -moz-outline-style:none;
  245. color:{color:post links};
  246. -moz-transition-duration:0.9s;
  247. -webkit-transition-duration:0.9s;
  248. -o-transition-duration:0.9s;
  249. }
  250.  
  251. a:hover {
  252. color:#fff;
  253. -moz-transition-duration:0.9s;
  254. -webkit-transition-duration:0.9s;
  255. -o-transition-duration:0.9s;
  256. }
  257.  
  258.  
  259. img {
  260. border:none;
  261. }
  262.  
  263.  
  264.  
  265. #sidebar {
  266. width:250px;
  267. position:fixed;
  268. margin-left:205px;
  269. margin-top:190px;
  270. }
  271.  
  272.  
  273. #links {
  274. width:500px;
  275. margin-top:200px;
  276. margin-left:10px;
  277. padding:1px;
  278. font-family:georgia;
  279. text-align:left;
  280. text-color:#505050;
  281. word-spacing:0px;
  282. font-size:25px;
  283. font-weight:bold;
  284. display:block;
  285. color:#505050;
  286.  
  287.  
  288. }
  289.  
  290. #links a {
  291. text-decoration:none !important;
  292. letter-spacing: 1px;
  293. padding:3px;
  294. color:#505050;
  295. opacity:.85;
  296. -webkit-transition:none !important;
  297. -moz-transition:none !important;
  298.  
  299. }
  300.  
  301. #links a:hover {
  302. color:#000;
  303. text-shadow:0px 0px 12px white;
  304.  
  305. }
  306.  
  307. #alinks {
  308. width:400px;
  309. margin-top:370px;
  310. margin-left:-55px;
  311. padding:1px;
  312. font-family:georgia;
  313. text-align:left;
  314. text-color:#505050;
  315. word-spacing:0px;
  316. font-size:25px;
  317. font-weight:bold;
  318. display:block;
  319. color:#505050;
  320.  
  321.  
  322. }
  323.  
  324. #links a {
  325. text-decoration:none !important;
  326. letter-spacing: 1px;
  327. padding:3px;
  328. color:#505050;
  329. opacity:.85;
  330. -webkit-transition:none !important;
  331. -moz-transition:none !important;
  332.  
  333. }
  334.  
  335. #links a:hover {
  336. color:#000;
  337. text-shadow:0px 0px 12px white;
  338.  
  339. }
  340.  
  341.  
  342. #blinks {
  343. width:500px;
  344. margin-top:10px;
  345. margin-left:-8px;
  346. padding:1px;
  347. font-family:georgia;
  348. text-align:left;
  349. text-color:#505050;
  350. word-spacing:0px;
  351. font-size:25px;
  352. font-weight:bold;
  353. display:block;
  354. color:#505050;
  355.  
  356.  
  357. }
  358.  
  359. #links a {
  360. text-decoration:none !important;
  361. letter-spacing: 1px;
  362. padding:3px;
  363. color:#505050;
  364. opacity:.85;
  365. -webkit-transition:none !important;
  366. -moz-transition:none !important;
  367.  
  368. }
  369.  
  370. #links a:hover {
  371. color:#000;
  372. text-shadow:0px 0px 12px white;
  373.  
  374. }
  375.  
  376. #clinks {
  377. width:500px;
  378. margin-top:-120px;
  379. margin-left:37px;
  380. padding:1px;
  381. font-family:georgia;
  382. text-align:left;
  383. text-color:#505050;
  384. word-spacing:0px;
  385. font-size:25px;
  386. font-weight:bold;
  387. display:block;
  388. color:#505050;
  389.  
  390.  
  391. }
  392.  
  393. #links a {
  394. text-decoration:none !important;
  395. letter-spacing: 1px;
  396. padding:3px;
  397. color:#505050;
  398. opacity:.85;
  399. -webkit-transition:none !important;
  400. -moz-transition:none !important;
  401.  
  402. }
  403.  
  404. #links a:hover {
  405. color:#000;
  406. text-shadow:0px 0px 12px white;
  407.  
  408. }
  409.  
  410. #dlinks {
  411. width:500px;
  412. margin-top:10px;
  413. margin-left:109px;
  414. padding:1px;
  415. font-family:georgia;
  416. text-align:left;
  417. text-color:#505050;
  418. word-spacing:0px;
  419. font-size:25px;
  420. font-weight:bold;
  421. display:block;
  422. color:#505050;
  423.  
  424.  
  425. }
  426.  
  427. #links a {
  428. text-decoration:none !important;
  429. letter-spacing: 1px;
  430. padding:3px;
  431. color:#505050;
  432. opacity:.85;
  433. -webkit-transition:none !important;
  434. -moz-transition:none !important;
  435.  
  436. }
  437.  
  438. #links a:hover {
  439. color:#000;
  440. text-shadow:0px 0px 12px white;
  441.  
  442. }
  443.  
  444. #elinks {
  445. width:500px;
  446. margin-top:-95px;
  447. margin-left:165px;
  448. padding:1px;
  449. font-family:georgia;
  450. text-align:left;
  451. text-color:#505050;
  452. word-spacing:0px;
  453. font-size:25px;
  454. font-weight:bold;
  455. display:block;
  456. color:#505050;
  457.  
  458.  
  459. }
  460.  
  461. #links a {
  462. text-decoration:none !important;
  463. letter-spacing: 1px;
  464. padding:3px;
  465. color:#505050;
  466. opacity:.85;
  467. -webkit-transition:none !important;
  468. -moz-transition:none !important;
  469.  
  470. }
  471.  
  472. #links a:hover {
  473. color:#000;
  474. text-shadow:0px 0px 12px white;
  475.  
  476. }
  477.  
  478. #description {
  479. width:308px;
  480. font-size:9px;
  481. padding:5px;
  482. color:#fff;
  483. opacity:.85;
  484. text-align:center;
  485. letter-spacing:0px;
  486. line-height:90%;
  487. margin-left:357px;
  488. margin-top:-34px;
  489. }
  490.  
  491.  
  492. #s-m-t-tooltip {
  493. max-width:300px;
  494. padding:4px 4px 4px 6px;
  495. margin:-25px 0px 0px -25px;
  496. background-image: url({image:tooltip bg});
  497. font-family:cambria;
  498. font-size:8px;
  499. letter-spacing:1px;
  500. border-bottom:1px dashed #000;
  501. text-transform:uppercase;
  502. font-weight:none;
  503. color:#000;
  504. z-index:999999999999999999999999999999999999;
  505. -webkit-transition: .6s ease-in-out;
  506. -moz-transition: .6s ease-in-out;
  507. -o-transition: .6s ease-in-out;
  508.  
  509. }
  510.  
  511.  
  512. #pagination {
  513. font-family:calibri;
  514. width:160px;
  515. font-size:13px;
  516. margin-left: 150px;
  517. margin-top: 107px;
  518. letter-spacing:0px;
  519. text-transform: uppercase;
  520. text-align:center;
  521. }
  522.  
  523. #pagination a{
  524. opacity: 1;
  525. text-decoration:none !important;
  526. text-shadow: 0px 0px 0px #000!important;
  527. }
  528.  
  529. #pagination:hover{
  530. padding:0 3px;
  531. color: #8f1616;
  532. -webkit-transition:all .9s ease-in-out;
  533. -moz-transition:all .9s ease-in-out;
  534. transition:all .9s ease-in-out;
  535. -webkit-filter: blur(1px);
  536. }
  537.  
  538.  
  539. bold, strong, b {
  540. font-weight:10px;
  541. text-transform:normal;
  542. letter-spacing:1px;
  543. font-size:14px;
  544. text-shadow:0.5px 0.5px 0.5px #000;
  545. color:#e5b5b5;
  546.  
  547. }
  548.  
  549. i {
  550. font-style: italic;
  551. font-size:14px;
  552. letter-spacing:1px;
  553. text-shadow:1px 1px 1px #000;
  554. color:#b10b0b;
  555. }
  556.  
  557. small, sub {
  558. font-size:11px;
  559. }
  560.  
  561. pre {
  562. font-size:10px;
  563. text-align:center;
  564. width:100%;
  565. white-space:pre-wrap;
  566. word-wrap:break-word;
  567.  
  568. }
  569.  
  570. #post {
  571. width:400px;
  572. padding-bottom:30px;
  573. margin-top:10px;
  574. }
  575.  
  576. #entries {
  577. background:transparent;
  578. width:540px;
  579. height:270px;
  580. text-align:left;
  581. position:fixed;
  582. padding:0px;
  583. overflow:scroll;
  584. overflow-x:hidden;
  585. opacity:1;
  586. z-index:999;
  587. margin-top:100px;
  588. margin-left:131px;
  589.  
  590. }
  591.  
  592.  
  593.  
  594.  
  595. #info {
  596. font-family:cambria;
  597. width:485px;
  598. margin-top:15px;
  599. padding:6px;
  600. font-size:16px;
  601. color:{color:post links};
  602. background-image:url({image:info bg});
  603. opacity:.80;
  604. box-shadow: 1px 1px 1px #7b7b7b;
  605. letter-spacing:1px;
  606. border-bottom:1px #6b1212;
  607. text-transform:uppercase;
  608. font-style:normal;
  609. text-align:center;
  610.  
  611. }
  612.  
  613. #info a {
  614. text-decoration:none !important;
  615. margin-top:7px;
  616. text-align:center;
  617. color:#6b1212;
  618. opacity:.3;
  619. text-shadow:1px 1px 1px #000;
  620. }
  621.  
  622. #info a:hover {
  623. text-shadow:0px 0px 7px white;
  624. -webkit-transition: .5s ease-in-out;
  625. -moz-transition: .5s ease-in-out;
  626. -o-transition: .5s ease-in-out;
  627. }
  628.  
  629.  
  630.  
  631. .tags {
  632. font-family:cambria;
  633. font-style:normal;
  634. width:500px;
  635. text-transform:normal;
  636. line-height:120%;
  637. font-size:8px;
  638. letter-spacing:1px;
  639. text-align:center;
  640. padding-top:3px;
  641. padding-bottom:6px;
  642. opacity:0;
  643. text-shadow:none !important;
  644. -webkit-transition: 0.7s ease-in 0s;
  645. -moz-transition: 0.7s ease-in 0s;
  646. -o-transition: 0.7s ease-in 0s;
  647.  
  648. }
  649.  
  650. .tags a{
  651. text-decoration:none !important;
  652. text-shadow:none !important;
  653. color:#7b7575;
  654. }
  655.  
  656. .tags a:hover{
  657. color:#7b7575;
  658. -webkit-transition: 0.7s ease-in 0s;
  659. -moz-transition: 0.7s ease-in 0s;
  660. -o-transition: 0.7s ease-in 0s;
  661. }
  662.  
  663. #post:hover .tags{
  664. opacity:1;
  665. color:#7b7575;
  666. -webkit-transition: 0.7s ease-in 0s;
  667. -moz-transition: 0.7s ease-in 0s;
  668. -o-transition: 0.7s ease-in 0s;
  669. }
  670.  
  671.  
  672.  
  673. .question {
  674. font-family:cambria;
  675. padding:20px;
  676. font-size:11px;
  677. text-align:center;
  678. color:#000;
  679. background-image:url({image:info bg});
  680. opacity:.75;
  681. border-radius:20px;
  682. border-bottom:dashed 1px #fff;
  683. line-height:100%;
  684. margin-bottom:6px;
  685. text-shadow:1px 1px 1px #fff;
  686. }
  687.  
  688.  
  689. .answer {
  690. text-align:left;
  691. padding-top:15px;
  692. color:{color:text};
  693. }
  694.  
  695.  
  696. .playercontainer {
  697. text-align:left;
  698. padding:10px;
  699. padding-left:0px;
  700. background-color:#fff;
  701. width:480px;
  702. }
  703.  
  704.  
  705. .musicinfo {
  706. padding-top:7px;
  707. padding-left:50px;
  708. color:#000;
  709. text-align:justify;
  710. }
  711.  
  712.  
  713. #credit {
  714. position:fixed;
  715. font-size:16px;
  716. color:#fff;
  717. font-weight:none;
  718. line-height:150%;
  719. letter-spacing:2px;
  720. right:5px;
  721. bottom:5px;
  722. text-transform:uppercase;
  723. text-align:center;
  724. }
  725.  
  726. #credit a {
  727. letter-spacing: 0px;
  728. padding:3px;
  729. color:#972626;
  730. text-decoration:none !important;
  731. text-shadow:-1px 0px 0px gray;
  732. }
  733.  
  734. #credit a:hover {
  735. text-shadow:0px 0px 7px white;
  736. -ms-transform: rotate(-380deg);
  737. -webkit-transform: rotate(-380deg);
  738. transform: rotate(-380deg);
  739. -webkit-transition: all 0.4s ease-in-out;
  740. -moz-transition: all 0.4s ease-in-out;
  741. -o-transition: all 0.4s ease-in-out;
  742. }
  743.  
  744.  
  745.  
  746. {CustomCSS}</style></head><body>
  747.  
  748.  
  749. <!-- begin updates tab -->
  750.  
  751. <div id="updates">
  752. <div id="updatestitle">hover</div>
  753.  
  754. <div style="padding-top:10px;">
  755.  
  756. <big>Independent and selective <i>Cain Knightlord</i> of <b>Trinity Blood</b>. Please read links before roleplaying. </big>
  757.  
  758.  
  759. </div></div>
  760.  
  761. <!-- end updates tab -->
  762.  
  763. <script type="text/javascript">
  764. WebFontConfig = {
  765. google: { families: [ 'Monsieur+La+Doulaise::latin' ] }
  766. };
  767. (function() {
  768. var wf = document.createElement('script');
  769. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  770. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  771. wf.type = 'text/javascript';
  772. wf.async = 'true';
  773. var s = document.getElementsByTagName('script')[0];
  774. s.parentNode.insertBefore(wf, s);
  775. })(); </script>
  776.  
  777. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  778. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  779. <script>
  780.  
  781. (function($){
  782.  
  783. $(document).ready(function(){
  784.  
  785. $("a[title]").style_my_tooltips({
  786.  
  787. tip_follows_cursor:true,
  788.  
  789. tip_delay_time:60,
  790.  
  791. tip_fade_speed:900,
  792.  
  793. attribute:"title"
  794.  
  795. });
  796.  
  797. });
  798.  
  799. })(jQuery);
  800.  
  801. </script>
  802.  
  803.  
  804. <div id="sidebar">
  805. <div id="title">{text:title text}</div>
  806.  
  807.  
  808. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  809.  
  810. <div id="alinks">
  811. <a href="{text:link1 url}" title="{text:link1}"><img src="http://static.tumblr.com/l0q065v/n1Iods3n9/3.png"></a></div>
  812. <div id="blinks">
  813. <a href="#?w=360" rel="box2" class="poplight" title="inbox"><img src="http://static.tumblr.com/l0q065v/Tg1ods3na/2.png"></a></div>
  814. <div id="clinks">
  815. <a href="#?w=360" rel="box3" class="poplight" title="laws"><img src="http://static.tumblr.com/l0q065v/ECGods3nd/1.png"></a></div>
  816. <div id="dlinks">
  817. <a href="/submit" rel="box4" class="poplight" title="submit"><img src="http://static.tumblr.com/l0q065v/74Iods3nh/2.png"></a></div>
  818. <div id="elinks">
  819. <a href="#?w=360" rel="box5" class="poplight" title="about"><img src="http://static.tumblr.com/l0q065v/C0Iods3nk/3.png"></a></div>
  820.  
  821. </div>
  822.  
  823. <div id="description">{Description}</div>
  824.  
  825.  
  826. <div id="pagination">
  827. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">retreat / </a>{/block:PreviousPage}{block:NextPage}<a href="{NextPage}"> advance</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  828.  
  829.  
  830. </div>
  831.  
  832.  
  833. <div id="entries">{block:Posts}<!-- {block:NoRebloggedFrom}
  834. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  835. {/block:NoRebloggedFrom} --><div id="post">
  836.  
  837. {block:Text}<h1>{block:Title}<div style="line-height:80%; text-align: center; font-family:times; font-size: 26px; text-transform:uppercase;">{Title};</div>{/block:Title}</h1>{Body}{/block:Text}
  838.  
  839. {block:Quote}<div style="line-height:80%; text-align: center; font-family: cambria; font-size: 18px; text-transform:uppercase">"{Quote}"</div>{block:Source}<div style="text-align: center; font-size:8px;">— {Source}</div>{/block:Source}{/block:Quote}
  840.  
  841. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  842.  
  843. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  844.  
  845. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  846.  
  847. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  848.  
  849. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  850.  
  851.  
  852. {block:AudioPlayer}
  853. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px; width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  854.  
  855. {block:Answer}<div class="question"><div style="line-height:80%; text-align: center; font-family: 'Monsieur La Doulaise', cursive; font-size: 25px;">&nbsp;{ASKER}:&nbsp;</div><div style="question font-family: 'cambria';">{Question}<br></div></div><div class="answer">{Answer}</div>{/block:answer}
  856.  
  857. {block:Date}<div id="info"> <a href="{Permalink}" title="{TimeAgo}"><big><big>✝</big></big>&nbsp;</a> {block:NoteCount}<a href="{Permalink}" title="{NoteCount}"><big><big>✝</big></big>&nbsp;</a> {/block:NoteCount}
  858. {/block:Date}
  859.  
  860. {block:ContentSource}<a href="{SourceURL}"target="_blank" title="source"><big><big>✝</big></big>&nbsp;</a>{/block:ContentSource} <a href="{ReblogURL}"target="_blank" title="reblog this post"><big><big>✝</big></big></a>
  861. </div>
  862.  
  863. {block:HasTags}
  864. <div class="tags">
  865. {block:Tags} <a href="{TagURL}"><big>➳</big>{Tag}&nbsp;</a> {/block:Tags}</div>
  866. {/block:HasTags}
  867. <div class="postnote">
  868. {block:PostNotes}{PostNotes}{/block:PostNotes}
  869. </div>
  870. </div>
  871. {/block:Posts}
  872.  
  873.  
  874.  
  875. </div></div></div></div>
  876. </div>
  877.  
  878. <!--DO NOT TOUCH THIS PART UNLESS IT IS FOR MINOR EDITING OF ART CREDIT AND SUCH-->
  879. <div id="credit"><a href="#?w=200" rel="box1" class="poplight" title="click for credits"><big><big><big><big><big>✝</big></big></big></big></big></a></div>
  880.  
  881. <BODY onselectstart="return false;" ondragstart="return false;">
  882. <script language=JavaScript>
  883. <!--
  884.  
  885. //Disable right mouse click Script
  886. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  887. //For full source code, visit http://www.dynamicdrive.com
  888.  
  889. var message="Woah there.";
  890.  
  891. ///////////////////////////////////
  892. function clickIE4(){
  893. if (event.button==2){
  894. alert(message);
  895. return false;
  896. }
  897. }
  898.  
  899. function clickNS4(e){
  900. if (document.layers||document.getElementById&&!document.all){
  901. if (e.which==2||e.which==3){
  902. alert(message);
  903. return false;
  904. }
  905. }
  906. }
  907.  
  908. if (document.layers){
  909. document.captureEvents(Event.MOUSEDOWN);
  910. document.onmousedown=clickNS4;
  911. }
  912. else if (document.all&&!document.getElementById){
  913. document.onmousedown=clickIE4;
  914. }
  915.  
  916. document.oncontextmenu=new Function("alert(message);return false")
  917.  
  918. // -->
  919. </script>
  920. </body>
  921. <div id="box1" class="popup_block">
  922. <br>
  923. <br>
  924. <br>
  925. <br>
  926. <br>
  927. <br>
  928. <br>
  929. <p><p><b><big><big><big><big><center>credits page.</center></big></big></big></big></big></big></b>
  930. <p><center>code & background layout by <a href="http://greenleaf.co.vu/">basil</a><br>
  931. updates tab from <a href="http://paynex.tumblr.com/post/85822153083/">here</a><br>
  932. pop-up pages tutorial from <a href="http://str-wrs.tumblr.com/post/54163198643/tutorial-pop-up-boxes-live-preview">here</a>
  933. </div>
  934. <!--DO NOT TOUCH THIS PART UNLESS IT IS FOR MINOR EDITING OF ART CREDIT AND SUCH-->
  935.  
  936. <div id="box2" class="popup_block">
  937. <br><br><br><br><iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/contra-mundii.tumblr.com" width="100%"></iframe><br>
  938. </div>
  939.  
  940. <div id="box3" class="popup_block">
  941. <br><br><br><center><b><big><big><big><big><big><big>LAWS</big></big></big></big></big></big></big></b></center></p>
  942. <p>1. This blog is listed as adult-oriented. There will be gore and violence. There might be explicit content of sexual nature. I will do my best to tag any potential triggers, but please let me know if I missed any. </p><p>2. I don’t think any shipping will happen with Cain, but if it does, it will be purely by chance chemistry. Also do not expect loving, healthy relationships from him. </p><p>3. I am over 18, and won’t roleplay NSFW with anyone under 18. If you are underage, DO NOT lie about it. </p><p>4. I am open to any fandom, although I will have a slight preference for those I know, but never be afraid to ask for a roleplay.</p><p>5. I am open to any OC that has an about page. </p><p>6. &nbsp;I am open to any AU. <br></p><p>7. I do accept magic anons, but I do also hold the right to deny them or alter them if I wish. </p><p>8. I will not tolerate harassment; you will find yourself blocked.</p><p>9. I reserve the right to decline a thread or roleplay.</p><p>10. I reserve the right to change any of these rules at any time.</p>ve the right to change any of these rules at any time.</sub></p>
  943. </div>
  944.  
  945. <div id="box4" class="popup_block">
  946. <br><br><br><center><b><big><big><big><big><big><big>VERSES</big></big></big></big></big></big></big></b></center></p>
  947. <br><p>WIP
  948.  
  949. </div>
  950.  
  951. <div id="box5" class="popup_block">
  952. <br><br><br><center><b><big><big><big><big><big><big>ABOUT</big></big></big></big></big></big></big></b></center></p>
  953. <p>
  954.  
  955. </div>
  956.  
  957. <div id="box6" class="popup_block">
  958. <br><br><br><br>stuff here.
  959. </div>
  960.  
  961. <div id="box7" class="popup_block">
  962. <br><br><br><br>stuff here.
  963. </div>
  964.  
  965.  
  966. </div></div></div></div></div></div></div></div></div></div>
  967. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement