Advertisement
elsaofarendelle

debonairdcrling

Sep 21st, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.69 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <script type="text/javascript"
  6. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  7. <script>
  8. $(document).ready(function() {
  9. //
  10. $('a.poplight[href^=#]').click(function() {
  11. var popID = $(this).attr('rel'); //Get Popup Name
  12. var popURL = $(this).attr('href'); //Get Popup href to define size
  13. var query= popURL.split('?');
  14. var dim= query[1].split('&');
  15. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  16. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  17. var popMargTop = ($('#' + popID).height() + 80) / 2;
  18. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  19. //Apply Margin to Popup
  20. $('#' + popID).css({
  21. 'margin-top' : -popMargTop,
  22. 'margin-left' : -popMargLeft
  23. });
  24. $('body').append('<div id="fade"></div>');
  25. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  26. return false;
  27. });
  28. $('a.close, #fade').live('click', function() {
  29. $('#fade , .popup_block').fadeOut(function() {
  30. $('#fade, a.close').remove(); //fade them both out
  31. });
  32. return false;
  33. });
  34. });
  35. </script>
  36.  
  37. <script>
  38.  
  39. $(document).ready(function(){
  40. $("ul#tabs li").click(function(e){
  41. if (!$(this).hasClass("active")) {
  42. var tabNum = $(this).index();
  43. var nthChild = tabNum+1;
  44. $("ul#tabs li.active").removeClass("active");
  45. $(this).addClass("active");
  46. $("ul#tab li.active").removeClass("active");
  47. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  48. }
  49. });
  50. });
  51. </script>
  52.  
  53. <!--- fonts --->
  54.  
  55. <link href="https://fonts.googleapis.com/css?family=Sorts+Mill+Goudy" rel="stylesheet">
  56.  
  57. <link href="https://fonts.googleapis.com/css?family=Sedgwick+Ave" rel="stylesheet">
  58.  
  59. <link href="https://fonts.googleapis.com/css?family=Zeyada" rel="stylesheet">
  60.  
  61. <!--- tooltips --->
  62.  
  63. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  64. <script type="text/javascript" src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  65. <script>
  66. (function($){
  67. $(document).ready(function(){
  68. $("[title]").style_my_tooltips();
  69. });
  70. })(jQuery);
  71. </script>
  72.  
  73.  
  74. </style>
  75.  
  76.  
  77. <title>{Title}</title>
  78. <link rel="shortcut icon" href="{Favicon}">
  79. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  80. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  81.  
  82.  
  83. <!-------------------------------------------
  84. Code by elsaofarendelle.
  85. Don't copy or distribute.
  86. Don't claim as your own.
  87. -------------------------------------------->
  88.  
  89. <meta name="image:background" content=""/>
  90. <meta name="image:sidebar" content=""/>
  91.  
  92.  
  93. <style type="text/css">
  94.  
  95. *, body, a, a:hover {cursor: url("http://68.media.tumblr.com/tumblr_lpyq18WTCg1qcn2vb.gif"), auto;}
  96.  
  97. /* --- SCROLLBAR START ---*/
  98.  
  99. ::-webkit-scrollbar {
  100. height: 0px;
  101. width: 5px;
  102. background: transparent;
  103. }
  104.  
  105. ::-webkit-scrollbar-thumb {
  106. border: 3px solid transparent;
  107. -webkit-border-radius: none;
  108. -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
  109. }
  110.  
  111. ::-webkit-scrollbar-corner{
  112. background: transparent;
  113. }
  114.  
  115. /* --- SCROLLBAR END --- */
  116.  
  117. /* --- LINK ANIMATION START --- */
  118.  
  119. @keyframes fadein {
  120. from { opacity: 0; }
  121. to { opacity: 1; }
  122. }
  123.  
  124. /* Firefox < 16 */
  125. @-moz-keyframes fadein {
  126. from { opacity: 0; }
  127. to { opacity: 1; }
  128. }
  129.  
  130. /* Safari, Chrome and Opera > 12.1 */
  131. @-webkit-keyframes fadein {
  132. from { opacity: 0; }
  133. to { opacity: 1; }
  134. }
  135.  
  136. /* Internet Explorer */
  137. @-ms-keyframes fadein {
  138. from { opacity: 0; }
  139. to { opacity: 1; }
  140. }
  141.  
  142. /* Opera < 12.1 */
  143. @-o-keyframes fadein {
  144. from { opacity: 0; }
  145. to { opacity: 1; }
  146. }
  147.  
  148. /* LINK ANIMATION END --- */
  149.  
  150.  
  151. /* --- TOOLTIPS START --- */
  152.  
  153. #s-m-t-tooltip{
  154. max-width:300px;
  155. margin:15px;
  156. padding:2px 8px;
  157. border-bottom:3px none #80d7b7;
  158. border-radius:0px;
  159. background: #145440;
  160. color: #80d7b7;
  161. z-index:9999999999999;
  162. font-size:12px;
  163. font-family: 'Sorts Mill Goudy', serif;
  164. text-shadow:0px 0px 3px #191919;
  165. font-weight:bold;
  166. text-transform:normal;
  167. box-shadow:0px 0px 0px #000;
  168. -webkit-transition:all 0.7s;
  169. -moz-transition:all 0.7s;
  170. -ms-transition:all 0.7s;
  171. -o-transition:all 0.7s;
  172. transition:all 0.7s;
  173. }
  174.  
  175. /* --- TOOLTIPS END --- */
  176.  
  177.  
  178. /* --- BODY START ---*/
  179.  
  180. body {
  181. background:#145440;
  182. background-image:url({image:background});
  183. background-attachment: fixed;
  184. background-repeat: no-repeat;
  185. background-position:0px 0px;
  186. margin:0px;
  187. color:#191919;
  188. font-family: 'Sorts Mill Goudy', serif;
  189. font-size:15px;
  190. line-height:120%;
  191. word-wrap: break-word;
  192. }
  193.  
  194. blockquote {
  195. padding-left:5px;
  196. border-left:2px solid;
  197. border-radius:6px;
  198. }
  199.  
  200. a {
  201. color:#191919;
  202. text-decoration:none;
  203. -webkit-transition:all 0.5s ease-in-out;
  204. -moz-transition:all 0.5s ease-in-out;
  205. -o-transition:all 0.5s ease-in-out;
  206. -ms-transition:all 0.5s ease-in-out;
  207. transition:all 0.5s ease-in-out;
  208. }
  209.  
  210.  
  211. img {none;}
  212.  
  213. h1 {
  214. font-family: 'Sedgwick Ave', cursive;
  215. text-transform:none;
  216. font-size:30px;
  217. line-height:30px;
  218. letter-spacing:0px;
  219. text-align:center;
  220. font-style:normal;
  221. color: #191919;
  222. }
  223.  
  224. h2 {
  225. font-family: 'Sedgwick Ave', cursive;
  226. text-transform:none;
  227. font-size:20px;
  228. line-height:30px;
  229. letter-spacing:0px;
  230. text-align:center;
  231. font-style:normal;
  232. color: #1911919;
  233. }
  234.  
  235. #fixerupper1 {
  236. overflow:auto;
  237. height:300px;
  238. position:absolute;
  239. top:50px;
  240. }
  241.  
  242. #rune1 {
  243. width:114px;
  244. height:114px;
  245. background-image:url('https://i.imgur.com/ZWVpPIa.png');
  246. position:fixed;
  247. left:370px;
  248. top:20px;
  249. z-index:2;
  250. }
  251.  
  252. #fixerupper2 {
  253. overflow:auto;
  254. height:300px;
  255. position:absolute;
  256. top:50px;
  257. }
  258.  
  259. #rune2 {
  260. width:120px;
  261. height:120px;
  262. background-image:url('https://i.imgur.com/6Gy1OVU.png');
  263. position:fixed;
  264. left:660px;
  265. top:500px;
  266. z-index:2;
  267. }
  268.  
  269. #container {
  270. background: transparent;
  271. border:none;
  272. width:300px;
  273. height:445px;
  274. margin-left:443px;
  275. margin-top:95px;
  276. position:fixed;
  277. overflow:auto;
  278. padding-left:55pxpx;
  279. padding-right:90px;
  280. padding-top:5px;
  281. padding-bottom:10px;
  282. }
  283.  
  284. #posts {
  285. width:250px;
  286. background-color: transparent;
  287. padding:-50px;
  288. text-align: justify;
  289. font-size: 12px;
  290. padding-top: 50px;
  291. padding-left:2px;
  292. margin-bottom: 50px;
  293. line-height: 100%px;
  294. font-family: times;
  295. z-index:50;
  296. }
  297.  
  298. #posts img {
  299. padding: 0;
  300. max-width:100%;
  301. width: auto;
  302. height: auto;
  303. }
  304.  
  305. pre {
  306. font-family: 'Zeyada', cursive;
  307. font-size:10px;
  308. color:#d6ffef;
  309. text-shadow: none;
  310. letter-spacing:1px;
  311. text-align:center;
  312. text-transform:uppercase;
  313. padding:6px;
  314. background:url('');
  315. background-repeat:repeat;
  316. border: 3px none #a4a4a4;
  317. }
  318.  
  319.  
  320. b {
  321. text-transform: bold;
  322. color: #145440;
  323. text-shadow:0px 0px 3px #145440;
  324. letter-spacing:1px;
  325. font-family: 'Sedgwick Ave', cursive;
  326. font-size:15px;
  327. }
  328.  
  329. i {
  330. text-transform: italic;
  331. color: #145440;
  332. text-shadow:2px 2px 5px #191919;
  333. letter-spacing:1px;
  334. font-family: 'Zeyada', cursive;
  335. font-size:17px;
  336. }
  337.  
  338. em {
  339. text-transform: italic;
  340. color: #145440;
  341. text-shadow:1px 1px 5px #191919;
  342. letter-spacing:1px;
  343. font-family: 'Zeyada', cursive;
  344. font-size:17px;
  345. }
  346.  
  347. sub, small, sup {
  348. font-size: 12px;
  349. }
  350.  
  351.  
  352. /* --- BODY END --- */
  353.  
  354. /* --- SIDEBAR START ---*/
  355.  
  356.  
  357. #sidebar{
  358. position: fixed;
  359. top: 220px;
  360. width:250px;
  361. height:115px;
  362. left: 10px;
  363. padding:20px;
  364. }
  365.  
  366.  
  367.  
  368. #sidebarimage img{
  369. width: 100px;
  370. height:115px;
  371. padding:10px;
  372. border:3px none #f5f5f5;
  373. margin-top:5px;
  374. background:transparent;
  375. background-image:{image:sidebarimage};
  376. }
  377.  
  378.  
  379. #nav {
  380. position:fixed;
  381. overflow:hidden;
  382. margin-top:150px;
  383. margin-left:315px;
  384. }
  385.  
  386. #link1 a , #link2 a, #link3 a
  387.  
  388. #title {
  389. font-family:times;
  390. text-align:center;
  391. width:300px;
  392. margin-top:5px;
  393. margin-left:200px;
  394. text-transform:uppercase;
  395. font-style:normal;
  396. font-size:20px;
  397. color:#fff;
  398. }
  399.  
  400. #description {
  401. width:200px;
  402. height:50px;
  403. margin-top:-200px;
  404. margin-left:70px;
  405. padding: 10px;
  406. text-align:justify;
  407. font-style: none;
  408. font-family: 'Sorts Mill Goudy', serif;
  409. font-size:10px;
  410. color: #191919;
  411. text-shadow: none;
  412. background-color:none;
  413. border:3px none;
  414. letter-spacing:1px;
  415. line-height:130%;
  416. }
  417.  
  418. #pagination {
  419. font-family: 'Sorts Mill Goudy', serif;
  420. width:103px;
  421. font-size:9px;
  422. text-transform:uppercase;
  423. margin-top:175px;
  424. margin-left:140px;
  425. padding-top:25px;
  426. letter-spacing:1px;
  427. font-style:normal;
  428. text-align:center;
  429. }
  430.  
  431. #pagination a {
  432. color:#191919;
  433. text-shadow: none;
  434. }
  435.  
  436. /* --- SIDEBAR END ---*/
  437.  
  438. /* --- LINKS START --- */
  439.  
  440. .links1 {
  441. position:fixed;
  442. font-size:30px;
  443. top: 145px;
  444. left: 215px;
  445. }
  446.  
  447. .links1 a {
  448. text-decoration:none;
  449. text-transform:uppercase;
  450. color: #908583;
  451. text-shadow: 2px 2px 2px #111;
  452. position:fixed;
  453. font-family: times;
  454.  
  455. }
  456.  
  457.  
  458. .links1 a:hover {
  459. text-decoration:none;
  460. text-transform:normal;
  461. color: #eee;
  462. text-shadow:0px 0px 3px #fff;
  463. }
  464.  
  465. .links2 {
  466. position:fixed;
  467. font-size:25px;
  468. top: 390px;
  469. left: 230px;
  470. }
  471.  
  472. .links2 a {
  473. text-decoration:none;
  474. text-transform:uppercase;
  475. color: #908583;
  476. text-shadow: 2px 2px 2px #111;
  477. position:fixed;
  478. font-family: times;
  479.  
  480. }
  481.  
  482.  
  483. .links2 a:hover {
  484. text-decoration:none;
  485. text-transform:normal;
  486. color: #eee;
  487. text-shadow:0px 0px 3px #fff;
  488. }
  489.  
  490. .links3 {
  491. position:fixed;
  492. font-size:35px;
  493. top: 340px;
  494. left: 140px;
  495. }
  496.  
  497. .links3 a {
  498. text-decoration:none;
  499. text-transform:uppercase;
  500. color: #908583;
  501. text-shadow: 2px 2px 2px #111;
  502. position:fixed;
  503. font-family: times;
  504.  
  505. }
  506.  
  507.  
  508. .links3 a:hover {
  509. text-decoration:none;
  510. text-transform:normal;
  511. color: #eee;
  512. text-shadow:0px 0px 3px #fff;
  513. }
  514.  
  515. /* ---LINKS END --- */
  516.  
  517.  
  518. /* --- CREDIT START --- */
  519.  
  520. .credit{
  521. position:fixed;
  522. font-size:19px;
  523. right:12px;
  524. bottom:10px;
  525. }
  526.  
  527. .credit a {
  528. text-decoration:none;
  529. text-transform:uppercase;
  530. color: #145440;
  531. text-shadow:0px 0px 3px #145440;
  532. -moz-transition-duration:.7s;
  533. -webkit-transition-duration:.7s;
  534. -o-transition-duration:.7s;
  535. }
  536.  
  537.  
  538. .credit a:hover {
  539. text-decoration:none;
  540. text-transform:uppercase;
  541. color: #145440;
  542. text-shadow:0px 0px 3px #145440;
  543. }
  544.  
  545. /* --- CREDIT END --- */
  546.  
  547.  
  548. /* --- POST NOTES START --- */
  549.  
  550. .note {
  551. padding:0px 20px 0px 20px;
  552. background-color:transparent;
  553. text-transform:lowercase;
  554. letter-spacing:0px;
  555. font-size: 11px;
  556. font-style:normal;
  557. text-align:left;
  558. line-height:120%;
  559. }
  560.  
  561. .note li {
  562. list-style-type:none;
  563. padding:5px 25px 5px 25px;
  564. text-align:left;
  565. margin-right:30px;
  566. margin-top:-50px;
  567. }
  568.  
  569.  
  570. #info {
  571. height:30px;
  572. width:250px;
  573. text-align:center;
  574. margin-top:10px;
  575. padding-top:10px;
  576. padding:0px;
  577. padding-bottom:1px;
  578. text-transform:normal
  579. font-style:none;
  580. font-family: 'Zeyada', cursive;
  581. font-size:15px;
  582. text-shadow:0px 0px 3px #145440;
  583. border: 3px solid #145440;
  584. line-height:190%;
  585. background-image: url('https://i.imgur.com/JO9nkO0.png');
  586. background-repeat:repeat;
  587. background-attachment:fixed;
  588. }
  589.  
  590. #info a{
  591. color: #191919;
  592. }
  593.  
  594. #tags {
  595. font-family: 'Sorts Mill Goudy', serif;
  596. text-align:center;
  597. margin-top:0px;
  598. padding-bottom:0px;
  599. text-transform:none;
  600. font-style:none;
  601. font-size:12px;
  602. }
  603.  
  604. #tags a{
  605. color: #d6ffef;
  606. }
  607.  
  608. /* --- POST NOTES END --- */
  609.  
  610. /* --- ASK & AUDIO START --- */
  611.  
  612. .ask {
  613. color:#191919;
  614. padding:15px;
  615. margin-bottom:15px;
  616. background: #191919;
  617. border: 3px double #d6d0b0;
  618. background-image: url('https://i.imgur.com/JO9nkO0.png');
  619. background-repeat:repeat;
  620. background-attachment:fixed;
  621. }
  622.  
  623. .asker {
  624. font-family: 'Sedgwick Ave', cursive;
  625. font-size:15px;
  626. color: #145440;
  627. text-shadow:0px 0px 3px #191919;
  628. line-height:10px;
  629. text-align:center;
  630. }
  631.  
  632. .answer {
  633. color: #191919;
  634. }
  635.  
  636. .chat {
  637. list-style:none;
  638. margin-top:15px;
  639. margin-bottom:0px;
  640. font-size:10px;
  641. margin-left:0px;
  642. }
  643.  
  644. .chat ul {
  645. line-height:18px;
  646. margin-top:0px;
  647. list-style:none;
  648. padding:0px;
  649. letter-spacing:2px;
  650. font-size:10px;
  651. margin-bottom:0px;
  652. text-transform:normal;
  653. }
  654.  
  655. .person1, .person3, .person5, .person7, .person9, .person11, .person13 {
  656. background-color: #fff;
  657. padding:3px 8px 3px 8px;
  658. color: #191919;
  659. border-bottom: none
  660. }
  661.  
  662. .person2, .person4, .person6, .person8, .person10, .person12, .person14 {
  663. background-color: #a4a4a4;
  664. padding:3px 8px 3px 8px;
  665. color: #191919;
  666. border-bottom: none;
  667. }
  668.  
  669. .audio{
  670. background-color: transparent;
  671. background-image:url("");
  672. border-bottom:1px none #fff;
  673. height:70px;
  674. font-size:8px;
  675. overflow:hidden;
  676. }
  677.  
  678. /* --- ASK & AUDIO END --- */
  679.  
  680. /* --- MENU START --- */
  681.  
  682. .popup_block{
  683. display:none;
  684. background: url("");
  685. background:#7bd1ac;
  686. color: #eee;
  687. padding:20px;
  688. border:3px solid #23876b;
  689. float:left;
  690. height:500px;
  691. top:55%; left:47%;
  692. position:fixed;
  693. z-index: 99999;
  694. -webkit-box-shadow: none;
  695. -moz-box-shadow: none;
  696. box-shadow: none;
  697. }
  698.  
  699.  
  700. *html #fade {position: absolute;}
  701. *html .popup_block {position: absolute;}
  702. #fade {
  703. display:none;
  704. position:fixed;
  705. left:0px;
  706. top:0px;
  707. width:100%;
  708. height:100%;
  709. z-index:9999;
  710. background: none;
  711. background-image:url('https://i.imgur.com/JpfahOg.png');
  712. opacity: none;
  713. }
  714.  
  715. #popheaders{
  716. width:415px;
  717. height:auto;
  718. padding:10px;
  719. font-size:10px;
  720. text-transform:normal;
  721. letter-spacing:1px;
  722. color:#191919;
  723. font-family: 'Sedgwick Ave', cursive;
  724. text-shadow:0px 0px 5px #000;
  725. background-image: url('https://i.imgur.com/LFrvvPE.png');
  726. background-repeat:repeat;
  727. background-attachment:fixed;
  728. border:3px none #eee;
  729. line-height:30%;
  730. }
  731.  
  732. #popuptext {
  733. margin-top:-15px;
  734. margin-left:-13px;
  735. width:415px;
  736. height:467px;
  737. font-family: 'Sorts Mill Goudy', serif;
  738. font-size:11px;
  739. color:#191919;
  740. overflow:scroll;
  741. text-align:justify;
  742. position:fixed;
  743. overflow-y padding:20px;
  744. }
  745.  
  746. .poplinks {
  747. padding-top:5px;
  748. text-align:center;
  749. }
  750.  
  751.  
  752. .poplinks a {
  753. display:inline-block;
  754. width:120px; height:8px;
  755. margin:2px; padding:6px 6px 10px;
  756. text-align:center;
  757. font-family: 'Sorts Mill Goudy', serif;
  758. font-size:10px;
  759. text-transform:uppercase;
  760. letter-spacing:1px;
  761. color:#eee;
  762. background:transparent;
  763. border:1px dotted #fff;
  764. }
  765.  
  766. .poplinks a:hover {
  767. display:inline-block;
  768. width:120px; margin:2px;
  769. padding:6px 6px 10px;
  770. text-align:center;
  771. font-family:times;
  772. font-size:11px;
  773. text-transform:normal;
  774. letter-spacing:1px;
  775. color:#eee;
  776. background:transparent
  777. }
  778.  
  779. .buttons a {
  780. text-decoration:none;
  781. background: #145440;
  782. border:1px solid #d6ffef;
  783. padding:10px;
  784. width:50px;
  785. margin-top:10px;
  786. margin-left:30px;
  787. display:inline-block;
  788. color:#d6ffef;
  789. text-align:center;
  790. line-height:100%;
  791. }
  792.  
  793. .butons a:hover {
  794. background:#d6ffef;
  795. border:1px none #145440;
  796. color:#145440;
  797. -webkit-transition: all 0.3s ease-in-out;
  798. -moz-transition: all 0.3s ease-in-out;
  799. -o-transition: all 0.3s ease-in-out;
  800. -ms-transition: all 0.3s ease-in-out;
  801. transition: all 0.3s ease-in-out;
  802. }
  803.  
  804. ul#tabs {
  805. list-style-type: none;
  806. padding: 0;
  807. text-align: center;
  808. font-size: 11px;
  809. letter-spacing:1px;
  810. }
  811.  
  812. ul#tabs li {
  813. display: inline-block;
  814. background-color: transparent;
  815. border: 1px solid #145440;
  816. padding: 4px 12px;
  817. margin-bottom: 4px;
  818. color: #d6ffef;
  819. cursor: pointer;
  820. }
  821.  
  822. ul#tabs li:hover {
  823. background-color: #145440;
  824. }
  825.  
  826. ul#tabs li.active {
  827. background-color: #d6ffef;
  828. color: #191919;
  829. background-image: url('');
  830. border:1px solid #145440;
  831. }
  832.  
  833. ul#tab {
  834. list-style-type: none;
  835. margin: 0;
  836. padding: 0;
  837. }
  838.  
  839. ul#tab li {
  840. display: none;
  841. }
  842.  
  843. ul#tab li.active {
  844. display: block;
  845. }
  846.  
  847. a:link, a:active, a:visited {
  848. text-decoration: none;
  849. color: #191919;
  850. -moz-transition-duration:.6s;
  851. -webkit-transition-duration:.6s;
  852. -o-transition-duration:.6s;
  853. }
  854.  
  855. a:hover {
  856. color: #919191;
  857. -moz-transition-duration:.6s;
  858. -webkit-transition-duration:.6s;
  859. -o-transition-duration:.6s;
  860. }
  861.  
  862. /* --- MENU END --- */
  863.  
  864.  
  865.  
  866.  
  867. {CustomCSS}</style></head><body>
  868.  
  869.  
  870. <div id="sidebar">
  871. <div id="sidebarimage"><img src="{image:sidebar}"/></div><br>
  872.  
  873.  
  874. <div class="credit">
  875. <a href="http://elsaofarendelle.tumblr.com">đť’†</a>
  876. </div>
  877.  
  878.  
  879.  
  880.  
  881.  
  882. <div id="title"></div>
  883.  
  884. <div id="description">
  885. <center><p>independent<b>Prince Hans Westergaard</b> of Disney's <i>Frozen & Once Upon A Time.</i>. As told by Alex.<br> mature, private, selective. </p><p>English is a second language please be patient</p></center>
  886. </div>
  887.  
  888. <div class="links1">
  889. <a title="home" href="/"><img src="https://i.imgur.com/pS1hBnk.png"/></a>
  890. </div>
  891.  
  892. <div class="links2">
  893. <a title="ask" href="/ask"><img src="https://i.imgur.com/2ZqpfGd.png"/></a>
  894. </div>
  895.  
  896. <div class="links3">
  897. <a title="more" href="#?w=400" rel="box1" class="poplight"><img src="https://i.imgur.com/12mnop8.png"/></a>
  898. </div>
  899.  
  900. <div id="scrollbar">{scrollbar}</div>
  901.  
  902.  
  903.  
  904. <div id="pagination">
  905. <p></p><br><br><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"> back </a>{/block:PreviousPage}{/block:Pagination}
  906. {block:Pagination}{block:NextPage}<a href="{NextPage}"> / forth </a>{/block:NextPage}{/block:Pagination}{/block:Pagination} </center></div>
  907.  
  908.  
  909.  
  910. {block:HasPages}{block:Pages}
  911.  
  912. <a href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages}
  913.  
  914. </div></center>
  915.  
  916.  
  917. </div>
  918.  
  919. <div id="rune1"></div>
  920. <div id="fixerupper1">
  921.  
  922. </div>
  923.  
  924. <div id="rune2"></div>
  925. <div id="fixerupper2">
  926.  
  927. </div>
  928.  
  929. <div id="container">{block:Posts}<div id="posts">
  930.  
  931.  
  932. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  933.  
  934. {block:blockquote}{/block:blockquote}
  935.  
  936.  
  937.  
  938. {block:Photo}
  939. <center>{LinkOpenTag}<img src="{PhotoURL-250}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}
  940. {/block:Photo}
  941.  
  942. {block:Photoset}
  943. <center>{Photoset-250}</center>{block:Caption}<i>{Caption}</i>{/block:Caption}
  944. {/block:Photoset}
  945.  
  946. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  947.  
  948. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  949.  
  950. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  951.  
  952. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="75px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp; {TrackName}{/block:TrackName}
  953. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  954.  
  955. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  956.  
  957. {block:Answer}
  958. <div class="ask"><div class="asker">{Asker} <font color=#145440>said:</font></div><p>{Question}</div><div class="answer">{Answer}</div>
  959. {/block:Answer}
  960.  
  961.  
  962. {Block:Date}<div id="info"><a href="{Permalink}" class="details" title="{TimeAgo}">posted</a> &nbsp;{block:NoteCount} <font color=#999></font> <a title="{NoteCount} notes" href="{Permalink}">notes</a> {/block:NoteCount} &nbsp; {block:RebloggedFrom} <a title="{ReblogParentName}" href="{ReblogParentURL}">source</a> {/block:RebloggedFrom}&nbsp;<a title="reblog" href="{ReblogURL}" target="_blank" class="details" >↺</a> {/block:Date}</div>
  963.  
  964. <div id="tags">
  965. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>&nbsp;{/block:Tags}{/block:HasTags}</div>
  966.  
  967. </div>
  968. {block:PostNotes}{PostNotes}{/block:PostNotes}
  969. {/block:Posts}</div>
  970.  
  971.  
  972. </body>
  973.  
  974. <div id="box1" class="popup_block">
  975.  
  976. <ul id="tabs">
  977. <li class="active">Rules</li>
  978. <li>About</li>
  979. <li>Verses</li>
  980. <li>Tags</li>
  981. </ul>
  982.  
  983. <div style="width:auto;height:335px;overflow:scroll;padding:5px;">
  984.  
  985.  
  986.  
  987. <ul id="tab">
  988. <li class="active">
  989. <div id="popuptext">
  990. <center><div id="popheaders">HEADER</div></center>
  991. <p>TEXT HERE.</p>
  992.  
  993. <center><div id="popheaders">HEADER</div></center>
  994. <p>TEXT HERE<p>
  995.  
  996. <center><div id="popheaders">HEADER</div></center>
  997. <p>TEXT HERE</p>
  998.  
  999. <center><div id="popheaders">HEADER</div></center>
  1000. <p>TEXT HERE.</p>
  1001.  
  1002. <center><div id="popheaders">Theme Information</div></center>
  1003. <p>This theme is a collaboration: coded by <a href="http://elsaofarendelle.tumblr.com/">elsaofarendelle</a> with graphics by <a href="http://grcwingstrcng.tumblr.com">grcwingstrcng</a>. <b>Do not copy, distribute, or claim as your own</b>. They take commissions and if you’re interested you can contact them for more information.</p>
  1004.  
  1005. </li>
  1006. <li>
  1007.  
  1008.  
  1009. <div id="popuptext">
  1010. <center><div id="popheaders">HEADER</div></center>
  1011. <p>TEXT HERE</p>
  1012.  
  1013.  
  1014. </li>
  1015. <li>
  1016.  
  1017. <div id="popuptext">
  1018. <center><div id="popheaders">HEADER</div></center>
  1019. <p>TEXT HERE</p>
  1020.  
  1021. <center><div id="popheaders">HEADER</div></center>
  1022. <p>TEXT HERE</p>
  1023.  
  1024. </li>
  1025. <li>
  1026.  
  1027. <table>
  1028. <tr>
  1029. <td>
  1030. <div class="buttons">
  1031. <a href="/">LINK</a>
  1032. <a href="/">LINK</a>
  1033. <a href="/">LINK</a>
  1034. <a href="/">LINK</a>
  1035. <a href="/">LINK</a>
  1036. <a href="/">LINK</a>
  1037. <a href="/">LINK</a>
  1038.  
  1039. </div>
  1040. <td>
  1041.  
  1042. <div class="buttons">
  1043.  
  1044. <a href="/">LINK</a>
  1045. <a href="/">LINK</a>
  1046. <a href="/">LINK</a>
  1047. <a href="/">LINK</a>
  1048. <a href="/">LINK</a>
  1049. <a href="/">LINK</a>
  1050. <a href="/">LINK</a>
  1051.  
  1052. </div>
  1053.  
  1054. </td>
  1055. <td>
  1056.  
  1057. <div class="buttons">
  1058.  
  1059. <a href="/">LINK</a>
  1060. <a href="/">LINK</a>
  1061. <a href="/">LINK</a>
  1062. <a href="/">LINK</a>
  1063. <a href="/">LINK</a>
  1064. <a href="/">LINK</a>
  1065. <a href="/">LINK</a>
  1066.  
  1067. </div>
  1068.  
  1069. </td>
  1070. </tr>
  1071. </table>
  1072. </div>
  1073. </li>
  1074. <li>
  1075.  
  1076. </div>
  1077. </div>
  1078.  
  1079. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement