littlemisswhoever

Theme: Viper (by Iniziare)

Mar 30th, 2019
1,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.  
  4.  
  5. <!-- (BASE) THEME BY SAE (INIZIARE) -->
  6.  
  7.  
  8. <!-- TO EDIT YOUR PAGES, DO A SEARCH FOR 'PAGE01' AND FOLLOW THE COPY/PASTE INSTRUCTIONS AT YOUR SEARCH RESULT. -->
  9.  
  10.  
  11.  
  12.  
  13. <html>
  14. <head>
  15. <title>{Title}</title>
  16. <link rel="shortcut icon" href="{Favicon}">
  17. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  18. {block:Description}
  19. <meta name="description" content="{MetaDescription}" />
  20. {/block:Description}
  21. </head>
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28. <!-- SCRIPT: TOOLTIP -->
  29.  
  30. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  31. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  32. <script>
  33. (function($){
  34. $(document).ready(function(){
  35. $("a[title]").style_my_tooltips({
  36. tip_follows_cursor:true,
  37. tip_delay_time:90,
  38. tip_fade_speed:600,
  39. attribute:"title"
  40. });
  41. });
  42. })(jQuery);
  43. </script>
  44.  
  45.  
  46.  
  47.  
  48.  
  49. <!-- SCRIPT: AUDIO PLAYER -->
  50.  
  51. <script>
  52. $(document).ready(function() {
  53. $('iframe.tumblr_audio_player').load( function() {
  54. $('iframe.tumblr_audio_player').contents().find("head")
  55. .append($("<style type='text/css'> .audio-player{background:transparent!important; color:{color:bold}!important;} </style>"));
  56. });
  57. });
  58. </script>
  59.  
  60.  
  61.  
  62.  
  63.  
  64. <!-- SCRIPT: CLICK MENU -->
  65.  
  66. <script>
  67. $(document).ready(function(){
  68. jQuery('.dropbtn').click( function() {
  69. $(this).next('.dropdown-content').fadeToggle();
  70. return false;
  71. });
  72. });
  73. </script>
  74.  
  75.  
  76.  
  77.  
  78. <!-- SCRIPT: NAVIGATION TABS -->
  79.  
  80. <script>
  81. function openNavi(naviName) {
  82. var i;
  83. var x = document.getElementsByClassName("navi");
  84. for (i = 0; i < x.length; i++) {
  85. x[i].style.display = "none";
  86. }
  87. document.getElementById(naviName).style.display = "block";
  88. }
  89. </script>
  90.  
  91.  
  92.  
  93. <script type="text/javascript" src="https://static.tumblr.com/8pnyeus/10hors8sn/themekid-popup.min.js">
  94. </script>
  95.  
  96. <script type="text/javascript">
  97. $(document).ready(function(){
  98. popUp(true);
  99. });
  100. </script>
  101.  
  102.  
  103.  
  104.  
  105.  
  106. <!-- SCRIPT: MUSE TABS -->
  107.  
  108.  
  109. <script>
  110. function openPage(pageName) {
  111. var i;
  112. var x = document.getElementsByClassName("page");
  113. for (i = 0; i < x.length; i++) {
  114. x[i].style.display = "none";
  115. }
  116. document.getElementById(pageName).style.display = "block";
  117. }
  118.  
  119. </script>
  120.  
  121.  
  122.  
  123.  
  124. <!-- SCRIPT: POPUP TABS -->
  125.  
  126. <script>$(document).ready(function(){
  127. $("ul#tabs li").click(function(e){
  128. if (!$(this).hasClass("active")) {
  129. var tabNum = $(this).index();
  130. var nthChild = tabNum+1;
  131. $("ul#tabs li.active").removeClass("active");
  132. $(this).addClass("active");
  133. $("ul#tab li.active").removeClass("active");
  134. $("ul#tab li:nth-child("+nthChild+")").addClass("active");}});});</script>
  135.  
  136.  
  137.  
  138. <!-- SCRIPT: VIDEO WIDTH (CREDIT: SHYTHEMES) -->
  139.  
  140. <script>
  141. $(document).ready(function(){
  142. resizeVideos();
  143. });
  144. function resizeVideos() {
  145. $('.video:not(.resized) iframe:not(.tumblr_video_iframe)').each(function(){
  146. var vw = $(this).width(482);
  147. var vh = $(this).height(auto);
  148. var scale = $(this).parents('.video').width() / vw;
  149. $(this).attr({
  150. width: Math.floor($(this).attr('width') * scale),
  151. height: Math.floor($(this).attr('height') * scale)
  152. });
  153. $(this).parents('.video').addClass('resized');
  154. });
  155. $('.video:not(.resized) .tumblr_video_iframe').each(function(){
  156. var vw = $(this).width();
  157. var vh = $(this).height();
  158. var scale = $(this).parents('.video').width() / vw;
  159. $(this).css({
  160. 'transform': 'scale(' + scale + ')',
  161. 'margin': vh * (scale - 1) / 2 + 'px ' + vw * (scale - 1) / 2 + 'px'
  162. });
  163. $(this).parents('.tumblr_video_container').css({
  164. width: Math.floor(vw * ( scale + 1 ) / 2),
  165. height: Math.floor(vh * ( scale + 1 ) / 2)
  166. });
  167. $(this).parents('.video').addClass('resized');
  168. });
  169. }
  170. </script>
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177. <!-- CUSTOM FONTS -->
  178.  
  179. <link href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre" rel="stylesheet">
  180.  
  181. <link rel="stylesheet" href="https://static.tumblr.com/gjexvml/isKpxrlz8/stylesheet.css">
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188. <!-- META LINES -->
  189.  
  190. <meta name="image:Background" content=""/>
  191. <meta name="image:Sidebar Background" content="https://static.tumblr.com/gjexvml/dzApxw30c/examplesidebg.png"/>
  192. <meta name="image:Sidebar Image Top" content="https://static.tumblr.com/ebrrv1n/Byopp6kos/dimensions_side-small.png"/>
  193. <meta name="image:Sidebar Image Bottom" content="https://static.tumblr.com/ebrrv1n/Byopp6kos/dimensions_side-small.png"/>
  194.  
  195. <meta name="text:Custom Capitals Font" content="'customfonthere'">
  196. <meta name="text:Title" content="Title">
  197. <meta name="text:Title Font Size" content="111px">
  198.  
  199. <meta name="color:Background" content="#000000"/>
  200. <meta name="color:Border" content="#151515"/>
  201. <meta name="color:Body Text" content="#c6c6c6"/>
  202. <meta name="color:Button Active" content="#c6c6c6"/>
  203. <meta name="color:Button Inactive" content="#474747"/>
  204. <meta name="color:Bold" content="#555555"/>
  205. <meta name="color:Headers" content ="#555555"/>
  206. <meta name="color:Italic" content="#ffffff"/>
  207. <meta name="color:Links" content="#ffffff"/>
  208. <meta name="color:Navigation List Links" content="#555555"/>
  209. <meta name="color:links hover" content="#ffffff"/>
  210. <meta name="color:First Letter" content="#151515"/>
  211. <meta name="color:Title" content="#000000"/>
  212. <meta name="color:Title Shadow" content="#151515"/>
  213. <meta name="color:Permalink" content="#2f2f2f"/>
  214. <meta name="color:Tags" content="#151515"/>
  215.  
  216. <meta name="if:Text Wrapping" content="1"/>
  217. <meta name="if:Boxed Blockquotes" content="1"/>
  218. <meta name="if:Icon Borders" content="1"/>
  219. <meta name="if:Bigger Tags on Hover" content="0"/>
  220. <meta name="if:First Letter Styling" content="0"/>
  221. <meta name="if:Muses Page" content="0"/>
  222. <meta name="if:Calibri Font" content="0"/>
  223. <meta name="if:SidebarTitle" cotent="0"/>
  224.  
  225. <style type="text/css">
  226.  
  227.  
  228.  
  229.  
  230. /* SCROLLBAR */
  231.  
  232. ::-webkit-scrollbar {
  233. background-color:transparent;
  234. height: 0px;
  235. display:none;
  236. width: 0px
  237. -ms-overflow-style: none; // IE 10+
  238. overflow: -moz-scrollbars-none; // Firefox
  239. }
  240.  
  241.  
  242. ::-webkit-scrollbar-thumb {
  243. background-color:transparent;
  244. }
  245.  
  246.  
  247.  
  248. /* TEXT SELECTION */
  249.  
  250. ::selection {
  251. background: {color:background};
  252. color:{color:links};
  253. }
  254.  
  255.  
  256. ::-moz-selection {
  257. background: {color:background};
  258. color:{color:links};
  259. }
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266. /* TOOLTIP */
  267.  
  268.  
  269. #s-m-t-tooltip {
  270. z-index:999;
  271. height:40px;
  272. line-height:40px;
  273. max-width:350px;
  274. margin-left:12.5px;
  275. margin-top:12.5px;
  276. font-weight:bold;
  277. background-color:{color:background};
  278. border:1px solid {color:border};
  279. padding-left:25px;
  280. padding-right:25px;
  281. font-family:calibri;
  282. font-size:10px;
  283. color: {color:italic};
  284. text-transform:uppercase;
  285. text-shadow: 0px 0px 1px {color:italic};
  286. }
  287.  
  288.  
  289.  
  290.  
  291.  
  292. /* FOUNDATION */
  293.  
  294.  
  295. body {
  296. background-image:url({image:background});
  297. background-attachment:fixed;
  298. background-repeat:no-repeat;
  299. background-position:center top;
  300. background-color:{color:background};
  301. color:{color:Body Text};
  302. font-size:10px;
  303. line-height:14px;
  304. word-spacing:-1px;
  305. color:{color:Body Text};
  306. font-family: 'Frank Ruhl Libre', serif;
  307. {block:ifCalibriFont}
  308. font-family:calibri;
  309. {/block:ifCalibriFont}
  310. word-wrap: break-word;
  311. }
  312.  
  313.  
  314. body a {
  315. font-size:10px;
  316. font-weight:bold;
  317. color:{color:links};
  318. text-decoration:none!important;
  319. -moz-transition-duration:1.5s;
  320. -webkit-transition-duration:1.5s;
  321. -o-transition-duration:1.5s;
  322. text-shadow: 0px 0px 1px {color:links};
  323. }
  324.  
  325.  
  326. body a:hover {
  327. color:{color:links hover};
  328. -moz-transition-duration:1.5s;
  329. -webkit-transition-duration:1.5s;
  330. -o-transition-duration:1.5s;
  331. text-shadow: 0px 0px 1px {color:links hover};
  332. }
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339. /* BLOCKQUOTES */
  340.  
  341.  
  342. blockquote {
  343. padding-left:25px;
  344. padding-right:25px;
  345. padding-top:12.5px;
  346. padding-bottom:12.5px;
  347. margin-top:12.5px;
  348. margin-bottom:12.5px;
  349. margin-left:0px!important;
  350. margin-right:0px!important;
  351. text-align:justify;
  352. border:1px solid {color:border}!important;
  353. word-wrap: break-word!important;
  354. }
  355.  
  356.  
  357. blockquote blockquote {
  358. border-left:1px solid {color:border}!important;
  359. border-top:0px!important;
  360. border-bottom:0px!important;
  361. border-right:0px!important;
  362. padding-left:25px;
  363. padding-right:0px;
  364. padding-top:0px;
  365. padding-bottom:0px;
  366. margin-top:0px!important;
  367. margin-bottom:0px!important;
  368. }
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375. /* FONT-RELATED */
  376.  
  377.  
  378. small {
  379. font-size:10px;
  380. }
  381.  
  382.  
  383. sub, sup {
  384. font-size:10px;
  385. vertical-align: baseline!important;
  386. position: relative!important;
  387. top: 0em!important;
  388. line-height:14px;
  389. }
  390.  
  391.  
  392. big {
  393. font-size:125%;
  394. }
  395.  
  396.  
  397. ul, ol {
  398. padding:0;
  399. list-style: decimal outside;
  400. margin-left:8px;
  401. }
  402.  
  403.  
  404. li {
  405. padding-left:2px;
  406. }
  407.  
  408.  
  409. b, bold, strong {
  410. font-size:9.5px;
  411. text-transform:uppercase;
  412. font-family: calibri, sans-serif;
  413. font-weight:bold!important;
  414. color:{color:bold};
  415. text-shadow: 0px 0px 1px {color:bold};
  416.  
  417. }
  418.  
  419.  
  420. em, i, italic {
  421. color: {color:italic};
  422. margin-right:1px;
  423. }
  424.  
  425.  
  426. {block:ifFirstLetterStyling}
  427. u, u a {
  428. background-color: {color:background};
  429. border: 1px solid {color:border};
  430. font-family:{text:Custom Capitals Font}, 'Frank Ruhl Libre', serif;
  431. color:{color:first letter}!important;
  432. text-decoration:none!important;
  433. font-weight:lighter!important;
  434. font-style:normal!important;
  435. text-transform:uppercase!important;
  436. float:left;
  437. margin-top:0px;
  438. margin-bottom:0px!important;
  439. height:55px;
  440. width:55px;
  441. font-size: 48px;
  442. margin-right: 14px;
  443. position: relative;
  444. text-align: center;
  445. vertical-align: middle;
  446. line-height: 55px;
  447. text-shadow: 0px 0px 1px {color:first letter};
  448. }
  449. {/block:ifFirstLetterStyling}
  450.  
  451.  
  452. pre {
  453. text-transform:uppercase;
  454. line-height:155%;
  455. font-weight:lighter!important;
  456. color:{color:body text};
  457. font-size:8.4px;
  458. letter-spacing:0.6px;
  459. white-space: pre-wrap;
  460. white-space: -moz-pre-wrap;
  461. white-space: -pre-wrap;
  462. white-space: -o-pre-wrap;
  463. word-wrap: break-word;
  464. }
  465.  
  466.  
  467. pre a {
  468. color:{color:links};
  469. -moz-transition-duration:1.5s;
  470. -webkit-transition-duration:1.5s;
  471. -o-transition-duration:1.5s;
  472. }
  473.  
  474.  
  475. h1 {
  476. border: 1px solid {color:border};
  477. background-color: transparent;
  478. line-height:24px;
  479. overflow:hidden;
  480. margin-top:12px;
  481. margin-bottom:12px;
  482. padding-left:25px;
  483. padding-right:25px;
  484. height:25px;
  485. line-height:25px;
  486. text-align:left!important;
  487. font-family:calibri;
  488. font-weight:bold;
  489. font-size:10px!important;
  490. text-transform:uppercase;
  491. color: {color:headers};
  492. text-shadow: 0px 0px 1px {color:headers};
  493. }
  494.  
  495.  
  496. h1 a {
  497. color: {color:links};
  498. font-size:10px!important;
  499. text-shadow: 0px 0px 1px {color:links};
  500. }
  501.  
  502.  
  503. h2 {
  504. font-family: calibri, sans-serif;
  505. font-size:12.5px!important;
  506. text-transform:uppercase!important;
  507. color:{color:headers};
  508. letter-spacing:-0.4px;
  509. text-shadow: 0px 0px 1px {color:headers};
  510. }
  511.  
  512.  
  513. h2 a {
  514. font-family: calibri, sans-serif;
  515. font-size:12.5px!important;
  516. text-transform:uppercase!important;
  517. color:{color:links};
  518. letter-spacing:-0.4px;
  519. text-shadow: 0px 0px 1px {color:links};
  520. }
  521.  
  522.  
  523. h4 {
  524. border:1px solid {color:border};
  525. margin-bottom:12.5px;
  526. margin-top:12.5px;
  527. padding-left:25px;
  528. padding-right:25px;
  529. height:25px;
  530. text-align:left;
  531. font-family:calibri;
  532. font-style:normal;
  533. font-weight:bold;
  534. font-size:10px;
  535. line-height:25px;
  536. color: {color:headers};
  537. text-transform:uppercase;
  538. text-shadow: 0px 0px 1px {color:headers};
  539. }
  540.  
  541.  
  542. h4:first-child {
  543. margin-top:0px;
  544. }
  545.  
  546.  
  547. h4 a {
  548. font-family:calibri;
  549. font-style:normal;
  550. font-weight:700;
  551. font-size:10px;
  552. line-height:10px;
  553. color: {color:links};
  554. text-shadow: 0px 0px 1px {color:links};
  555. }
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. /* CONTAINER */
  563.  
  564.  
  565. #container {
  566. z-index:9999;
  567. left: 50%;
  568. margin-left:-448px;
  569. margin-top:88px;
  570. position:fixed;
  571. width:896px;
  572. height:475px;
  573. overflow:hidden;
  574. outline:1px solid {color:border};
  575. background-color:{color:background};
  576. -webkit-box-shadow: 0px 0px 48px 20px {color:background};
  577. -moz-box-shadow: 0px 0px 48px 20px {color:background};
  578. box-shadow: 0px 0px 48px 20px {color:background};
  579. }
  580.  
  581.  
  582. .sidebar {
  583. position:absolute;
  584. width:284px;
  585. height:423px;
  586. left:26px;
  587. top:26px;
  588. overflow-y:hidden;
  589. outline:1px solid {color:border};
  590. }
  591.  
  592.  
  593. {block:ifSidebarTitle}
  594. .sidebartitle {
  595. position:absolute;
  596. font-family: 'birds_of_paradise__personalRg';
  597. color:{color:title};
  598. font-weight:bold!important;
  599. text-transform:none;
  600. padding-left:8px;
  601. padding-right:8px;
  602. font-size:88px;
  603. width:215px;
  604. left:26px;
  605. top:113px;
  606. line-height:14px;
  607. letter-spacing:0px;
  608. text-align:right!important;
  609. z-index:999;
  610. pointer-events:none;
  611. background-color:transparent;
  612. text-shadow:
  613. -1px -1px 0 {color:title shadow},
  614. 1px -1px 0 {color:title shadow},
  615. -1px 1px 0 {color:title shadow},
  616. 1px 1px 0 {color:title shadow};
  617. }
  618. {/block:ifSidebarTitle}
  619.  
  620.  
  621. .sidebarbg {
  622. background-image:url('{Sidebar Background}');
  623. background-position:top left;
  624. position:absolute;
  625. width:284px;
  626. height:423px;
  627. -webkit-filter: brightness(1) contrast(1) saturate(1);
  628. }
  629.  
  630.  
  631. .inner {
  632. position:absolute;
  633. width:231px;
  634. margin-left:26px;
  635. margin-top:26px;
  636. outline:1px solid {color:border};
  637. background-color:{color:background};
  638. -webkit-box-shadow: 0px 0px 48px 4px {color:background};
  639. -moz-box-shadow: 0px 0px 48px 4px {color:background};
  640. box-shadow: 0px 0px 48px 4px {color:background};
  641. }
  642.  
  643.  
  644. .sidebarimgtop {
  645. background-image:url('{Sidebar Image Top}');
  646. background-position:top left;
  647. outline:1px solid {color:border};
  648. overflow:hidden;
  649. width:231px;
  650. height:120px!important;
  651. -webkit-filter: brightness(1) contrast(1) saturate(1);
  652. }
  653.  
  654.  
  655. .sidebarimgbottom {
  656. background-image:url('{Sidebar Image Bottom}');
  657. background-position:top left;
  658. margin-top:1px;
  659. outline:1px solid {color:border};
  660. overflow:hidden;
  661. width:231px;
  662. height:120px;
  663. -webkit-filter: brightness(1) contrast(1) saturate(1);
  664. }
  665.  
  666.  
  667. {block:ifnotSidebarTitle}
  668. .title {
  669. position:absolute;
  670. font-family: 'birds_of_paradise__personalRg';
  671. color:{color:title};
  672. font-weight:bold!important;
  673. text-transform:none;
  674. padding-left:8px;
  675. padding-right:8px;
  676. font-size:{text:title font size};
  677. width:515px;
  678. left:343px;
  679. top:380px;
  680. line-height:14px;
  681. letter-spacing:0px;
  682. word-spacing:-1px;
  683. text-align:left!important;
  684. z-index:95;
  685. pointer-events:none;
  686. background-color:transparent;
  687. text-shadow:
  688. -1px -1px 0 {color:title shadow},
  689. 1px -1px 0 {color:title shadow},
  690. -1px 1px 0 {color:title shadow},
  691. 1px 1px 0 {color:title shadow};
  692. }
  693. {/block:ifnotSidebarTitle}
  694.  
  695.  
  696. .description {
  697. width:181px;
  698. height:80px;
  699. padding-left:25px;
  700. padding-right:25px;
  701. outline:1px solid {color:border};
  702. border-top:25px solid {color:background};
  703. border-bottom:25px solid {color:background};
  704. background-color:{color:background};
  705. line-height:13px;
  706. text-align:justify;
  707. overflow-y:scroll;
  708. -moz-transition-duration:1.5s;
  709. -webkit-transition-duration:1.5s;
  710. -o-transition-duration:1.5s;
  711. }
  712.  
  713.  
  714. .description a {
  715. color:{color:links};
  716. font-family: calibri;
  717. text-transform:uppercase;
  718. font-size:10px;
  719. font-weight:bold!important;
  720. -moz-transition-duration:1.5s;
  721. -webkit-transition-duration:1.5s;
  722. -o-transition-duration:1.5s;
  723. text-shadow: 0px 0px 1px {color:links};
  724. }
  725.  
  726.  
  727. {block:ifFirstLetterStyling}
  728. .description:first-letter {
  729. background-color: {color:background};
  730. border: 1px solid {color:border};
  731. font-family:{text:Custom Capitals Font}, 'Frank Ruhl Libre', serif;
  732. color:{color:first letter}!important;
  733. font-weight:lighter!important;
  734. text-transform:uppercase!important;
  735. float:left;
  736. padding-left:9px;
  737. padding-right:9px;
  738. font-size:51px;
  739. margin-right: 10px;
  740. position: relative;
  741. text-align: center;
  742. vertical-align: middle;
  743. line-height: 52px;
  744. text-shadow: 0px 0px 1px {color:first letter};
  745. }
  746. {/block:ifFirstLetterStyling}
  747.  
  748.  
  749.  
  750.  
  751.  
  752.  
  753. /* POSTS: GENERAL */
  754.  
  755.  
  756. #content {
  757. position:absolute;
  758. text-align:justify;
  759. height:320px;
  760. width:533px;
  761. left:337px;
  762. top:76px;
  763. background-color:transparent;
  764. overflow-y:scroll;
  765. overflow-x:hidden;
  766. z-index:9;
  767. outline:1px solid {color:border}!important;
  768. }
  769.  
  770.  
  771. #content2 {
  772. width:485px;
  773. height:270px;
  774. overflow-y:scroll;
  775. padding-left:25px;
  776. padding-right:25px;
  777. margin-left:-1px;
  778. margin-top:25px!important;
  779. }
  780.  
  781.  
  782. .posts {
  783. width:485px;
  784. word-wrap: break-word;
  785. text-align:justify;
  786. line-height:14px;
  787. margin-bottom:36px;
  788. }
  789.  
  790.  
  791. .posts:first-child, .posts:first-of-type {
  792. margin-top:15px;
  793. }
  794.  
  795.  
  796. .posts:last-child {
  797. margin-bottom:0px!important;
  798. }
  799.  
  800.  
  801. .posts a {
  802. font-family: calibri;
  803. text-transform:uppercase;
  804. font-size:9.5px;
  805. font-weight:bold!important;
  806. color:{color:links};
  807. -moz-transition-duration:1.5s;
  808. -webkit-transition-duration:1.5s;
  809. -o-transition-duration:1.5s;
  810. text-shadow: 0px 0px 1px {color:links};
  811. }
  812.  
  813.  
  814. .posts a:hover {
  815. color:{color:links hover};
  816. -moz-transition-duration:1.5s;
  817. -webkit-transition-duration:1.5s;
  818. -o-transition-duration:1.5s;
  819. text-shadow: 0px 0px 1px {color:links hover};
  820. }
  821.  
  822.  
  823. .posts img {
  824. max-width: -webkit-calc(100% - 22px);
  825. max-width: -moz-calc(100% - 22px);
  826. max-width: calc(100% - 22px);
  827. height:auto;
  828. }
  829.  
  830.  
  831.  
  832.  
  833.  
  834.  
  835. /* TEXT-WRAPPING AROUND ICONS/IMAGES */
  836.  
  837.  
  838. #wrap {
  839. margin-top:12px;
  840. margin-bottom: 12px;
  841. }
  842.  
  843.  
  844. #wrap img {
  845. overflow: hidden;
  846. background-color:{color:background};
  847. margin-top:0px!important;
  848. margin-bottom:12px!important;
  849. padding-right:3px;
  850. padding-bottom:3px;
  851. {block:IfTextWrapping}
  852. float:left;
  853. margin-right:14px;
  854. {/block:IfTextWrapping}
  855. {block:ificonborders}
  856. padding:12px;
  857. border:1px solid {color:border};
  858. {/block:ificonborders}
  859. -webkit-filter: brightness(1) contrast(1) saturate(1);
  860. }
  861.  
  862.  
  863. {block:IfTextWrapping}
  864. #wrap blockquote img {
  865. background-color:{color:background};
  866. margin-top:12px!important;
  867. margin-bottom:10px!important;
  868. margin-left:12px;
  869. margin-right:0px!important;
  870. float:right;
  871. -webkit-filter: brightness(.88) contrast(1) saturate(1);
  872. }
  873. {/block:IfTextWrapping}
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880. /* NAVIGATION BAR */
  881.  
  882.  
  883. .navigation {
  884. top:25px;
  885. left:336px;
  886. width:600px;
  887. position:absolute;
  888. border:0px!important;
  889. height:25px;
  890. }
  891.  
  892.  
  893. button {
  894. display:inline-block;
  895. box-sizing: border-box;
  896. font-size:9.5px;
  897. text-align:center;
  898. padding-left:25px;
  899. padding-right:25px;
  900. font-family: calibri, sans-serif;
  901. text-transform:uppercase;
  902. width:180px;
  903. max-width:180px;
  904. height:25px;
  905. background-color:{color:background};
  906. border:1px solid {color:border};
  907. line-height:22px;
  908. margin-left:0px;
  909. margin-right:-4px;
  910. color: {color:button inactive};
  911. cursor:pointer;
  912. font-weight:bold!important;
  913. overflow:hidden;
  914. text-shadow: 0px 0px 1px {color:button inactive};
  915. -webkit-transition: all 1.5s ease-in-out;
  916. -moz-transition: all 1.5s ease-in-out;
  917. -o-transition: all 1.5s ease-in-out;
  918. -ms-transition: all 1.5s ease-in-out;
  919. transition: all 1.5s ease-in-out;
  920. }
  921.  
  922.  
  923. button:focus, button:active {
  924. border:1px solid {color:border}!important;
  925. outline:0px!important;
  926. color:{color:button active}!important;
  927. text-shadow: 0px 0px 1px {color:button active};
  928. }
  929.  
  930.  
  931. button:hover {
  932. color:{color:links hover}!important;
  933. -webkit-transition: all 1.5s ease-in-out;
  934. -moz-transition: all 1.5s ease-in-out;
  935. -o-transition: all 1.5s ease-in-out;
  936. -ms-transition: all 1.5s ease-in-out;
  937. transition: all 1.5s ease-in-out;
  938. text-shadow: 0px 0px 1px {color:links hover};
  939. }
  940.  
  941.  
  942. #tabcontent {
  943. position:absolute;
  944. text-align:justify;
  945. height:348px;
  946. width:485px;
  947. left:337px;
  948. top:76px;
  949. overflow-y:hidden;
  950. padding-top:0px!important;
  951. background-color:{color:background}!important;
  952. border-top:0px solid {color:background};
  953. border-bottom:25px solid {color:background};
  954. overflow-y:scroll;
  955. padding-left:25px;
  956. padding-right:25px;
  957. z-index:999;
  958. outline:1px solid {color:border}!important;
  959. }
  960.  
  961.  
  962. #tabcontent a {
  963. font-family:calibri;
  964. font-size:9.5px;
  965. color:{color:links};
  966. text-transform:uppercase;
  967. text-shadow: 0px 0px 1px {color:links};
  968. }
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975. /* POSTS: TEXT */
  976.  
  977. #textbody {
  978. margin-top:-12px!important;
  979. {block:permalinkpage}
  980. margin-top:-12px!important;
  981. {/block:permalinkpage}
  982. }
  983.  
  984.  
  985.  
  986.  
  987.  
  988.  
  989. /* POSTS: PHOTO/PHOTOSETS */
  990.  
  991.  
  992. #psingle {
  993. width: 505px;
  994. margin-top:-12px!important;
  995. pointer-events:none;
  996. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.9);
  997. -webkit-transition: all 1.5s ease-in-out;
  998. -moz-transition: all 1.5s ease-in-out;
  999. -o-transition: all 1.5s ease-in-out;
  1000. -ms-transition: all 1.5s ease-in-out;
  1001. transition: all 1.5s ease-in-out;
  1002. }
  1003.  
  1004.  
  1005. #psingle:hover {
  1006. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.9);
  1007. -webkit-transition: all 1.5s ease-in-out;
  1008. -moz-transition: all 1.5s ease-in-out;
  1009. -o-transition: all 1.5s ease-in-out;
  1010. -ms-transition: all 1.5s ease-in-out;
  1011. transition: all 1.5s ease-in-out;
  1012. }
  1013.  
  1014.  
  1015. #pset {
  1016. margin-top:-12px!important;
  1017. {block:permalinkpage}
  1018. margin-top:0px;
  1019. {block:permalinkpage}
  1020. width: 484px;
  1021. pointer-events:none;
  1022. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.85);
  1023. -webkit-transition: all 1.5s ease-in-out;
  1024. -moz-transition: all 1.5s ease-in-out;
  1025. -o-transition: all 1.5s ease-in-out;
  1026. -ms-transition: all 1.5s ease-in-out;
  1027. transition: all 1.5s ease-in-out;
  1028. }
  1029.  
  1030.  
  1031. #pset:hover {
  1032. -webkit-filter: brightness(.75) contrast(1.1) saturate(0.85);
  1033. -webkit-transition: all 1.5s ease-in-out;
  1034. -moz-transition: all 1.5s ease-in-out;
  1035. -o-transition: all 1.5s ease-in-out;
  1036. -ms-transition: all 1.5s ease-in-out;
  1037. transition: all 1.5s ease-in-out;
  1038. }
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045. /* POSTS: QUOTE */
  1046.  
  1047.  
  1048. #quote {
  1049. font-size:15px;
  1050. text-align:left;
  1051. padding-top:0px;
  1052. padding-bottom:0px;
  1053. letter-spacing:-1px;
  1054. line-height:15px;
  1055. margin-top:-12px;
  1056. }
  1057.  
  1058.  
  1059. .source {
  1060. outline:1px solid {color:border};
  1061. font-family:calibri;
  1062. font-weight:bold;
  1063. text-align:left;
  1064. font-size:9.5px;
  1065. height:24px;
  1066. line-height:25px;
  1067. color: {color:bold};
  1068. text-transform:uppercase;
  1069. letter-spacing:0.2px;
  1070. margin-top:25px;
  1071. padding-right:25px;
  1072. padding-left:25px;
  1073. margin-top:25px;
  1074. text-shadow: 0px 0px 1px {color:bold};
  1075. }
  1076.  
  1077.  
  1078. .source a {
  1079. color: {color:bold};
  1080. text-shadow: 0px 0px 1px {color:bold};
  1081. }
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087.  
  1088. /* POSTS: LINK */
  1089.  
  1090.  
  1091. #link {
  1092. outline:1px solid {color:border};
  1093. padding:25px;
  1094. margin-top:-12px;
  1095. }
  1096.  
  1097.  
  1098. #link a {
  1099. font-size:12px;
  1100. }
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107. /* POSTS: CHAT */
  1108.  
  1109.  
  1110. #chat {
  1111. margin-top:-16px!important;
  1112. padding-left:0px;
  1113. padding-right:0px;
  1114. }
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121. /* POSTS: AUDIO */
  1122.  
  1123.  
  1124. .audioplayer {
  1125. margin-left:12.5px;
  1126. margin-top:-12px;
  1127. width: 25px;
  1128. height: 25px;
  1129. overflow: hidden;
  1130. }
  1131.  
  1132.  
  1133. .audioinfo {
  1134. outline:1px solid {color:border};
  1135. margin-right: 0px;
  1136. padding-left:60px;
  1137. padding-right:25px;
  1138. margin-top:-24px;
  1139. margin-bottom:12px;
  1140. height:25px;
  1141. line-height:25px;
  1142. display: block;
  1143. font-family:calibri;
  1144. font-weight:bold;
  1145. text-transform: uppercase;
  1146. text-align: left;
  1147. letter-spacing:0.2px;
  1148. word-spacing:-0.5px;
  1149. overflow:hidden;
  1150. font-size:9.5px;
  1151. color:{color:bold};
  1152. text-shadow: 0px 0px 1px {color:bold};
  1153. }
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160. /* POSTS: VIDEO */
  1161.  
  1162.  
  1163. .video {
  1164. margin-top:-15px;
  1165. }
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172. /* POSTS: ASK */
  1173.  
  1174.  
  1175. #question {
  1176. position:relative;
  1177. width: 80%;
  1178. height:70px;
  1179. margin-left:1px;
  1180. margin-top:-12px!important;
  1181. background-color:{color:background};
  1182. }
  1183.  
  1184.  
  1185. #ask {
  1186. position:relative;
  1187. z-index:999999!important;
  1188. float:left;
  1189. font-family:calibri, sans-serif;
  1190. text-transform:uppercase;
  1191. font-weight:bold;
  1192. background-color:{color:background};
  1193. font-size:9px;
  1194. line-height:12px!important;
  1195. width:368px;
  1196. min-height:21px;
  1197. max-height:21px;
  1198. overflow:scroll;
  1199. margin-top:0px;
  1200. margin-left:0px;
  1201. margin-bottom:0px;
  1202. padding-left:24px;
  1203. padding-right:24px;
  1204. outline:solid 1px {color:border};
  1205. border-top:22px solid {color:background};
  1206. border-bottom:22px solid {color:background};
  1207. -moz-transition-duration:1.5s;
  1208. -webkit-transition-duration:1.5s;
  1209. -o-transition-duration:1.5s;
  1210. }
  1211.  
  1212.  
  1213. #ask:hover {
  1214. max-height:35px!important;
  1215. width:434px;
  1216. z-index:999999!important;
  1217. -moz-transition-duration:1.5s;
  1218. -webkit-transition-duration:1.5s;
  1219. -o-transition-duration:1.5s;
  1220. }
  1221.  
  1222.  
  1223. #ask a {
  1224. font-weight:bold;
  1225. color:{color:bold};
  1226. font-size:9.5px;
  1227. text-decoration:none;
  1228. text-shadow: 0px 0px 1px {color:bold};
  1229. }
  1230.  
  1231.  
  1232. #ask b {
  1233. color:{color:bold};
  1234. font-size:9.5px;
  1235. line-height:11px;
  1236. font-family:calibri!important;
  1237. text-shadow: 0px 0px 1px {color:bold};
  1238. }
  1239.  
  1240.  
  1241. .letterask {
  1242. font-family:'Frank Ruhl Libre', serif;
  1243. position:relative;
  1244. z-index:9999!important;
  1245. position:absolute;
  1246. text-align:center;
  1247. font-size:44px;
  1248. margin-left:417px;
  1249. outline:1px solid {color:border};
  1250. background-color:{color:background};
  1251. padding-top:25px;
  1252. padding-bottom:26px;
  1253. padding-left:17px;
  1254. padding-right:17px;
  1255. color:{color:first letter};
  1256. -webkit-user-select: none;
  1257. -moz-user-select: none;
  1258. -ms-user-select: none;
  1259. user-select: none;
  1260. }
  1261.  
  1262.  
  1263. #response {
  1264. margin-bottom:0px!important;
  1265. margin-top:20px;
  1266. }
  1267.  
  1268.  
  1269. #response blockquote {
  1270. margin-top:12px;
  1271. margin-bottom:12px!important;
  1272. padding-top:0px;
  1273. padding-bottom:0px;
  1274. }
  1275.  
  1276.  
  1277.  
  1278.  
  1279.  
  1280.  
  1281. /* POST INFORMATION */
  1282.  
  1283.  
  1284. .permalink {
  1285. margin-top:25px!important;
  1286. margin-left:-25px;
  1287. margin-right:-25px;
  1288. margin-bottom:25px!important;
  1289. }
  1290.  
  1291.  
  1292. .permalinkbuttons {
  1293. height:25px;
  1294. background-color:{color:background};
  1295. font-weight:bold!important;
  1296. line-height:25px;
  1297. letter-spacing:-0.2px;
  1298. margin-left:0px!important;
  1299. margin-bottom:1px!important;
  1300. border:1px solid {color:border};
  1301. color:{color:border};
  1302. }
  1303.  
  1304.  
  1305. .permalinkbuttons a {
  1306. display:inline-block;
  1307. box-sizing: border-box;
  1308. font-size:9.5px;
  1309. text-align:center;
  1310. padding-left:25px;
  1311. padding-right:25px;
  1312. font-family: calibri, sans-serif;
  1313. text-transform:uppercase;
  1314. width:177px;
  1315. max-width:177px;
  1316. height:25px;
  1317. background-color:{color:background};
  1318. outline:1px solid {color:border};
  1319. line-height:25px;
  1320. color: {color:permalink};
  1321. font-weight:bold!important;
  1322. overflow:hidden;
  1323. text-shadow: 0px 0px 1px {color:permalink};
  1324. }
  1325.  
  1326.  
  1327. .permalinkbuttons a:hover {
  1328. color:{color:links hover};
  1329. -moz-transition-duration:1.5s;
  1330. -webkit-transition-duration:1.5s;
  1331. -o-transition-duration:1.5s;
  1332. text-shadow: 0px 0px 1px {color:links hover};
  1333. }
  1334.  
  1335.  
  1336. .tags {
  1337. font-family: calibri!important;
  1338. font-weight:bold!important;
  1339. background-color:{color:background};
  1340. border:1px solid {color:border};
  1341. padding-top:12px;
  1342. padding-bottom:12px;
  1343. padding-left:24px;
  1344. padding-right:24px;
  1345. margin-top:-2px;
  1346. color:{color:border};
  1347. text-transform:uppercase!important;
  1348. font-style:normal;
  1349. line-height:150%;
  1350. font-size:8.5px;
  1351. text-align:justify;
  1352. -moz-text-align-last: center; /* Code for Firefox */
  1353. text-align-last: center;
  1354.  
  1355. }
  1356.  
  1357.  
  1358.  
  1359. .tags a {
  1360. text-decoration:none!important;
  1361. font-weight:bold!important;
  1362. font-size:8.5px;
  1363. margin-right:0px;
  1364. text-transform:uppercase!important;
  1365. font-family: calibri!important;
  1366. color:{color:border};
  1367. -moz-transition-duration:1.5s;
  1368. -webkit-transition-duration:1.5s;
  1369. -o-transition-duration:1.5s;
  1370. text-shadow: 0px 0px 1px {color:border};
  1371. }
  1372.  
  1373.  
  1374. .tags a:hover {
  1375. color:{color:italic}!important;
  1376. -moz-transition-duration:1.5s;
  1377. -webkit-transition-duration:1.5s;
  1378. -o-transition-duration:1.5s;
  1379. text-shadow: 0px 0px 1px {color:links hover};
  1380. {block:ifBiggerTagsonHover}
  1381. font-size:9px!important;
  1382. {block:ifBiggerTagsonHover}
  1383. }
  1384.  
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390. /* PERMAPAGE NOTES */
  1391.  
  1392.  
  1393. #notes {
  1394. outline:1px solid {color:border};
  1395. margin-bottom:1px!important;
  1396. margin-left:1px;
  1397. margin-right:1px;
  1398. margin-top:25px!important;
  1399. padding-top:16px;
  1400. padding-bottom:16px;
  1401. padding-left:16px;
  1402. padding-right:16px;
  1403. color:{color:body text}!important;
  1404. }
  1405.  
  1406.  
  1407. #notes span, .note span {
  1408. color:{color:body text}!important;
  1409. }
  1410.  
  1411.  
  1412.  
  1413. .note li, .note, .note a {
  1414. list-style-type:none;
  1415. padding-top:0px;
  1416. line-height:14px;
  1417. padding-bottom:0px;
  1418. padding-left:0px;
  1419. padding-right:0px;
  1420. text-align:left!important;
  1421. -moz-transition-duration:0.5s;
  1422. -webkit-transition-duration:0.5s;
  1423. -o-transition-duration:0.5s;
  1424. font-family:calibri!important;
  1425. font-size:9.5px!important;
  1426. font-weight:bold;
  1427. text-transform:uppercase;
  1428. color:{color:body text}!important;
  1429. text-shadow: 0px 0px 1px {color:body text};
  1430. }
  1431.  
  1432.  
  1433. .note li a {
  1434. text-align:left!important;
  1435. font-family:calibri!important;
  1436. font-size:9.5px!important;
  1437. padding-right:0px;
  1438. font-weight:bold;
  1439. text-transform:uppercase;
  1440. letter-spacing:0px;
  1441. color: {color:italic}!important;
  1442. text-shadow: 0px 0px 1px {color:italic};
  1443. }
  1444.  
  1445.  
  1446. .more_notes_link, .more_notes_link a {
  1447. text-align:left!important;
  1448. margin-top:25px!important;
  1449. padding-top:25px!important;
  1450. color:{color:italic}!important;
  1451. text-shadow: 0px 0px 1px {color:italic};
  1452. }
  1453.  
  1454.  
  1455. .note blockquote a {
  1456. padding-top:12px;
  1457. padding-bottom:12px;
  1458. padding-left:24px;
  1459. padding-right:24px;
  1460. margin-top:12px;
  1461. margin-bottom:12px;
  1462. margin-left:0px;
  1463. margin-right:0px;
  1464. color:{color:body text}!important;
  1465. text-shadow: 0px 0px 1px {color:body text};
  1466. }
  1467.  
  1468.  
  1469. .note img.avatar {
  1470. display:none;
  1471. width: 0px;
  1472. height: 0px;
  1473. }
  1474.  
  1475.  
  1476.  
  1477.  
  1478.  
  1479.  
  1480. /* PAGINATION */
  1481.  
  1482.  
  1483. .navigationbottom {
  1484. left:337px;
  1485. top:424px;
  1486. position:absolute;
  1487. width: 533px;
  1488. outline:1px solid {color:border};
  1489. height:25px;
  1490. line-height:25px;
  1491. z-index:80;
  1492. }
  1493.  
  1494.  
  1495. .pagination {
  1496. height:25px;
  1497. line-height:25px;
  1498. }
  1499.  
  1500.  
  1501. .pagination b {
  1502. color:{color:button inactive}!important;
  1503. text-shadow: 0px 0px 1px {color:button inactive};
  1504. }
  1505.  
  1506.  
  1507. .pagination a {
  1508. display:inline-block;
  1509. box-sizing: border-box;
  1510. font-size:10px;
  1511. text-align:center;
  1512. padding-left:25px;
  1513. padding-right:25px;
  1514. font-family: calibri, sans-serif;
  1515. text-transform:uppercase;
  1516. width:177px;
  1517. max-width:177px;
  1518. height:25px;
  1519. background-color:{color:background};
  1520. outline:1px solid {color:border};
  1521. line-height:25px;
  1522. margin-right:0px;
  1523. color: {color:button inactive};
  1524. font-weight:bold!important;
  1525. overflow:hidden;
  1526. text-shadow: 0px 0px 1px {color:button inactive};
  1527. }
  1528.  
  1529.  
  1530. .pagination a:first-child {
  1531. margin-left:0px!important;
  1532. }
  1533.  
  1534.  
  1535. .pagination a:last-child {
  1536. margin-right:0px!important;
  1537. }
  1538.  
  1539.  
  1540. .navigationbottom a:hover, .pagination a:hover, .pagination:hover {
  1541. font-weight:bold!important;
  1542. color:{color:links hover}!important;
  1543. -moz-transition-duration:1.5s;
  1544. -webkit-transition-duration:1.5s;
  1545. -o-transition-duration:1.5s;
  1546. text-shadow: 0px 0px 1px {color:links hover};
  1547. }
  1548.  
  1549.  
  1550.  
  1551.  
  1552.  
  1553.  
  1554. /* POPUPS: GENERAL */
  1555.  
  1556.  
  1557. .popup_block {
  1558. box-sizing: border-box;
  1559. width:400px;
  1560. height:388px;
  1561. max-height:388px;
  1562. margin-top:76px!important;
  1563. margin-left:337px!important;
  1564. display:none;
  1565. background-color:{color:background}!important;
  1566. outline:1px solid {color:border};
  1567. border-bottom:24px solid {color:background};
  1568. padding-left:24px;
  1569. padding-right:24px;
  1570. position:absolute;
  1571. z-index:99999999;
  1572. opacity:1;
  1573. overflow-y:hidden;
  1574. text-align:justify;
  1575. overflow-x:hidden;
  1576. }
  1577.  
  1578.  
  1579. .popup_block a {
  1580. margin-right:0px;
  1581. vertical-align:top;
  1582. font-family: calibri, sans-serif;
  1583. font-size:9.5px;
  1584. color:{color:links};
  1585. font-weight:bold!important;
  1586. position: relative;
  1587. text-decoration:none;
  1588. text-transform:uppercase;
  1589. text-shadow: 0px 0px 1px {color:links};
  1590. }
  1591.  
  1592.  
  1593. *html #fade {
  1594. position: absolute;
  1595. }
  1596.  
  1597.  
  1598. *html .popup_block {
  1599. position: absolute;
  1600. }
  1601.  
  1602.  
  1603. #fade {
  1604. display:none;
  1605. position:fixed;
  1606. left:0px;
  1607. top:0px;
  1608. width:100%;
  1609. height:100%;
  1610. z-index:9;
  1611. background:transparent;
  1612. opacity:0;
  1613. }
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619.  
  1620. /* NAVIGATION LIST */
  1621.  
  1622.  
  1623. .nlist {
  1624. position:absolute;
  1625. left:52px;
  1626. margin-top:173px;
  1627. height:129px;
  1628. max-height:129px;
  1629. width:231px;
  1630. max-width:231px;
  1631. border-bottom:0px solid {color:background}!important;
  1632. border-top:0px solid {color:background}!important;
  1633. background-color:{color:background};
  1634. overflow-y:scroll;
  1635. padding-left:0px;
  1636. padding-right:0px;
  1637. outline:1px solid {color:border}!important;
  1638. opacity:1!important;
  1639. }
  1640.  
  1641.  
  1642. .nlinks {
  1643. margin-top:0px;
  1644. padding-left:0px!important;
  1645. width:275px;
  1646. background-color:{color:background};
  1647. }
  1648.  
  1649.  
  1650. .nlinks a, .nlinks li {
  1651. display:inline-block;
  1652. box-sizing: border-box;
  1653. padding-right:24px;
  1654. outline:1px solid {color:border};
  1655. background-color:{color:background};
  1656. width:275px;
  1657. overflow:hidden;
  1658. height:25px;
  1659. padding-left:24px;
  1660. padding-right:24px;
  1661. font-family:calibri;
  1662. text-align:left;
  1663. font-style:normal;
  1664. font-weight:bold!important;
  1665. margin-right:0px;
  1666. margin-bottom:-3px;
  1667. font-size:9.5px;
  1668. letter-spacing:0px;
  1669. line-height:25px;
  1670. color: {color:Navigation List Links};
  1671. text-transform:uppercase;
  1672. cursor:pointer;
  1673. text-shadow: 0px 0px 1px {color:Navigation List Links};
  1674. }
  1675.  
  1676.  
  1677. .nlinks li:hover, .nlinks li:nth-of-type(even):hover {
  1678. color:{color:links}!important;
  1679. text-shadow: 0px 0px 1px {color:links};
  1680. -moz-transition-duration:1.5s;
  1681. -webkit-transition-duration:1.5s;
  1682. -o-transition-duration:1.5s;
  1683. }
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  
  1690. /* NAVIGATION PAGES */
  1691.  
  1692.  
  1693. .npheader {
  1694. margin-top:0px;
  1695. margin-left:-25px;
  1696. margin-bottom:0px!important;
  1697. height:90px;
  1698. width:538px;
  1699. overflow:hidden;
  1700. outline:1px solid {color:border};
  1701. -webkit-filter: brightness(1.1) contrast(1) saturate(1);
  1702. }
  1703.  
  1704.  
  1705. .npnavi {
  1706. margin-top:1px;
  1707. margin-left:-25px!important;
  1708. margin-right:-25px!important;
  1709. margin-bottom:0px;
  1710. outline:0px;
  1711. }
  1712.  
  1713.  
  1714. .dropbtn {
  1715. display:inline-block;
  1716. box-sizing: border-box;
  1717. font-size:9.5px;
  1718. text-align:center;
  1719. padding-left:25px;
  1720. padding-right:25px;
  1721. margin-top:-1px;
  1722. margin-left:-1px;
  1723. margin-bottom:0px!important;
  1724. font-family: calibri, sans-serif;
  1725. text-transform:uppercase;
  1726. width:537px;
  1727. max-width:537px;
  1728. height:25px;
  1729. background-color:transparent;
  1730. border:1px solid {color:border};
  1731. line-height:21px;
  1732. margin-right:0px;
  1733. color: {color:links};
  1734. font-weight:bold!important;
  1735. overflow:hidden;
  1736. text-shadow: 0px 0px 1px {color:links};
  1737. }
  1738.  
  1739.  
  1740. .dropbtn:hover, .dropbtn:focus {
  1741. color:{color:button active};
  1742. text-shadow: 0px 0px 1px {color:button active};
  1743. }
  1744.  
  1745.  
  1746. .dropdown {
  1747. position: relative;
  1748. display: inline-block;
  1749. }
  1750.  
  1751.  
  1752. .dropdown-content {
  1753. display: none;
  1754. position: absolute;
  1755. margin-top:-1px!important;
  1756. margin-left:-1px;
  1757. background-color: {color:background};
  1758. min-width: 160px;
  1759. box-shadow:0px 18px 0px 5px {color:background};
  1760. z-index: 999999999999999999999999;
  1761. }
  1762.  
  1763.  
  1764. .dropdown-content a {
  1765. color: black;
  1766. padding: 12px 16px;
  1767. text-decoration: none;
  1768. display: block;
  1769. }
  1770.  
  1771.  
  1772. .dropdown-content a:hover, .dropdown a:hover {
  1773. color:{color:links hover};!important;
  1774. }
  1775.  
  1776.  
  1777. .show {
  1778. display:block;
  1779. }
  1780.  
  1781.  
  1782. ul#tabs {
  1783. text-align: left;
  1784. Cursor:pointer;
  1785. }
  1786.  
  1787.  
  1788. ul#tabs li {
  1789. display:inline-block;
  1790. box-sizing: border-box;
  1791. font-size:9.5px;
  1792. text-align:center;
  1793. padding-left:24px;
  1794. padding-right:24px;
  1795. margin-bottom:-5px!important;
  1796. font-family: calibri, sans-serif;
  1797. text-transform:uppercase;
  1798. width:269px;
  1799. max-width:269px;
  1800. height:25px;
  1801. background-color:transparent;
  1802. border:1px solid {color:border};
  1803. line-height:25px;
  1804. margin-left:0px;
  1805. margin-right:-2px;
  1806. color: {color:navigation list links};
  1807. font-weight:bold!important;
  1808. overflow:hidden;
  1809. text-shadow: 0px 0px 1px {color:navigation list links};
  1810. }
  1811.  
  1812.  
  1813. ul#tabs li.active {
  1814. display:inline-block;
  1815. box-sizing: border-box;
  1816. font-size:9.5px;
  1817. text-align:center;
  1818. padding-left:24px;
  1819. padding-right:24px;
  1820. font-family: calibri, sans-serif;
  1821. text-transform:uppercase;
  1822. background-color:transparent;
  1823. border:1px solid {color:border};
  1824. margin-left:0px;
  1825. margin-right:-2px;
  1826. color:{color:button active};
  1827. font-weight:bold!important;
  1828. overflow:hidden;
  1829. text-shadow: 0px 0px 1px {color:button active};
  1830. }
  1831.  
  1832.  
  1833. ul#tab, ul#tabs{
  1834. list-style-type:none;
  1835. margin:0px;
  1836. padding:0px;
  1837. }
  1838.  
  1839.  
  1840. ul#tab li.active {
  1841. display: block;
  1842. }
  1843.  
  1844.  
  1845. ul#tab li {
  1846. display: none;
  1847. }
  1848.  
  1849.  
  1850. .npcontent {
  1851. margin-top:2px!important;
  1852. border-top:24px solid {color:background};
  1853. border-bottom:24px solid {color:background};
  1854. overflow-y:scroll!important;
  1855. height:215px;
  1856. background-color:transparent;
  1857. }
  1858.  
  1859.  
  1860. .npcontent a {
  1861. color:{color:button inactive}!important;
  1862. text-shadow: 0px 0px 1px {color:button inactive}!important;
  1863. }
  1864.  
  1865.  
  1866. .nplinks {
  1867. margin-top:0px!important;
  1868. margin-bottom:0px!important;
  1869. padding-top:0px!important;
  1870. padding-bottom:0px;
  1871. background-color:{color:background};
  1872. width:490px;
  1873. }
  1874.  
  1875.  
  1876. .nplinks h4 {
  1877. color:{color:headers}!important;
  1878. width:432px!important;
  1879. text-shadow: 0px 0px 1px {color:headers};
  1880. }
  1881.  
  1882.  
  1883. .nplinks a {
  1884. font-family:calibri!important;
  1885. font-weight:bold!important;
  1886. display:inline-block;
  1887. box-sizing: border-box;
  1888. width:238px;
  1889. height:25px!important;
  1890. padding-left:24px;
  1891. line-height:25px;
  1892. margin-left:-0px;
  1893. margin-right:6px;
  1894. margin-bottom:8.4px;
  1895. text-align:left;
  1896. border: 1px solid {color:border};
  1897. font-size:9.5px;
  1898. }
  1899.  
  1900.  
  1901. .nplinks a:hover, .nplinks:hover {
  1902. color:{color:links hover}!important;
  1903. -moz-transition-duration:1.5s;
  1904. -webkit-transition-duration:1.5s;
  1905. -o-transition-duration:1.5s;
  1906. text-shadow: 0px 0px 1px {color:links hover};
  1907. }
  1908.  
  1909.  
  1910.  
  1911.  
  1912.  
  1913.  
  1914. /* CREDIT */
  1915.  
  1916.  
  1917. #credit {
  1918. background-color:{color:background};
  1919. border:1px solid {color:border};
  1920. padding:6px 10px;
  1921. z-index:999;
  1922. position:absolute;
  1923. bottom:44px;
  1924. right:44px;
  1925. width:6px;
  1926. height:14px;
  1927. word-wrap:break-word;
  1928. font-family:calibri;
  1929. overflow:hidden;
  1930. -webkit-transition:all 1.5s ease;
  1931. -moz-transition:all 1.5s ease;
  1932. -o-transition:all 1.5s ease;
  1933. transition:all 1.5s ease-in-out;
  1934. }
  1935.  
  1936.  
  1937. #credit a {
  1938. color:{color:links};
  1939. text-transform:uppercase;
  1940. font-size:9.5px;
  1941. text-shadow: 0px 0px 1px {color:links};
  1942. }
  1943.  
  1944.  
  1945. #credit:hover {
  1946. width:73px;
  1947. }
  1948.  
  1949.  
  1950. #credit span {
  1951. color:{color:bold};
  1952. font-family:calibri;
  1953. margin-right:10px;
  1954. font-size:10.5px;
  1955. text-shadow: 0px 0px 1px {color:bold};
  1956. }
  1957.  
  1958.  
  1959. </style>
  1960. </head>
  1961.  
  1962.  
  1963.  
  1964.  
  1965. <body>
  1966.  
  1967.  
  1968. <!-- CONTAINER -->
  1969.  
  1970. <div id="container">
  1971.  
  1972. {block:ifnotSidebarTitle}
  1973. <div class="title">
  1974. {text:Title}
  1975. </div class="title">
  1976. {/block:ifnotSidebarTitle}
  1977.  
  1978.  
  1979.  
  1980. <!-- SIDEBAR -->
  1981.  
  1982. <div class="sidebar">
  1983.  
  1984. {block:ifSidebarTitle}
  1985. <div class="sidebartitle">
  1986. {text:Title}
  1987. </div class="sidebartitle">
  1988. {/block:ifSidebarTitle}
  1989.  
  1990. <div class="sidebarbg">
  1991. <img src="{image:Sidebar Background}">
  1992. </div class="sidebarbg">
  1993.  
  1994.  
  1995. <div class="inner">
  1996.  
  1997. <div class="sidebarimgtop">
  1998. <img src="{image:Sidebar Image Top}">
  1999. </div class="sidebarimgtop">
  2000.  
  2001.  
  2002. <div class="description">
  2003. {Description}
  2004. </div class="description">
  2005.  
  2006.  
  2007. <div class="sidebarimgbottom">
  2008. <img src="{image:Sidebar Image Bottom}">
  2009. </div class="sidebarimgbottom">
  2010.  
  2011.  
  2012. </div class="inner">
  2013.  
  2014. </div class="sidebar">
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  
  2020.  
  2021. <!-- TOP NAVIGATION -->
  2022.  
  2023.  
  2024. <div class="navigation">
  2025.  
  2026. <button class="w3-bar-item w3-button" onclick="openPage('Index'); openNavi('Index')" autofocus style="text-align:left; color:{color:button active}; text-shadow: 0px 0px 1px {color:button active};">
  2027. Close the pages
  2028. </button>
  2029.  
  2030. <button class="w3-bar-item w3-button" onclick="openPage('Inquiries')">
  2031. Inquiries / Askbox
  2032. </button>
  2033.  
  2034. <button class="w3-bar-item w3-button" onclick="openNavi('Navigation')" style="text-align:right;">
  2035. The Navigation
  2036. </button>
  2037.  
  2038. </div class="navigation">
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044.  
  2045. <!-- POSTS -->
  2046.  
  2047.  
  2048. <div id="content">
  2049. <div id="content2">
  2050.  
  2051.  
  2052. {block:Posts}
  2053. <div class="posts">
  2054.  
  2055.  
  2056.  
  2057.  
  2058.  
  2059.  
  2060. <!-- POSTS: TEXT -->
  2061.  
  2062.  
  2063. {block:Text}
  2064. <div id="textbody">
  2065.  
  2066. {block:Title}
  2067. <h1>{Title}</h1>
  2068. {/block:Title}
  2069.  
  2070. <div id="wrap">
  2071. {Body}
  2072. </div id="wrap">
  2073.  
  2074. <div style="clear:both;">
  2075. </div style="clear:both">
  2076.  
  2077. </div id="textbody">
  2078. {/block:Text}
  2079.  
  2080.  
  2081.  
  2082.  
  2083.  
  2084.  
  2085. <!-- POSTS: PHOTO/SET -->
  2086.  
  2087.  
  2088. {block:Photo}
  2089. <div id="psingle">
  2090. {LinkOpenTag}
  2091.  
  2092. <img src="{PhotoURL-HighRes}">
  2093. {LinkCloseTag}
  2094.  
  2095. </div id="psingle">
  2096.  
  2097.  
  2098. {block:Caption}
  2099.  
  2100. <div id="pcaption">
  2101. {Caption}
  2102. </div id="pcaption">
  2103.  
  2104. {/block:Caption}
  2105.  
  2106. {/block:Photo}
  2107.  
  2108.  
  2109.  
  2110.  
  2111. {block:Photoset}
  2112. <div id="pset">
  2113. {Photoset}
  2114. </div id="pset">
  2115.  
  2116. {block:Caption}
  2117. {Caption}
  2118. {/block:Caption}
  2119.  
  2120. {/block:Photoset}
  2121.  
  2122.  
  2123.  
  2124.  
  2125.  
  2126.  
  2127. <!-- POSTS: QUOTE -->
  2128.  
  2129.  
  2130. {block:Quote}
  2131. <div id="quote">
  2132. "{Quote}"
  2133.  
  2134. <div class="source">
  2135. Source: {Source}
  2136. </div class="source">
  2137.  
  2138. </div id="quote">
  2139. {/block:Quote}
  2140.  
  2141.  
  2142.  
  2143.  
  2144.  
  2145.  
  2146. <!-- POSTS: LINK -->
  2147.  
  2148.  
  2149. {block:Link}
  2150. <div id="link">
  2151.  
  2152. <a href="{URL}" {Target}>{Name}&nbsp;&nbsp; ►</a>
  2153.  
  2154. </div id="link">
  2155. {/block:Link}
  2156.  
  2157.  
  2158.  
  2159.  
  2160.  
  2161.  
  2162. <!-- POSTS: CHAT -->
  2163.  
  2164.  
  2165. {block:Chat}
  2166. <div id="chat">
  2167.  
  2168. {block:Lines}
  2169. <div id="{Alt}">
  2170.  
  2171. {block:Label}<b>{Label}</b>{/block:Label} {Line}
  2172.  
  2173. </div id="{Alt}">
  2174. {/block:Lines}
  2175.  
  2176. </div id="chat">
  2177. {/block:Chat}
  2178.  
  2179.  
  2180.  
  2181.  
  2182.  
  2183.  
  2184. <!-- POSTS: AUDIO -->
  2185.  
  2186.  
  2187. {block:Audio}
  2188. <div class="audioplayer">
  2189.  
  2190. {AudioPlayerWhite}
  2191.  
  2192. </div class="audioplayer">
  2193.  
  2194.  
  2195. <div class="audioinfo">
  2196. {block:TrackName}{TrackName}{/block:TrackName} — {block:Artist}{Artist}{/block:Artist}
  2197. </div class="audioinfo">
  2198.  
  2199. {block:Caption}
  2200. {Caption}
  2201. {/block:Caption}
  2202.  
  2203. {/block:Audio}
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210. <!-- POSTS: VIDEO -->
  2211.  
  2212.  
  2213. {block:Video}
  2214. <div class="video">
  2215.  
  2216. {VideoEmbed-500}
  2217.  
  2218. </div class="video">
  2219.  
  2220. {block:Caption}
  2221. {Caption}
  2222. {/block:Caption}
  2223.  
  2224. {/block:Video}
  2225.  
  2226.  
  2227.  
  2228.  
  2229.  
  2230.  
  2231. <!-- POSTS: ASK -->
  2232.  
  2233.  
  2234. {block:Answer}
  2235.  
  2236. <div id="question">
  2237. <div id="ask">
  2238.  
  2239. <b>{Asker} is inquiring for information:</b>
  2240. {Question}
  2241.  
  2242. </div id="ask">
  2243. <div class="letterask">Q</div class="letterask">
  2244.  
  2245. </div id="question">
  2246.  
  2247. <div id="response">
  2248. <div id="wrap">{Answer}</div id="wrap">
  2249.  
  2250. <div style="clear:both; margin-bottom:-5px;">
  2251. </div style="clear:both">
  2252.  
  2253. </div id="response">
  2254.  
  2255. {/block:Answer}
  2256.  
  2257.  
  2258.  
  2259.  
  2260.  
  2261.  
  2262.  
  2263.  
  2264. <!-- POST INFORMATION -->
  2265.  
  2266.  
  2267.  
  2268. {block:Date}
  2269.  
  2270. {block:indexpage}
  2271.  
  2272. <div class="permalink">
  2273. <div class="permalinkbuttons">
  2274.  
  2275. <a href="{Permalink}" style="text-align:left;">
  2276. {Month} {DayOfMonth}{DayOfMonthSuffix} / {12Hour}:{Minutes}{CapitalAmPm} / {NoteCountWithLabel}
  2277. </a>
  2278.  
  2279. {block:RebloggedFrom}
  2280. <a href="{ReblogParentURL}" title="{ReblogParentName}: {ReblogParentTitle}">
  2281. REBLOGGED FROM / VIA
  2282. </a>
  2283. {/block:RebloggedFrom}
  2284.  
  2285. <a href="{ReblogURL}" target="_blank" class="details" style="float:right; text-align:right;">
  2286. CLICK HERE TO REBLOG THIS POST
  2287. </a>
  2288.  
  2289. </div class="permalinkbuttons">
  2290.  
  2291.  
  2292. {block:HasTags}
  2293. <div class="tags">
  2294.  
  2295. {block:Tags}
  2296. <a href="{TagURL}">{Tag}&nbsp;&nbsp;</a>
  2297. {/block:Tags}
  2298.  
  2299. </div class="tags">
  2300. {/block:HasTags}
  2301.  
  2302.  
  2303. </div class="permalink">
  2304. {/block:indexpage}
  2305.  
  2306.  
  2307.  
  2308.  
  2309.  
  2310.  
  2311. {block:permalinkpage}
  2312. <div class="permalink">
  2313. <div class="permalinkbuttons">
  2314.  
  2315. {block:RebloggedFrom}
  2316. <a href="{ReblogParentName}" title="{ReblogParentName}" style="text-align:left;">
  2317. REBLOGGED FROM / VIA
  2318. </a>
  2319. {/block:RebloggedFrom}
  2320.  
  2321. <a href="{ReblogURL}" target="_blank" class="details" style="float:right; ">
  2322. CLICK HERE TO REBLOG THIS POST
  2323. </a>
  2324.  
  2325. </div class="permalinkbuttons">
  2326.  
  2327. {block:HasTags}
  2328. <div class="tags">
  2329. {block:Tags}
  2330.  
  2331. <a href="{TagURL}">
  2332. {Tag}&nbsp;&nbsp;
  2333. </a>
  2334.  
  2335. {/block:Tags}
  2336. </div class="tags">
  2337. {/block:HasTags}
  2338.  
  2339. </div class="permalink">
  2340. {/block:permalinkpage}
  2341.  
  2342. {/block:Date}
  2343.  
  2344.  
  2345.  
  2346.  
  2347.  
  2348.  
  2349. <!-- NOTES -->
  2350.  
  2351. {block:PostNotes}
  2352. <div id="notes">
  2353.  
  2354. <div class="note">
  2355. {PostNotes}
  2356. </div class="note">
  2357.  
  2358. </div id="notes">
  2359. {/block:PostNotes}
  2360.  
  2361.  
  2362.  
  2363.  
  2364.  
  2365.  
  2366. <!-- HIDE VIA/SOURCE IN POSTS -->
  2367.  
  2368.  
  2369. {block:ContentSource}<!-- {SourceURL}
  2370. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  2371. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  2372. {/block:ContentSource}
  2373.  
  2374.  
  2375. <!-- {block:NoRebloggedFrom}
  2376. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  2377. {/block:NoRebloggedFrom} -->
  2378.  
  2379.  
  2380. </div class="posts">
  2381. {/block:Posts}
  2382.  
  2383.  
  2384. </div id="content2">
  2385. </div id="content">
  2386.  
  2387.  
  2388.  
  2389.  
  2390.  
  2391.  
  2392. <div class="navigationbottom">
  2393. <div class="pagination">
  2394.  
  2395. <a href="/" title="Refresh the page" autofocus style="text-align:left; color:{color:button active}; text-shadow: 0px 0px 1px {color:button active};">RETURN TO MAIN PAGE</a>
  2396.  
  2397. {block:Indexpage}
  2398. {block:PreviousPage}<a href="{PreviousPage}">RETURN TO LAST PAGE</a>{/block:PreviousPage}
  2399. {block:NextPage}<a href="{NextPage}" style="float:right; margin-right:1px; text-align:right;">PROCEED TO NEXT PAGE</a>{/block:NextPage}
  2400. {/block:Indexpage}
  2401.  
  2402.  
  2403.  
  2404. {block:PermalinkPagination}
  2405. {block:PreviousPost}<a href="{PreviousPost}" title="Previous Post">RETURN TO LAST POST</a>{/block:PreviousPost}
  2406. {block:NextPost}<a href="{NextPost}" title="Next Post" style="float:right; margin-right:1px; text-align:right;">PROCEED TO NEXT POST</a>{/block:NextPost}
  2407. {/block:PermalinkPagination}
  2408.  
  2409.  
  2410. </div class="pagination">
  2411. </div class="navigationbottom">
  2412.  
  2413.  
  2414.  
  2415.  
  2416.  
  2417.  
  2418. <div id="Index" class="navi; page" style="display:block">
  2419.  
  2420. </div id="Index" class="navi; page">
  2421.  
  2422.  
  2423.  
  2424.  
  2425.  
  2426.  
  2427.  
  2428.  
  2429.  
  2430. <!-- POPUP: INQUIRIES -->
  2431.  
  2432.  
  2433. <div id="Inquiries" class="page" style="display:none;">
  2434. <div id="tabcontent" style="overflow:hidden!important;">
  2435.  
  2436.  
  2437. <div class="npheader">
  2438. <img src="https://static.tumblr.com/gjexvml/Xzcpxvuvk/exampleheader.png">
  2439. </div class="npheader">
  2440.  
  2441. <div class="npnavi">
  2442. <ul id="tabs">
  2443.  
  2444. <div class="dropdown">
  2445. <button onclick="myFunction()" class="dropbtn">
  2446.  
  2447. Inquiries / Askbox
  2448.  
  2449. </button>
  2450. </div class="dropdown">
  2451.  
  2452. </ul id="tabs">
  2453. </div class="npnavi">
  2454.  
  2455.  
  2456.  
  2457.  
  2458.  
  2459. <div id="npcontent">
  2460.  
  2461. <iframe frameborder="0" scrolling="yes" width="465px" height="190px" src="https://www.tumblr.com/ask_form/YOURURLHERE.tumblr.com" style="padding:8px;margin-top:24px; background-color:transparent; border:1px solid {color:border}; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  2462.  
  2463. </div id="npcontent">
  2464.  
  2465.  
  2466. </div id="tabcontent">
  2467. </div id="Inquiries" class="page">
  2468.  
  2469.  
  2470.  
  2471.  
  2472.  
  2473.  
  2474.  
  2475.  
  2476.  
  2477.  
  2478.  
  2479.  
  2480.  
  2481.  
  2482. <!-- NAVIGATIONAL LIST LINKS -->
  2483.  
  2484. <div id="Navigation" class="navi" style="display:none;">
  2485.  
  2486.  
  2487. <div class="nlist">
  2488. <div class="nlinks">
  2489.  
  2490. <!-- COPY/PASTE THIS TO MAKE ANOTHER PAGE AND RENAME 'PAGE01' -->
  2491.  
  2492. <li onclick="openPage('Page01')">
  2493. Page 01
  2494. </li>
  2495.  
  2496. <!-- COPY/PASTE THIS TO MAKE ANOTHER PAGE AND RENAME 'PAGE01' -->
  2497.  
  2498.  
  2499. <li onclick="openPage('Page02')">
  2500. Page 02
  2501. </li>
  2502.  
  2503.  
  2504. </div class="nlinks">
  2505. </div class="nlist">
  2506.  
  2507. </div id="Navigation" class="navi">
  2508.  
  2509.  
  2510.  
  2511.  
  2512.  
  2513.  
  2514.  
  2515.  
  2516.  
  2517.  
  2518.  
  2519.  
  2520.  
  2521.  
  2522.  
  2523. <!-- COPY/PASTE THIS TO MAKE ANOTHER PAGE AND RENAME 'PAGE01' -->
  2524.  
  2525.  
  2526. <!-- PAGE01 -->
  2527.  
  2528.  
  2529. <div id="Page01" class="page" style="display:none;">
  2530. <div id="tabcontent" style="overflow:hidden!important;">
  2531.  
  2532.  
  2533. <div class="npheader">
  2534. <img src="https://static.tumblr.com/gjexvml/Xzcpxvuvk/exampleheader.png">
  2535. </div class="npheader">
  2536.  
  2537.  
  2538. <div class="npnavi">
  2539. <ul id="tabs">
  2540.  
  2541. <button onclick="myFunction()" class="dropbtn">
  2542.  
  2543. Page01 Title Here
  2544.  
  2545. </button>
  2546.  
  2547. </ul id="tabs">
  2548. </div class="npnavi">
  2549.  
  2550.  
  2551. <!-- TAB01 -->
  2552.  
  2553.  
  2554. <div class="npcontent">
  2555.  
  2556.  
  2557. <h4>Page01 Header</h4>
  2558.  
  2559. Etiam non posuere mi, et sollicitudin nulla. Donec id pulvinar tellus. Donec at tellus nec odio suscipit malesuada vitae at ipsum. Phasellus velit massa, euismod at fermentum eu, vestibulum ac felis. Proin malesuada tortor quis tellus egestas pulvinar. Curabitur posuere neque non purus tempus, quis volutpat nisi malesuada. Etiam feugiat mi nec sapien finibus cursus. Phasellus bibendum est sem. Cras hendrerit tincidunt ex. Duis diam dolor, molestie eget pulvinar sit amet, egestas vitae turpis. Aenean lacinia ultrices porttitor. Praesent tellus ligula, ornare eget efficitur id, scelerisque ut lorem. Morbi venenatis, lectus a porta pretium, dolor diam dictum urna, at sagittis dui enim eu mi. Phasellus tempus nulla eu lacus facilisis pretium. Donec quis libero nec dolor vestibulum fermentum. Sed aliquet euismod nibh et lobortis.
  2560.  
  2561. <p>Nullam pretium, ligula nec facilisis ullamcorper, tellus massa mollis tellus, eu dictum mi sem sit amet risus. Cras metus neque, porta quis consectetur ut, rutrum vel mauris. Nullam dapibus massa nec nulla consequat, et commodo risus pretium. In hac habitasse platea dictumst. Ut faucibus at neque in sagittis. Nam sit amet leo est. Ut a sem cursus, dignissim ligula et, rhoncus est. Aliquam hendrerit, eros quis efficitur luctus, eros tellus volutpat elit, non auctor sapien risus tempus libero. In gravida nisi justo, a condimentum sem porttitor non. Donec pharetra ut lorem vitae consectetur. Nulla fringilla massa a risus euismod euismod. Aliquam pellentesque massa sit amet nisi eleifend, eget sagittis augue consequat. Sed volutpat, lorem quis rhoncus ultrices, est elit ornare arcu, ut vulputate neque odio ut enim. Mauris sed hendrerit tortor. Nunc ut blandit purus. Duis viverra, lorem pharetra egestas aliquam, est mi aliquet turpis, sed auctor ex dolor finibus tortor.
  2562.  
  2563.  
  2564. </div class="npcontent">
  2565.  
  2566.  
  2567. </div id="tabcontent" style="overflow:hidden!important;">
  2568. </div id="Page01" class="page">
  2569.  
  2570.  
  2571. <!-- COPY/PASTE THIS TO MAKE ANOTHER PAGE AND RENAME 'PAGE01' -->
  2572.  
  2573.  
  2574.  
  2575.  
  2576.  
  2577.  
  2578.  
  2579.  
  2580.  
  2581.  
  2582.  
  2583.  
  2584.  
  2585.  
  2586.  
  2587. <!-- COPY/PASTE THIS TO MAKE ANOTHER PAGE AND RENAME 'PAGE02' -->
  2588.  
  2589.  
  2590. <!-- PAGE02 -->
  2591.  
  2592.  
  2593. <div id="Page02" class="page" style="display:none;">
  2594. <div id="tabcontent" style="overflow:hidden!important;">
  2595.  
  2596.  
  2597. <div class="npheader">
  2598. <img src="https://static.tumblr.com/gjexvml/Xzcpxvuvk/exampleheader.png">
  2599. </div class="npheader">
  2600.  
  2601.  
  2602. <div class="npnavi">
  2603. <ul id="tabs">
  2604.  
  2605. <button onclick="myFunction()" class="dropbtn">
  2606.  
  2607. Page01 Title Here
  2608.  
  2609. </button>
  2610.  
  2611. </ul id="tabs">
  2612. </div class="npnavi">
  2613.  
  2614.  
  2615.  
  2616.  
  2617.  
  2618.  
  2619. <div class="npcontent">
  2620.  
  2621. <div class="nplinks">
  2622.  
  2623. <h4>Navigation Title</h4>
  2624.  
  2625. <a href="/">
  2626. Navigation link 01
  2627. </a>
  2628.  
  2629. <a href="/">
  2630. Navigation link 02
  2631. </a>
  2632.  
  2633. <a href="/">
  2634. Navigation link 03
  2635. </a>
  2636.  
  2637. <a href="/">
  2638. Navigation link 04
  2639. </a>
  2640.  
  2641. <a href="/">
  2642. Navigation link 05
  2643. </a>
  2644.  
  2645. <a href="/">
  2646. Navigation link 06
  2647. </a>
  2648.  
  2649. <a href="/">
  2650. Navigation link 07
  2651. </a>
  2652.  
  2653. <a href="/">
  2654. Navigation link 08
  2655. </a>
  2656.  
  2657. <a href="/">
  2658. Navigation link 09
  2659. </a>
  2660.  
  2661. <a href="/">
  2662. Navigation link 10
  2663. </a>
  2664.  
  2665. </a>
  2666.  
  2667.  
  2668. </div class="nplinks">
  2669.  
  2670. </div class="npcontent">
  2671.  
  2672.  
  2673. </div id="tabcontent" style="overflow:hidden!important;">
  2674. </div id="Page02" class="page">
  2675.  
  2676.  
  2677. <!-- COPY/PASTE THIS TO MAKE ANOTHER PAGE AND RENAME 'PAGE02' -->
  2678.  
  2679.  
  2680.  
  2681.  
  2682.  
  2683.  
  2684.  
  2685.  
  2686.  
  2687. <!-- PASTE ADDITIONAL PAGES HERE -->
  2688.  
  2689.  
  2690.  
  2691.  
  2692.  
  2693.  
  2694.  
  2695.  
  2696.  
  2697.  
  2698.  
  2699.  
  2700.  
  2701.  
  2702.  
  2703.  
  2704. </div id="container">
  2705.  
  2706.  
  2707. <!-- CREDIT -->
  2708.  
  2709. <div id="credit">
  2710. <div style="width:105px;margin-right:10px;">
  2711.  
  2712.  
  2713. <a href="http://iniziarearchive.tumblr.com/post/183826974792/base-theme-viper-preview-download-code" target="blank">
  2714. <span>S.</span>MADE BY SAE.</a>
  2715.  
  2716.  
  2717. </div style>
  2718. </div id="credit">
  2719.  
  2720. </body>
  2721. </html>
Add Comment
Please, Sign In to add comment