Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!-- (BASE) THEME BY SAE (INIZIARE) // EDITED FOR EPOKHAS -->
- <!-- HI/HELLO, INSTRUCTIONS AS PROMISED!
- If you're looking to add more/additional muses to your 'Muse List', then simply do a search for 'Muses' and follow the little instruction there!
- -->
- <head>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- </head>
- <!-- SCRIPT: JQUERY -->
- <script src="https://static.tumblr.com/gjexvml/cszpz4vyd/jquery-3.4.1.min.js"></script>
- <link rel="stylesheet" media="screen" href="//assets.tumblr.com/client/prod/standalone/blog-network-npf/index.build.css">
- <!-- SCRIPT: AUDIO -->
- <script src="//tmblr-npf-audio.gitlab.io/s/init.js"></script>
- <link href="//tmblr-npf-audio.gitlab.io/s/base.css" rel="stylesheet">
- <script>
- tumblr_npf_audio({
- emptyTitleText: "Untitled track",
- emptyArtistText: "Untitled artist",
- emptyAlbumText: "Untitled album",
- titleLabel: "Track:",
- artistLabel: "Artist:",
- albumLabel: "Album:"
- });
- </script>
- <!-- SCRIPT: AUDIO (OLD) -->
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- $('iframe.tumblr_audio_player').load( function() {
- $('iframe.tumblr_audio_player').contents().find("head")
- .append($("<style type='text/css'> .audio-player{background:{color:background}!important} </style>"));
- });
- });
- </script>
- <!-- SCRIPT: SCROLLING -->
- <script>
- jQuery(document).ready(function($) {
- const $scrollableContainer = $('.scrollable-container');
- const rowHeight = 33; // Height of each row in pixels
- let isScrolling = false; // Prevent simultaneous scrolling
- // Handle the wheel event
- $scrollableContainer.on('wheel', function(event) {
- event.preventDefault(); // Prevent the default scroll behavior
- // If we are currently scrolling, prevent further scrolling until the current scroll finishes
- if (isScrolling) return;
- isScrolling = true; // Set scrolling in progress
- // Determine the scroll direction
- const scrollAmount = event.originalEvent.deltaY;
- // Scroll down (next row) or scroll up (previous row)
- if (scrollAmount > 0) {
- scrollDown();
- } else {
- scrollUp();
- }
- // Function to scroll down one row
- function scrollDown() {
- let currentScroll = $scrollableContainer.scrollTop();
- let nextScroll = Math.ceil(currentScroll / rowHeight) * rowHeight; // Round to next row
- smoothScroll(nextScroll);
- }
- // Function to scroll up one row
- function scrollUp() {
- let currentScroll = $scrollableContainer.scrollTop();
- let prevScroll = Math.floor(currentScroll / rowHeight) * rowHeight; // Round to previous row
- smoothScroll(prevScroll);
- }
- // Smooth scrolling function
- function smoothScroll(targetScroll) {
- $scrollableContainer.stop().animate({
- scrollTop: targetScroll
- }, 200, 'swing', function() {
- isScrolling = false; // Once scroll completes, allow another scroll
- });
- }
- });
- });
- </script>
- <!-- SCRIPT: NPF Images Fix (by @glenthemes) git.io/JRBt7 --->
- <script src="//npf-images-v3.github.io/script.js"></script>
- <link rel="stylesheet" href="//npf-images-v3.github.io/recon.css">
- <style tmblr-npf>
- :root {
- --NPF-Caption-Spacing:1em;
- --NPF-Image-Spacing:4px;
- }
- </style>
- <!-- SCRIPT: DRAGGABLE SIDEBAR -->
- <script>
- document.addEventListener('DOMContentLoaded', function() {
- var sidebar = document.getElementById('sidebar');
- var sidebarHeader = document.getElementById('sidebarheader'); // Get the sidebar header element
- sidebarHeader.onmousedown = function(event) {
- let shiftX = event.clientX - sidebar.getBoundingClientRect().left;
- let shiftY = event.clientY - sidebar.getBoundingClientRect().top;
- function moveAt(pageX, pageY) {
- sidebar.style.left = pageX - shiftX + 'px';
- sidebar.style.top = pageY - shiftY + 'px';
- }
- function onMouseMove(event) {
- moveAt(event.pageX, event.pageY);
- }
- document.addEventListener('mousemove', onMouseMove);
- sidebarHeader.onmouseup = function() {
- document.removeEventListener('mousemove', onMouseMove);
- sidebarHeader.onmouseup = null;
- // Save the position to localStorage
- localStorage.setItem('sidebarPosition', JSON.stringify({
- left: sidebar.style.left,
- top: sidebar.style.top
- }));
- };
- };
- sidebarHeader.ondragstart = function() {
- return false;
- };
- // Load the saved position from localStorage
- var savedsidebarPosition = localStorage.getItem('sidebarPosition');
- if (savedsidebarPosition) {
- var position = JSON.parse(savedsidebarPosition);
- sidebar.style.left = position.left;
- sidebar.style.top = position.top;
- }
- });
- </script>
- <!-- SCRIPT: DROPDOWN MENU -->
- <script>
- jQuery(document).ready(function($) {
- // Toggle the menu and position it below the link
- $('#aesthetic').on('click', function(event) {
- event.preventDefault(); // Prevent default link behavior
- const $link = $(this); // Reference to the "Want to change the aesthetic?" link
- const $menu = $('#theme-menu'); // Reference to the menu
- if ($menu.is(':visible')) {
- // If the menu is already visible, hide it
- $menu.hide();
- } else {
- // Get the link's position and size
- const offset = $link.offset();
- const height = $link.outerHeight();
- // Position the menu just below the link
- $menu.css({
- top: offset.top + height + 5 + 'px', // Below the link with a small gap
- left: offset.left + 'px', // Align with the left of the link
- display: 'block' // Show the menu
- });
- }
- });
- });
- </script>
- <!-- TUMBLR: META TAGS -->
- <meta name="image:Background" content="https://static.tumblr.com/ta61zxu/UY6sqgnuw/bg2.png"/>
- <meta name="text:Rules URL" content="/rules"/>
- <meta name="text:Header" content="EPOKHAS"/>
- <meta name="text:Subheader" content="* FOXHOUND"/>
- <meta name="color:Background" content="#000000"/>
- <meta name="color:Border" content="#121212"/>
- <meta name="color:Blockquote" content="#121212"/>
- <meta name="color:Text" content="#c6c6c6"/>
- <meta name="color:Bold" content="#723f24"/>
- <meta name="color:Italic" content="#9f5557"/>
- <meta name="color:Links" content="#cccccc"/>
- <meta name="color:Links Hover" content="#ffffff"/>
- <meta name="color:Tags" content ="#555555"/>
- <meta name="color:Tags Hover" content ="#ffffff;"/>
- <meta name="color:Permalinkbar" content="#0b0b0b"/>
- <meta name="color:Permalinktext" content="#ffffff"/>
- <!-- ICONS / FONTS -->
- <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
- <style type="text/css">
- /* SCROLLBARS */
- ::-webkit-scrollbar {
- display: none;
- }
- /* TUMBLR CONTROLS */
- .iframe-controls--desktop, .tmblr-iframe.tmblr-iframe--desktop-loggedin-controls.iframe-controls--desktop {
- position:fixed;
- margin-top:6px!important;
- right:0px;
- opacity: 0.8;
- z-index:999999999!important;
- transform:scale(0.84,0.6);
- transform-origin:100% 0%;
- }
- /* MATERIAL ICONS */
- .material-icons {
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- font-size: 24px; /* Preferred icon size */
- display: inline-block;
- line-height: 1;
- text-transform: none;
- letter-spacing: normal;
- word-wrap: normal;
- white-space: nowrap;
- direction: ltr;
- /* Support for all WebKit browsers. */
- -webkit-font-smoothing: antialiased;
- /* Support for Safari and Chrome. */
- text-rendering: optimizeLegibility;
- /* Support for Firefox. */
- -moz-osx-font-smoothing: grayscale;
- /* Support for IE. */
- font-feature-settings: 'liga';
- }
- #icons {
- display: flex;
- flex-direction: column;
- align-items: center;
- transform: scale(0.7)!important;
- padding-top:10px!important;
- }
- #icons i {
- margin-top: 5px;
- }
- .material-icons.md-18 { font-size: 18px; }
- .material-icons.md-24 { font-size: 24px; }
- .material-icons.md-36 { font-size: 36px; }
- .material-icons.md-48 { font-size: 48px; }
- .material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
- .material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
- .material-icons.md-light { color: rgba(255, 255, 255, 1); }
- .material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
- /* BASICS / TEXT */
- #container {
- z-index:9999;
- left: 50%;
- margin-left:-475px;
- margin-top:0px;
- position:fixed;
- width:896px;
- height:100%;
- }
- body {
- background-image:url('{image:Background}');
- background-attachment: fixed;
- background-repeat: no-repeat;
- background-size: cover;
- background-position:top left;
- background-position-x: -90px;
- background-color:{color:background};
- font-family: Arial;
- font-size:11px!important;
- line-height:18px;
- color:{color:text};
- overflow: hidden;
- }
- body a {
- text-transform:none!important;
- color:{color:text};
- font-size:11px!important;
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- body a:hover {
- color:{color:links hover}!important;
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- b, bold, strong {
- color:#723f24;
- margin-right:1px;
- margin-left:1px;
- }
- em, i, italic {
- color: #9f5557;
- }
- small {
- font-size:11px;
- }
- sub, sup {
- font-size:10px;
- vertical-align: baseline!important;
- position: relative!important;
- top: 0em!important;
- line-height:13px;
- }
- s, strike {
- text-decoration: none !important;
- font-weight:bold;
- color:#ffffff;
- }
- big {
- font-size:125%;
- }
- ul, ol {
- padding:0px;
- margin-left:13px;
- }
- li {
- padding-left: 0px;
- }
- blockquote {
- border-left:2px solid {color:blockquote};
- padding-left:25px!important;
- margin-top:15px!important;
- margin-bottom:15px!important;
- margin-left:0px;
- margin-right:0px;
- }
- hr {
- height:12px;
- border:1px solid {color:border};
- background-color:{color:background};
- }
- h2 {
- font-family:arial;
- font-size:12px;
- border:1px solid {color:border};
- padding-left:25px;
- padding-right:25px;
- height:35px;
- line-height:35px;
- }
- h3 {
- padding-left:0px;
- padding-right:0px;
- margin-top:1px;
- outline:1px solid {color:border};
- height:25px;
- line-height:23px;
- color:{color:bold};
- }
- /* SELECTION BACKGROUND / TEXT */
- ::selection {
- background-color: {color:permalink};
- color: #fff;
- }
- ::-moz-selection {
- background-color: {color:permalink}; /* Gold background for Firefox */
- color: {color:#fff}; /* Black text for Firefox */
- }
- /* CONTENTl TOP */
- .top-bar {
- width: 100%;
- background-color: {color:permalinkbar};
- border-bottom: 1px solid {color:border};
- color: white;
- height:25px;
- padding-top:20px;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 50;
- }
- .top-bar-content {
- width: 100%;
- text-align: center;
- }
- .top-bar-content a {
- text-decoration:none!important;
- font-weight:bold;
- color:#ffffff;
- text-transform:none!important;
- font-size:11px!important;
- padding-right:45px!important;
- margin-top:-10px!important;
- letter-spacing:0px!important;
- }
- #theme-menu {
- display: none;
- position: absolute;
- border: 1px solid {color:border};
- z-index: 1000;
- margin-top: 16px !important;
- padding: 0; /* Remove padding */
- }
- #theme-menu a {
- background-color: {color:background};
- color: {color:text};
- font-size: 11px;
- font-family: arial;
- font-weight: bold;
- padding-left:20px;
- height: 40px;
- margin: 0; /* Remove any default margin */
- border: 1px solid {color:border};
- text-align: center;
- text-decoration: none;
- display: flex; /* Use flexbox for centering content */
- align-items: center; /* Vertically center content */
- justify-content: center; /* Horizontally center content */
- width: 100%; /* Full width of the container */
- }
- #theme-menu a:hover {
- color: #ffffff;
- }
- /* CONTENT: SIDEBAR */
- #sidebar {
- position: absolute;
- z-index: 1000;
- width: 380px;
- top: 600px;
- left: 225px;
- color: {color:text};
- background-color: rgba(0, 0, 0, 0.9);
- border: 1px solid {color:border};
- }
- #sidebarheader {
- position: relative;
- letter-spacing: 2px;
- white-space: nowrap;
- padding-top:0px;
- padding-bottom:0px;
- margin-top:1px;
- margin-left:0px;
- font-size: 13px;
- font-weight:bold;
- height:25px;
- line-height:25px;
- color: {color:bold};
- border-bottom: 1px solid {color:border};
- cursor: move;
- user-select: none; /* Prevent text selection during drag */
- }
- #sidebarsubheader {
- position: relative;
- letter-spacing: 0px;
- white-space: nowrap;
- margin-top:8px;
- margin-left:0px;
- font-weight: bold!important;
- font-size: 9px;
- height:20px;
- width:100%;
- text-transform: uppercase;
- color:{color:text};
- border-bottom: 1px solid {color:border};
- }
- #sidebartext {
- position: relative;
- margin-top:15px;
- margin-bottom:15px;
- padding-left:20px;
- padding-right:20px;
- text-align:justify;
- max-height:105px;
- overflow:scroll;
- }
- .pagination, .pagination-button {
- all: unset;
- }
- .pagination {
- display: flex;
- width: 100%;
- border-top: 1px solid {color:border};
- border-bottom: 0px solid {color:border};
- box-sizing: border-box;
- height: 25px;
- line-height:25px!important;
- margin-top: 0px;
- padding: 0;
- align-items: center;
- justify-content: space-between;
- }
- .pagination-button {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left:40px;
- text-decoration: none;
- font-weight: bold;
- padding-top:8px!important;
- color: #ccc;
- transition: background-color 0.3s, color 0.3s;
- box-sizing: border-box;
- height: 100%;
- border-right: 1px solid {color:border};
- }
- .pagination-button:last-child {
- border-right: none;
- }
- .pagination-button:hover {
- background-color: {color:hover};
- color: {color:hover-text};
- cursor: pointer;
- }
- /* CONTENT: POSTS */
- #content {
- position: absolute;
- height: 100vh;
- overflow: scroll;
- scrollbar-width: none;
- top: 0px;
- left: 325px !important;
- background-color: rgba(0, 0, 0, 0.7);
- padding-left: 25px;
- padding-right: 25px;
- }
- .posts {
- width:500px;
- margin-top:45px;
- margin-right:5px;
- margin-left:1px;
- margin-bottom:50px;
- word-wrap: break-word!important;
- padding-left:30px;
- padding-right:30px;
- padding-top:30px!important;
- text-align:justify;
- scrollbar-width: none;
- border:1px solid {color:border};
- background-color: rgba(0, 0, 0, 0.5);
- }
- .posts a {
- font-size:8.5px;
- text-transform:uppercase;
- font-weight:bold!important;
- text-decoration:none!important;
- margin-right:0px;
- margin-top:0px!important;
- color:{color:links};
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- .posts a:hover {
- color:{color:links hover};
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- /* POSTS: TEXT */
- #textbody {
- margin-top:-8px!important;
- {block:permalinkpage}
- margin-top:-12px!important;
- {/block:permalinkpage}
- }
- #textbody::after {
- content: "";
- clear: both;
- display: table;
- margin-top:-8px!important;
- }
- /* POSTS: PHOTO/PHOTOSETS */
- .psingle img {
- margin-top:10px!important;
- padding-top:0px!important;
- width: 100%!important; /* Limit the max width of the image */
- height: auto; /* Maintain aspect ratio */
- display: block; /* Centers the image in the container */
- -webkit-filter: brightness(.9) contrast(1.15) saturate(.9);
- }
- .psingle {
- margin-top:5px!important;
- padding-top:0px!important;
- width: 100%!important; /* Limit the max width of the image */
- height: auto; /* Maintain aspect ratio */
- display: block; /* Centers the image in the container */
- -webkit-filter: brightness(.9) contrast(1.15) saturate(.9);
- }
- #pset {
- margin-top:0px!important;
- {block:permalinkpage}
- margin-top:0px;
- {block:permalinkpage}
- width: 488px;
- pointer-events:none;
- -webkit-filter: brightness(.7) contrast(1.1) saturate(0.6);
- -webkit-transition: all 1.5s ease-in-out;
- -moz-transition: all 1.5s ease-in-out;
- -o-transition: all 1.5s ease-in-out;
- -ms-transition: all 1.5s ease-in-out;
- transition: all 1.5s ease-in-out;
- }
- #pset:hover {
- -webkit-filter: brightness(.7) contrast(1.1) saturate(0.6);
- -webkit-transition: all 1.5s ease-in-out;
- -moz-transition: all 1.5s ease-in-out;
- -o-transition: all 1.5s ease-in-out;
- -ms-transition: all 1.5s ease-in-out;
- transition: all 1.5s ease-in-out;
- }
- /* POSTS: PERMALINK / TAGS */
- .permalink {
- margin-top:25px;
- margin-left:-30px;
- margin-right:-30px;
- padding-left:30px;
- padding-right:30px;
- height:35px;
- line-height:35px!important;
- outline:1px solid {color:border};
- background-color:{color:permalinkbar};
- font-family:arial!important;
- font-size:11px!important;
- color:{color:permalinktext};
- }
- .permalink a {
- font-weight:bold!important;
- font-size:11px!important;
- text-transform:uppercase!important;
- letter-spacing:0px;
- margin-right:20px;
- color:{color:permalinktext};
- }
- .tags {
- font-family:arial!important;
- border-top:1px solid {color:border};
- padding-top:15px;
- padding-bottom:15px;
- padding-left:30px;
- padding-right:30px;
- margin-left:-31px;
- margin-right:-31px;
- margin-bottom:0px;
- font-size:11px;
- text-align:justify;
- text-align-last: left;
- -moz-transition-duration:2s;
- -webkit-transition-duration:2s;
- -o-transition-duration:2s;
- }
- .tags a {
- font-family: arial;
- text-decoration:none!important;
- font-weight:lighter!important;
- font-size:11px!important;
- margin-right:1px;
- color:{color:tags};
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- .tags a:hover {
- color:{color:tags hover};
- }
- /* POSTS: AUDIO */
- .npf-audio-wrapper {
- border:1px solid {color:border};
- --NPF-Audio-Buttons-Size: 1.4rem;
- --NPF-Audio-Buttons-Color: #555555;
- --NPF-Audio-Buttons-Spacing: 1.3rem;
- --NPF-Audio-Image-Size: 85px;
- --NPF-Audio-Image-Spacing: 0px;
- }
- .npf-audio-background {
- background-color: {color:background};
- padding: 1.5rem;
- }
- .npf-audio-title-label,
- .npf-audio-artist-label,
- .npf-audio-album-label {
- font-weight: bold;
- color:{color:bold};
- margin-right:5px;
- }
- .npf-audio-title,
- .npf-audio-artist,
- .npf-audio-album {
- color: {color:text};
- }
- .audiowrap {
- position:relative;
- height:27px;
- overflow:hidden;
- background-color:{color:background};
- border:1px solid {color:border};
- padding:2em;
- margin-bottom:2.5em;
- }
- .audio {
- position:absolute;
- display:inline-block;
- left:2em;
- top:2em;
- right:2em;
- bottom:2em;
- text-align:left;
- line-height:27px;
- }
- .audio .player {
- width:27px;
- height:27px;
- left:0;
- top:0;
- opacity:.5;
- line-height:0;
- overflow:hidden;
- position:absolute;
- }
- .audio .track {
- overflow:hidden;
- line-height:15px;
- margin-left:41px;
- width:calc(100% - 41px);
- display:inline-block;
- vertical-align:middle;
- }
- .audio .track .h {
- display:block;
- max-height:15px;
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- margin-right:15px;
- }
- /* POSTS: NOTES */
- #notes {
- margin-top:30px;
- margin-bottom:30px!important;
- margin-left:-20px!important;
- padding-bottom:6px;
- padding-left:8px;
- padding-right:8px;
- text-align:left;
- }
- .note li {
- margin-bottom:0px!important;
- list-style-type:none;
- padding-top:0px;
- line-height:14px;
- padding-bottom:0px!important;
- padding-left:0px;
- padding-right:0px;
- text-align:left!important;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- font-size:11px!important;
- color: {color:text};
- }
- .note li a {
- text-align:left!important;
- font-size:11px!important;
- padding-right:0px;
- font-weight:bold;
- letter-spacing:0px;
- color: {color:text};
- }
- .more_notes_link, .more_notes_link a {
- text-align:left!important;
- color:{color:bold}!important;
- }
- .note blockquote a {
- padding-top:12px;
- padding-bottom:12px;
- padding-left:24px;
- padding-right:24px;
- margin-top:12px;
- margin-bottom:12px;
- margin-left:0px;
- margin-right:0px;
- color:{color:bold}!important;
- }
- .notes blockquote {
- margin-left: 0!important;
- padding-left: 0;
- text-indent: 0!important;
- }
- .notes blockquote:before,
- .notes blockquote:after {
- content: none;
- margin: 0;
- padding: 0;
- text-indent: 0!important;
- }
- .note img.avatar {
- display:none;
- width: 0px;
- height: 0px;
- }
- .note-icon {
- font-size: 14px;
- margin-right: 6px;
- color: #757575;
- }
- /* POSTS: ASK */
- #ask {
- float:left;
- color:{color:text};!important;
- background-color:{color:background};
- width:454px;
- scrollbar-width: none;
- margin-top:0px;
- margin-left:1px;
- margin-bottom:25px;
- overflow-y:scroll;
- padding-left:24px;
- padding-right:24px;
- outline:solid 1px {color:border};
- border-bottom:12px solid {color:background};
- border-top:12px solid {color:background};
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- #ask b, #ask strong {
- color:{color:text}!important;
- }
- #askheader {
- box-sizing: border-box;
- outline:1px solid {color:border};
- width:460px;
- height:39px;
- text-align:left;
- line-height:39px;
- margin-bottom:1px;
- margin-left:43px;
- margin-top:6px!important
- text-align:center;
- padding-left:25px;
- padding-right:25px;
- font-size:11px;
- text-transform:normal;
- font-family: arial;
- font-weight:lighter!important;
- color:{color:bold};
- background-color:{color:background};
- }
- #askheader a {
- text-transform:capitalize!important;
- padding-left:1px;
- }
- .letterask {
- font-family:'Frank Ruhl Libre', serif;
- color:#151515;!important;
- text-decoration:none!important;
- font-style:normal!important;
- font-weight:bold!important;
- text-transform:uppercase!important;
- margin-top:6px!important
- z-index:9999!important;
- position:absolute;
- text-align:center;
- font-size:23px;
- width:39px;
- height:39px;
- line-height:39px;
- margin-left:1px;
- outline:1px solid {color:border};
- background-color:{color:background};
- padding-right:2px;
- color:{color:border};!important;
- }
- .asker {
- font-family:arial;
- font-size:11px;
- width:460px;
- font-size:11px;
- padding-right:0px;
- font-weight:bold;
- text-align:left!important;
- background-color:transparent;
- color:#000000;
- z-index:99999999999999999!important;
- -moz-transition-duration:0.6s;
- -webkit-transition-duration:0.6s;
- -o-transition-duration:0.6s;
- }
- .asker a {
- text-align:left!important;
- font-family:arial;
- font-size:11px;
- width:460px;
- font-weight:bold;
- margin-bottom:0px!important;
- top:-45px!important;
- background-color:transparent;
- z-index:99999999999999999999999!important;
- }
- .asker a:hover {
- text-shadow:
- -1px -1px 0 {color:border},
- 1px -1px 0 {color:border},
- -1px 1px 0 {color:border},
- 1px 1px 0 {color:border};
- }
- #response {
- margin-top:25px!important;
- }
- #response h2 {
- margin-bottom:6px!important;
- word-wrap: break-word;
- white-space: pre-wrap;
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- word-wrap: break-word;
- overflow: auto;
- position:relative;
- z-index:15;
- background-color: {color:background};
- outline:1px solid {color:border};
- margin-left:1px;
- margin-right:1px;
- font-weight:bold;
- padding-left:25px;
- padding-right:25px;
- margin-top:1px!important;
- margin-bottom:12px!important;
- font-family:monospace;
- letter-spacing:0.75px;
- word-spacing:-3px!important;
- font-size:8.4px;
- text-shadow: 0px 0px 1px {color:headers};
- text-transform:uppercase;
- text-align:left;
- padding-top:8px;
- padding-bottom:8px;
- text-align:justify;
- outline:1px solid {color:border};
- white-space: pre-wrap;
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- word-wrap: break-word;
- }
- #response::after {
- content: "";
- clear: both;
- display: table;
- margin-top:-8px!important;
- }
- </style>
- </head>
- <body>
- <!-- CONTENT: TOP BAR -->
- <div id="container">
- <div class="top-bar">
- <div class="top-bar-content">
- <a href="/" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px; color:{color:italic};">home</span> Home / Refresh
- </a>
- <a href="/ask" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px; color:{color:bold};">mail</span> Message
- </a>
- <a href="{text:Rules URL}" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px; color:{color:italic};">menu</span> Regulations
- </a>
- <a href="#" id="aesthetic" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px; color:{color:bold};">groups</span> Muse List
- </a>
- <a href="https://iniziare.tumblr.com/" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px; color:{color:italic};">description</span> Theme Credit
- </a>
- <!-- CONTENT: MUSES -->
- <div id="theme-menu">
- <!-- IF YOU WANT TO ADD ANOTHER MUSE, SIMPLY COPY ONE OF THESE LINES, AND PASTE IT WHEREVER YOU WANT IT TO APPEAR IN THE LIST. IT'S AS SIMPLE AS THAT! -->
- <a href="/LINK">Nicholas D. Wolfwood</a>
- <a href="/LINK">Kazuhira Miller</a>
- <a href="/LINK">Big Boss</a>
- <a href="/LINK">Claude von Riegan</a>
- <a href="/LINK">Balthier</a>
- <a href="/LINK">Spike Spiegel</a>
- <a href="/LINK">Kaedehara Kazuha</a>
- <a href="/LINK">Pantalone</a>
- <a href="/LINK">Maruki Takuto</a>
- <a href="/LINK">Suzaku Kururugi</a>
- </div id="theme-menu">
- <!-- CONTENT: SIDEBAR -->
- <div id="sidebar">
- <div id="sidebarheader">{text:Header}
- <span style="color:#ffffff; font-size:8px; vertical-align: 10%;"</span>
- {text:Subheader}</div>
- <div id="sidebartext">
- {Description}
- </div>
- <div class="pagination">
- {block:PreviousPage}
- <a href="{PreviousPage}" class="pagination-button prev">Return</a>
- {/block:PreviousPage}
- {block:NextPage}
- <a href="{NextPage}" class="pagination-button next">Continue</a>
- {/block:NextPage}
- {block:PermalinkPagination}
- {block:PreviousPost}
- <a href="{PreviousPost}" class="pagination-button prev">Return</a>
- {/block:PreviousPost}
- {block:NextPost}
- <a href="{NextPost}" class="pagination-button next">Continue</a>
- {/block:NextPost}
- {/block:PermalinkPagination}
- </div>
- </div>
- </div>
- </div>
- <!-- CONTENT: POSTS -->
- <div id="content">
- {block:Posts}
- <div class="posts" post-type="{PostType}">
- <!-- POSTS: TEXT -->
- {block:Text}
- <div id="textbody">
- {block:Title}
- <h1>{Title}</h1>
- {/block:Title}
- <div id="wrap">
- {Body}
- </div id="wrap">
- </div id="textbody">
- {/block:Text}
- <!-- POSTS: PHOTO/SET -->
- {block:Photo}
- <div class="psingle">
- {LinkOpenTag}
- <img src="{PhotoURL-HighRes}">
- {LinkCloseTag}
- </div>
- {block:Caption}
- <div id="pcaption">
- {Caption}
- </div id="pcaption">
- {/block:Caption}
- {/block:Photo}
- {block:Photoset}
- {Photoset}
- {block:Caption}
- <div id="pcaption">
- {Caption}
- </div id="pcaption">
- {/block:Caption}
- {/block:Photoset}
- <!-- POSTS: ASK -->
- {block:Answer}
- <div class="letterask" style="font-weight:bold;">?</div class="letterask">
- <div id="askheader">
- <b>Curiosities, you say?</b> <span style="font-weight:bold; color:{color:text}!important;">{Asker} is inquiring:</span>
- </div id="askheader">
- <div id="ask">
- {Question}
- </div id="ask">
- <div class="asker">
- </div class="asker">
- <div id="response">
- <div id="wrap"><span>{Answer}</span></div id="wrap">
- </div id="response">
- {/block:Answer}
- <!-- POSTS: AUDIO -->
- {block:Audio}
- <!-- audio ------------------------------------------------------------>
- <div class="audiowrap">
- <div class="audio">
- {block:AudioPlayer}
- <div class="player">{AudioPlayerWhite}</div>
- {/block:AudioPlayer}
- <div class="track">
- <div class="h">
- {block:Artist}<b>{Artist}:</b></span>{/block:Artist} {block:TrackName}{TrackName}{/block:TrackName}
- </div>
- </div>
- </div>
- </div>
- {/block:Audio}
- {block:Caption}
- {Caption}
- {/block:Caption}
- <!-- POSTS: PERMALINK -->
- {block:Date}
- <div class="permalink">
- <span style="color:#ffffff!important;font-weight:bold!important;">Date:</span> <a href="{Permalink}">
- {DayOfMonthWithZero}/{MonthNumberWithZero}/{ShortYear}
- </a>
- <a href="{Permalink}">
- {NoteCount} <span style="text-transform:lowercase!important; font-weight:bold!important; color:#fff;">notes</span>
- </a>
- <a href="{ReblogURL}" target="_blank" title="Reblog"><span class="material-icons" style="float:right; margin-top:10px; margin-right:0px; font-size:15px!important;">repeat</span>
- </div class="permalink">
- {/block:Date}
- {block:HasTags}
- <div class="tags">
- <span style="color:#ffffff!important; font-weight:bold!important;">Tagged with: </span>
- {block:Tags}
- <a href="{TagURL}" init-tags>#{Tag} </a>
- {/block:Tags}
- </div class="tags">
- {/block:HasTags}
- <!-- POSTS: NOTES -->
- {block:PostNotes}
- <div id="notes">
- <div class="note">
- {PostNotes}
- </div class="note">
- </div id="notes">
- <br>
- {/block:PostNotes}
- <!-- EXTRA: HIDE VIA/SOURCE IN POSTS -->
- {block:ContentSource}<!-- {SourceURL}
- {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- <!-- {block:NoRebloggedFrom}
- {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
- {/block:NoRebloggedFrom} -->
- </div class="posts" post-type="{PostType}" posts-selector>
- {/block:Posts}
- </div id="content2">
- </div id="content">
- </div id="container">
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment