Advertisement
elsaofarendelle

fiiimbulvetr

Nov 22nd, 2019
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.60 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5.  
  6. <link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond" rel="stylesheet">
  7.  
  8. <link href="https://fonts.googleapis.com/css?family=Allura" rel="stylesheet">
  9.  
  10. <link href="https://fonts.googleapis.com/css?family=IM+Fell+French+Canon+SC" rel="stylesheet">
  11.  
  12. <link href="https://fonts.googleapis.com/css?family=Bowlby+One+SC" rel="stylesheet">
  13.  
  14. <link href="https://fonts.googleapis.com/css?family=Shadows+Into+Light" rel="stylesheet">
  15.  
  16. <link href="https://fonts.googleapis.com/css?family=Crimson+Text" rel="stylesheet">
  17.  
  18. <!--- tooltips --->
  19.  
  20. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  21. <script type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  22. <script>
  23. (function($){
  24. $(document).ready(function(){
  25. $("[title]").style_my_tooltips();
  26. });
  27. })(jQuery);
  28. </script>
  29.  
  30. <!--- pop script --->
  31.  
  32. <script type="text/javascript"
  33. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  34. <script>
  35. $(document).ready(function() {
  36. //
  37. $('a.poplight[href^=#]').click(function() {
  38. var popID = $(this).attr('rel'); //Get Popup Name
  39. var popURL = $(this).attr('href'); //Get Popup href to define size
  40. var query= popURL.split('?');
  41. var dim= query[1].split('&');
  42. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  43. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  44. var popMargTop = ($('#' + popID).height() + 80) / 2;
  45. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  46. //Apply Margin to Popup
  47. $('#' + popID).css({
  48. 'margin-top' : -popMargTop,
  49. 'margin-left' : -popMargLeft
  50. });
  51. $('body').append('<div id="fade"></div>');
  52. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  53. return false;
  54. });
  55. $('a.close, #fade').live('click', function() {
  56. $('#fade, .popup_block').fadeOut(function() {
  57. $('#fade, a.close').remove(); //fade them both out
  58. });
  59. return false;
  60. });
  61. });
  62. </script>
  63.  
  64.  
  65.  
  66. </style>
  67.  
  68.  
  69. <title>{Title}</title>
  70. <link rel="shortcut icon" href="{Favicon}">
  71. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  72. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  73.  
  74.  
  75. <!-------------------------------------------
  76. Code by elsaofarendelle.
  77. Don't copy or distribute.
  78. Don't claim as your own.
  79. -------------------------------------------->
  80.  
  81. <meta name="image:background" content=""/>
  82. <meta name="image:sidebar" content=""/>
  83.  
  84.  
  85. <style type="text/css">
  86.  
  87. iframe#tumblr_controls {
  88. white-space:nowrap;
  89. -webkit-filter: invert(100%);
  90. -moz-filter: invert(100%);
  91. -o-filter: invert(100%);
  92. -ms-filter: invert(100%);
  93. filter: invert(100%);
  94. opacity:.2;transition: .8s ease-in-out;
  95. -webkit-transition: .8s ease-in-out;
  96. -moz-transition: .8s ease-in-out;
  97. -o-transition: .8s ease-in-out;
  98. }
  99.  
  100. /* --- CURSOR START --- */
  101.  
  102. *, body, a, a:hover {cursor: url("https://68.media.tumblr.com/tumblr_lpyq18WTCg1qcn2vb.gif"), auto;}
  103.  
  104. /* --- CURSOR END --- */
  105.  
  106.  
  107. /* --- FONTS START --- */
  108.  
  109. @font-face { font-family: 'lumierlight'; src: url('lumierlight-webfont.woff2') format('woff2'), url('lumierlight-webfont.woff') format('woff');}
  110.  
  111. @font-face { font-family: "starfish"; src: url('https://dl.dropboxusercontent.com/s/pmqlfb0lqbvflrn/Starfish.ttf'); format("truetype");}
  112.  
  113.  
  114. /* --- FONTS END --- */
  115.  
  116.  
  117. /* --- SCROLLBAR START ---*/
  118.  
  119. ::-webkit-scrollbar-thumb{
  120. background-color: #ce83f2;
  121. border: none;
  122. height:auto;
  123. }
  124.  
  125. ::-webkit-scrollbar {
  126. height:auto;
  127. width:5px;
  128. background-color: transparent;
  129. border:2px solid transparent;
  130. }
  131.  
  132. /* --- SCROLLBAR END --- */
  133.  
  134.  
  135. /* --- TOOLTIPS START --- */
  136.  
  137. #s-m-t-tooltip{
  138. max-width:300px;
  139. margin:15px;
  140. padding:2px 8px;
  141. color: #eee;
  142. background: #ce83f2;
  143. border-bottom: 2px none #ce83f2;
  144. border-radius:0px;
  145. z-index:9999999999999;
  146. font-size:12px;
  147. font-family: 'IM Fell French Canon SC', serif;
  148. font-weight:bold;
  149. text-transform:normal;
  150. box-shadow: 2px 2px 5px #000;
  151. -webkit-transition:all 0.7s;
  152. -moz-transition:all 0.7s;
  153. -ms-transition:all 0.7s;
  154. -o-transition:all 0.7s;
  155. transition:all 0.7s;
  156. }
  157.  
  158. /* --- TOOLTIPS END --- */
  159.  
  160.  
  161. /* --- BODY START ---*/
  162.  
  163. body {
  164. background:#000;
  165. background-image:url({image:background});
  166. background-attachment: fixed;
  167. background-repeat: no-repeat;
  168. background-position:0px 0px;
  169. margin:0px;
  170. color:#eee;
  171. font-family: 'Cormorant Garamond', serif;
  172. font-size:11px;
  173. line-height:120%;
  174. word-wrap: break-word;
  175. }
  176.  
  177. blockquote {
  178. padding-left:5px;
  179. border-left:2px solid;
  180. border-color: #ce83f2;
  181. border-radius:6px;
  182. }
  183.  
  184. a {
  185. color: #eee;
  186. text-decoration:none;
  187. -webkit-transition:all 0.5s ease-in-out;
  188. -moz-transition:all 0.5s ease-in-out;
  189. -o-transition:all 0.5s ease-in-out;
  190. -ms-transition:all 0.5s ease-in-out;
  191. transition:all 0.5s ease-in-out;
  192. }
  193.  
  194.  
  195. img {none;}
  196.  
  197. h1 {
  198. font-family: 'Crimson Text', serif;
  199. text-transform:none;
  200. font-size:25px;
  201. line-height:30px;
  202. letter-spacing:0px;
  203. text-align:center;
  204. font-style:normal;
  205. color: #ce83f2;
  206. }
  207.  
  208. h2 {
  209. color: #ce83f2;
  210. text-transform: none;
  211. letter-spacing:1px;
  212. font-family: 'Crimson Text', serif;
  213. font-size:15px;
  214. }
  215.  
  216. hr {
  217. border-color: #ce83f2;
  218. border-width: .5px;
  219. }
  220.  
  221. #fixerupper {
  222. width:500px;
  223. margin:0 auto -12px auto;
  224. }
  225.  
  226. #container {
  227. padding:10px;
  228. width:500px;
  229. margin-left:500px;
  230. margin-top:20px;
  231. margin-bottom:50px;
  232. }
  233.  
  234. #post {
  235. background: #000;
  236. border: 3px double #ce83f2;
  237. width:500px;
  238. padding-bottom:30px;
  239. padding: 30px;
  240. text-align: justify;
  241. margin-top:35px;
  242. line-height: 100%;
  243. }
  244.  
  245.  
  246.  
  247. #post img {
  248. padding: 0;
  249. max-width:100%;
  250. width: auto;
  251. height: auto;
  252. }
  253.  
  254. #post video {
  255. padding: 0;
  256. max-width:100%;
  257. width: auto;
  258. height: auto;
  259. }
  260.  
  261. pre {
  262. font-family: 'lumierlight';
  263. font-size:10px;
  264. color:#ce83f2;
  265. letter-spacing:1px;
  266. text-align:center;
  267. text-transform:uppercase;
  268. padding:6px;
  269. background:url('');
  270. background-repeat:repeat;;
  271. }
  272.  
  273.  
  274. b {
  275. text-transform: bold;
  276. color: #ce83f2;
  277. text-shadow: 0px 0px 3px #ce83f2;
  278. letter-spacing:1px;
  279. font-family: 'IM Fell French Canon SC', serif;
  280. font-size:17px;
  281. line-height:100%;
  282. }
  283.  
  284. i {
  285. text-transform: italic;
  286. color: #a036e4;
  287. letter-spacing:1px;
  288. font-family: 'Allura', cursive;
  289. font-size:22px;
  290. line-height:100%;
  291. }
  292.  
  293. sub, small, sup {
  294. font-size: 12px;
  295. }
  296.  
  297. /* --- BODY END --- */
  298.  
  299.  
  300. /* --- SIDEBAR START ---*/
  301.  
  302. #sidebar{
  303. background:url('');
  304. border-right: 3px solid #ce83f2;
  305. top:0px;
  306. width:280px;
  307. height:100%;
  308. left: 0px;
  309. padding:20px;
  310. position:fixed;
  311. }
  312.  
  313. #sidebarimage img{
  314. width: 320px;
  315. height:728px;
  316. padding:10px;
  317. margin-top:-130px;
  318. margin-left:-30px;
  319. background: transparent;
  320. background-image:{image:sidebarimage};
  321. }
  322.  
  323. #nav {
  324. position:fixed;
  325. overflow:hidden;
  326. margin-top:150px;
  327. margin-left:315px;
  328. }
  329.  
  330. #link1 a , #link2 a, #link3 a
  331.  
  332. #title {
  333. font-family:times;
  334. text-align:center;
  335. width:300px;
  336. margin-top:5px;
  337. margin-left:200px;
  338. text-transform:uppercase;
  339. font-style:normal;
  340. font-size:20px;
  341. color:#fff;
  342. }
  343.  
  344. #header {
  345. background:none;
  346. width:300px;
  347. height:100px;
  348. margin-top:-150px;
  349. margin-left:-20px;
  350. padding: 12px;
  351. padding-right:10px;
  352. text-align:justify;
  353. font-style: none;
  354. font-family: 'IM Fell French Canon SC', serif;
  355. font-size:13px;
  356. color: #fff;
  357. text-shadow: none;
  358. letter-spacing:1px;
  359. line-height:155%;
  360. z-index:50;
  361. }
  362.  
  363. #description {
  364. background:none;
  365. width:140px;
  366. height:300px;
  367. margin-top:-350px;
  368. margin-left:120px;
  369. padding: 12px;
  370. padding-right:10px;
  371. text-align:justify;
  372. font-style: none;
  373. font-family: 'Cormorant Garamond', serif;
  374. font-size:12px;
  375. color: #fff;
  376. text-shadow: none;
  377. letter-spacing:1px;
  378. line-height:155%;
  379. }
  380.  
  381. #pagination {
  382. font-family: 'Yanone Kaffeesatz', sans-serif;
  383. width:500px;
  384. font-size:15px;
  385. margin-top:50px;
  386. margin-left:-70px;
  387. padding-left:5px;
  388. letter-spacing:3px;
  389. text-align:center;
  390. text-transform:uppercase;
  391. color:#ce83f2;
  392. }
  393.  
  394. #pagination a {
  395. color:#eee;
  396. }
  397.  
  398. /* --- SIDEBAR END ---*/
  399.  
  400.  
  401. /* --- LINKS START --- */
  402.  
  403. #links {
  404. width:150px;
  405. position:fixed;
  406. margin-left:-20px;
  407. margin-top:-315px;
  408. padding:8px;
  409. }
  410.  
  411. #links a{
  412. min-width:100px;
  413. min-height:19px;
  414. color: #ce83f2;
  415. background: #000;
  416. border: 3px double #ce83f2;
  417. display:inline-block;
  418. margin:4px;
  419. font-size:9px
  420. font-family: 'Bowlby One SC', cursive;
  421. text-align:center;
  422. text-transform:uppercase;
  423. padding-top:2px;
  424. line-height:155%;
  425. }
  426.  
  427. /* --- LINKS END --- */
  428.  
  429.  
  430. /* --- CREDIT START --- */
  431.  
  432. .credit{
  433. position:fixed;
  434. font-size:20px;
  435. right:40px;
  436. bottom:20px;
  437. z-index:51;
  438. }
  439.  
  440. .credit a {
  441. font-family: "starfish";
  442. text-decoration:none;
  443. text-transform:uppercase;
  444. color: #ce83f2;
  445. text-shadow: -1px -1px -1px #fff;
  446. text-shadow: 1px 1px 1px #fff;
  447. -moz-transition-duration:.7s;
  448. -webkit-transition-duration:.7s;
  449. -o-transition-duration:.7s;
  450. }
  451.  
  452. /* --- CREDIT END --- */
  453.  
  454.  
  455. /* --- POST NOTES START --- */
  456.  
  457. .note {
  458. padding:0px 20px 0px 20px;
  459. background-color:transparent;
  460. text-transform:lowercase;
  461. letter-spacing:0px;
  462. font-size: 11px;
  463. font-style:normal;
  464. text-align:left;
  465. line-height:120%;
  466. }
  467.  
  468. .note li {
  469. list-style-type:none;
  470. padding:5px 25px 5px 25px;
  471. text-align:left;
  472. margin-right:30px;
  473. margin-top:-50px;
  474. }
  475.  
  476. #info {
  477. height:20px;
  478. text-align:center;
  479. margin-top:25px;
  480. padding-top:10px;
  481. padding:15px;
  482. padding-bottom:1px;
  483. text-transform:normal;
  484. font-style:none;
  485. font-size:15px;
  486. font-family: 'Crimson Text', serif;
  487. color: #eee;
  488. background: none;
  489. border-top: 3px solid #ce83f2;
  490. background-repeat:repeat;
  491. background-attachment:fixed;
  492. line-height:70%;
  493. }
  494.  
  495. #info a{
  496. color: #eee;
  497. }
  498.  
  499. #tags {
  500. font-family: 'Cormorant Garamond', serif;
  501. text-align:center;
  502. margin-top:5px;
  503. padding-bottom:0px;
  504. text-transform:none;
  505. font-style:none;
  506. font-size:12px;
  507. }
  508.  
  509. #tags a {
  510. color: #eee;
  511. }
  512.  
  513. /* --- POST NOTES END --- */
  514.  
  515.  
  516. /* --- ASK & AUDIO START --- */
  517.  
  518. .ask {
  519. color: #ce83f2;
  520. background: #000;
  521. border: 3px double #ce83f2;
  522. padding:15px;
  523. margin-bottom:15px;
  524. margin-top:10px;
  525. }
  526.  
  527. .askheader {
  528. }
  529.  
  530. .asker {
  531. color: #ce83f2;
  532. text-shadow: -1px -1px -1px #ce83f2;
  533. text-shadow: 1px 1px 1px #eee;
  534. font-family: 'Crimson Text', serif;
  535. font-size:22px;
  536. line-height:20px;
  537. text-align:center;
  538. padding-bottom:5px;
  539. }
  540.  
  541. .answer {
  542. color: #eee;
  543. }
  544.  
  545. .chat {
  546. list-style:none;
  547. margin-top:15px;
  548. margin-bottom:0px;
  549. font-size:10px;
  550. margin-left:0px;
  551. }
  552.  
  553. .chat ul {
  554. line-height:18px;
  555. margin-top:0px;
  556. list-style:none;
  557. padding:0px;
  558. letter-spacing:2px;
  559. font-size:10px;
  560. margin-bottom:0px;
  561. text-transform:normal;
  562. }
  563.  
  564. .person1, .person3, .person5, .person7, .person9, .person11, .person13 {
  565. background-color: transparent;
  566. padding:3px 8px 3px 8px;
  567. color: #eee;
  568. border-bottom: none
  569. }
  570.  
  571. .person2, .person4, .person6, .person8, .person10, .person12, .person14 {
  572. background-color: transparent;
  573. padding:3px 8px 3px 8px;
  574. color: #eee;
  575. border-bottom: none;
  576. }
  577.  
  578. .audio{
  579. color:#000;
  580. background: none;
  581. border: 3px solid #ce83f2;
  582. padding:15px;
  583. height:70px;
  584. font-size:8px;
  585. overflow:hidden;
  586. }
  587.  
  588. .video {
  589. width:500px!important;
  590. }
  591.  
  592. .video iframe {
  593. width:500px!important;
  594. }
  595.  
  596. /* --- ASK & AUDIO END --- */
  597.  
  598. {CustomCSS}</style></head><body>
  599.  
  600. <div id="fixerupper">
  601.  
  602. <div id="sidebar">
  603.  
  604. <div id="sidebarimage"><img src="{image:sidebar}"/></div><br>
  605.  
  606. <div class="credit">
  607. <a href="https://wintersovereign.tumblr.com/commission info">E</a>
  608. </div>
  609.  
  610. <div id="title"></div>
  611.  
  612. <div id="header">
  613. <center>
  614. <p>Show yourself. Step into the power. Throw yourself into something new. You are the one you've been waiting for all of your life. Oh, show yourself.</p>
  615. </center>
  616. </div>
  617.  
  618. <div id="description">
  619. <center><p>Independent <b>Elsa, the Snow Queen</b> of Disney's <i>Frozen & Frozen II</i>. Selective & Mutuals Only. Loved by Beth. <br>Formerly icxolation.<br><marquee>THIS IS NOT A SPOILER FREE BLOG</marquee></p>
  620. </center>
  621. </div>
  622.  
  623. <div id="links">
  624. <center>
  625. <a href="/">refresh</a>
  626. <a href="/ask">messages</a>
  627. <a href="/rules">rules</a>
  628. <a href="/about">about</a>
  629. <a href="/verses">verses</a>
  630. </center>
  631. </div>
  632.  
  633. <div id="scrollbar">{scrollbar}</div>
  634.  
  635. <div id="pagination">
  636. <center> {block:Pagination}
  637. <div id="pagination">
  638. {block:PreviousPage}
  639. <a href="{PreviousPage}"><big>ยซ</big></a>
  640. {/block:PreviousPage}
  641. {block:JumpPagination length="5"}
  642. {block:CurrentPage}
  643. <span class="current_page">{PageNumber}</span>
  644. {/block:CurrentPage}
  645. {block:JumpPage}
  646. <a class="jump_page" href="{URL}">{PageNumber}</a>
  647. {/block:JumpPage}
  648. {/block:JumpPagination}
  649. {block:NextPage}
  650. <a href="{NextPage}"><big>ยป</big></a>
  651. {/block:NextPage}
  652. </div>
  653. {/block:Pagination}</center>
  654. </div>
  655.  
  656. {block:HasPages}{block:Pages}
  657.  
  658. <a href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages}
  659.  
  660. </div></center>
  661.  
  662.  
  663. </div>
  664.  
  665. <div id="container">{block:Posts}<div id="post">
  666.  
  667. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  668. {block:More}<p class="read-more"><a href="{Permalink}#more"><center><i>Continue Reading</i></center></a></p><a name="more"></a>{/block:More}
  669.  
  670. {block:blockquote}{/block:blockquote}
  671.  
  672. {block:ContentSource}
  673. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  674. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  675. {/block:SourceLogo}
  676. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  677. {/block:ContentSource}
  678.  
  679. {block:Photo}
  680. <center>{LinkOpenTag}<img src="{PhotoURL-highres}" width="500px" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}
  681. {/block:Photo}
  682.  
  683. {block:Photoset}
  684. <center>{Photoset}</center>{block:Caption}<i>{Caption}</i>{/block:Caption}
  685. {/block:Photoset}
  686.  
  687. {block:Quote}{Quote}{block:Source} โ€”{Source}{/block:Source}{/block:Quote}
  688.  
  689. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  690.  
  691. {block:Chat}
  692. {block:Title}<a href="{Permalink}"><h3>{Title}</h3></a>{/block:Title}
  693. <div class="chat"><ul>{block:Lines}<li class="person{UserNumber}">{block:Label}<span class="label"><b>{Label}</b> </span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  694. {/block:Chat}
  695.  
  696. {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}
  697. {block:Artist} &nbsp;โ€”&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  698.  
  699. {block:Video}<div class="video">{Video-500}</div>{block:Caption}{Caption}{/block:Caption}{/block:Video}
  700.  
  701. {block:Answer}
  702. <div class="askheader"><img src="" draggable="false"></div>
  703. <div class="ask"><div class="asker">{Asker}<font color=#ce83f2> said:</font></div><p>{Question}</div><div class="answer">{Answer}</div>
  704. {/block:Answer}
  705.  
  706.  
  707. {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 href="{ReblogURL}" target="_blank" class="details">reblog</a> {/block:Date}</div>
  708.  
  709. <div id="tags">
  710. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>&nbsp;{/block:Tags}{/block:HasTags}</div>
  711.  
  712. </div>
  713. {block:PostNotes}{PostNotes}{/block:PostNotes}
  714. {/block:Posts}</div>
  715.  
  716.  
  717.  
  718. </body>
  719.  
  720. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement