Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!-- (BASE) THEME BY SAE (INIZIARE) -->
- <!-- UNRELEASED; DO NOT COPY/TAKE ANYTHING FROM THIS CODE PLEASE -->
- <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>
- <!--✻✻✻✻✻✻ npf audio player by @glenthemes ✻✻✻✻✻✻-->
- <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 type="text/javascript">
- $(document).ready(function(){
- $('#ask_form').before('My askbox is available to anyone and everyone, no matter the nature of your inquiry, IC or OOC. <b>ANONYMOUS WILL REMAIN ENABLED</b> and if you choose to make use of the feature, that is your right and <b>I WILL NOT JUDGE YOU FOR IT.</b> In regards to theme inquiries, never hesitate no matter what it is. I promise, I do not bite, and I am always very happy to help!');
- });
- </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: 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">
- <!--
- NPF images fix v3.0 by @glenthemes [2021]
- 💌 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>
- <!-- META LINES -->
- <meta name="image:Sidebar" content=""/>
- <meta name="color:Background" content="#000000"/>
- <meta name="color:Border" content="#191919"/>
- <meta name="color:Text" content="#c6c6c6"/>
- <meta name="color:Links" content=""/>
- <meta name="color:Links Hover" content=""/>
- <meta name="color:Bold" content="#555555"/>
- <meta name="color:Tags" content ="#555555"/>
- <meta name="color:Italic" content="#ffffff"/>
- <meta name="color:Permalinkbar" content="#0b0b0b"/>
- <meta name="color:Permalinktext" content="#ffffff"/>
- <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">
- /* Rules for sizing the icon. */
- .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; }
- /* Rules for using icons as black on a light background. */
- .material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
- .material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
- /* Rules for using icons as white on a dark background. */
- .material-icons.md-light { color: rgba(255, 255, 255, 1); }
- .material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
- .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%;
- }
- * {
- text-indent: 0 !important;
- }
- /* FOUNDATION */
- body {
- 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;
- }
- ::selection {
- background-color: {color:permalink}; /* Gold background */
- color: #fff; /* Black text */
- }
- /* For better browser compatibility */
- ::-moz-selection {
- background-color: {color:permalink}; /* Gold background for Firefox */
- color: {color:#fff}; /* Black text for Firefox */
- }
- #container {
- z-index:9999;
- left: 50%;
- margin-left:-475px;
- margin-top:0px;
- position:fixed;
- width:896px;
- height:100%;
- -webkit-box-shadow: 0px 0px 48px 20px {color:background};
- -moz-box-shadow: 0px 0px 48px 20px {color:background};
- box-shadow: 0px 0px 48px 20px {color:background};
- }
- /* FONT-RELATED */
- b, bold, strong {
- color:{color:bold};
- margin-right:1px;
- margin-left:1px;
- }
- em, i, italic {
- color:#d0d0d0!important;
- }
- 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:1px solid {color:border};
- 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;
- }
- h2 b, h2 strong {
- color:#ffffff;
- }
- h3 {
- padding-left:0px;
- padding-right:0px;
- margin-top:1px;
- outline:1px solid {color:border};
- height:25px;
- line-height:23px;
- color:{color:bold};
- }
- /* 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:25px!important;
- margin-top:-10px!important;
- letter-spacing:0px!important;
- }
- .top-bar-content span {
- color:#3c3c3c;
- }
- #theme-menu {
- display: none; /* Hidden by default */
- position: absolute; /* Positioned relative to the link */
- border: 1px solid {color:border};
- z-index: 1000;
- margin-top:7px!important;
- width:250px!important;
- }
- #theme-menu button {
- background-color:{color:permalinkbar};
- color:{color:text};
- margin-bottom:-1px;
- margin-right:-1px;
- margin-left:-1px;
- font-size:11px;
- font-family:arial;
- font-weight:bold;
- height:35px;
- line-height:30px;
- border:1px solid {color:border};
- }
- #theme-menu button:hover {
- color:#ffffff;
- }
- /* SIDEBAR */
- #sidebar {
- position: absolute;
- width: 55px;
- height: 100vh;
- margin-top:36px;
- left: -9px;
- background-color: {color:background};
- border-right: 1px solid {color:border};
- border-left: 1px solid {color:border};
- padding: var(--gap3) 0;
- align-items: flex-start;
- }
- #sidebarheader {
- padding: 18px;
- writing-mode: vertical-lr;
- rotate: 180deg;
- font-weight: 700;
- letter-spacing: 2px;
- white-space: nowrap;
- font-size: 1.1em;
- color: #796b61;
- }
- #sidebartext {
- padding: 18px;
- writing-mode: vertical-lr;
- rotate: 180deg;
- letter-spacing: 1px;
- white-space: nowrap;
- font-weight: bold;
- font-size: 10px;
- text-transform: uppercase;
- }
- #icons {
- display: flex;
- flex-direction: column;
- align-items: center;
- transform: scale(0.7)!important;
- padding-top:10px!important;
- }
- #icons i {
- margin-top: 5px;
- }
- .sideimage {
- margin-top:45px;
- width: 275px;
- height: auto;
- }
- #side {
- position: absolute;
- width: 275px;
- height: 100vh;
- margin-left: 48px;
- margin-top: -8px;
- outline: 1px solid {color:border};
- background-color: {color:background};
- padding: 0px;
- }
- #sidelinks {
- width: 225px;
- background-color: #4e5e75;
- outline: 0px solid {color:border}!important;
- padding-left: 25px;
- padding-right: 25px;
- margin-top: -6px;
- font-weight: bold;
- letter-spacing: 0px;
- white-space: nowrap;
- font-size: 11px;
- padding-top: 8px;
- padding-bottom: 5px;
- text-transform: uppercase;
- text-align: center;
- }
- #sideheader {
- outline: 1px solid {color:border};
- background-color: {color:permalinkbar};
- width:275px;
- height:35px;
- font-weight: 700;
- letter-spacing: 0px;
- white-space: nowrap;
- text-align:center;
- line-height:35px;
- font-size: 1.1em;
- color#ffffff;
- margin-top:-5px!important;
- }
- .scrollable-container {
- width: 275px; /* Fixed width for the container */
- height: 66px; /* Restrict to 2 rows of 33px (33px x 2 rows = 66px total) */
- overflow-y: scroll; /* Enable vertical scrolling */
- border-top: 1px solid {color:border}; /* Single border on top of the container */
- border-bottom: 1px solid {color:border}; /* Single border at the bottom of the container */
- background-color: {color:permalinkbar}; /* Dark background */
- color: #ccc; /* Light text color */
- padding: 0;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- position: relative; /* To position the scrollbar track relative to the container */
- /* Firefox-specific scrollbar styling */
- scrollbar-width: thin; /* Thin scrollbar */
- scrollbar-color: {color:border} {color:permalinkbar}; /* Thumb color and track color for Firefox */
- }
- }
- /* Style the scrollbar for Webkit browsers (Chrome, Safari, Edge) */
- .scrollable-container::-webkit-scrollbar {
- width: 8px; /* Set the width of the scrollbar */
- height: 8px; /* Set the height for horizontal scrollbar (if used) */
- }
- /* Style the track of the scrollbar for Webkit browsers */
- .scrollable-container::-webkit-scrollbar-track {
- background: {color:permalinkbar}; /* Background color of the track (same as the container) */
- border-left: 1px solid red; /* Border on the left of the track (set to red for visibility) */
- height: 66px; /* Set the height of the track to the container height */
- position: absolute; /* Position it over the row content */
- right: 0; /* Align it to the right side of the container */
- top: 0; /* Start from the top of the container */
- width: 8px; /* Set width of track to match the scrollbar width */
- }
- /* Style the scrollbar thumb for Webkit browsers */
- .scrollable-container::-webkit-scrollbar-thumb {
- background-color: {color:border}; /* Thumb color */
- border-radius: 0; /* Remove rounded edges, make the thumb square */
- }
- /* Style the scrollbar for Firefox */
- .scrollable-container {
- scrollbar-width: thin; /* Thin scrollbar */
- scrollbar-color: {color:border} {color:permalinkbar}; /* Thumb color and track color for Firefox */
- }
- /* Box styling */
- .box {
- display: flex;
- justify-content: space-between;
- height: 33px !important; /* Ensure each row height is 33px */
- width: 100%;
- box-sizing: border-box;
- flex-shrink: 0; /* Prevent shrinking */
- }
- .box a {
- text-decoration: none !important;
- font-weight: bold;
- color:{color:text};
- }
- /* Remove borders on the top and bottom of each box */
- .box:not(:first-child) {
- border-top: 1px solid {color:border}; /* Border only at the top of each box except the first */
- }
- /* Column styling */
- .column {
- width: 50%; /* Each column takes up 50% of the container width */
- text-align: center;
- color: #aaa;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- display: flex; /* Use flex to align content */
- align-items: center; /* Vertically center content */
- justify-content: center; /* Horizontally center content */
- box-sizing: border-box; /* Prevent box-sizing issues */
- }
- /* Left column (remove the right border overlap with negative margin) */
- .column:first-child {
- border-right: 1px solid {color:border}; /* Right border of the first column */
- margin-right: -1px; /* Shift the column to remove the double border */
- }
- /* Right column (remove the left border overlap) */
- .column:last-child {
- border-left: 0px solid {color:border}; /* Left border of the second column */
- margin-left: -1px; /* Shift the column to remove the double border */
- }
- #sidetext {
- position: relative;
- margin-top: -5px;
- padding: 25px;
- text-align: justify;
- text-align-last: center;
- }
- /* POSTS: GENERAL */
- #content {
- position:absolute;
- height:94vh;
- overflow:scroll;
- scrollbar-width: none;
- top:36px;
- margin-left:375px!important;
- }
- .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:left;
- scrollbar-width: none;
- border:1px solid {color:border};
- }
- .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: GENERAL */
- .pagination {
- display: flex; /* Align buttons horizontally */
- width: 275px; /* Total container width */
- border-top: 1px solid {color:border}; /* Optional: Add border around the container */
- border-bottom: 1px solid {color:border}; /* Optional: Add border around the container */
- background-color: {color:permalinkbar}; /* Optional: Add background to the container */
- box-sizing: border-box;
- height: 33px; /* Ensure consistent height */
- }
- .pagination-button {
- flex: 1; /* Each button takes up 50% of the total width */
- display: flex;
- justify-content: center;
- align-items: center;
- text-decoration: none;
- font-weight: bold;
- color: #ccc; /* Text color */
- border-right: 1px solid {color:border}; /* Add a border between the buttons */
- background-color: {color:button-background}; /* Background color for buttons */
- transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
- box-sizing: border-box;
- }
- .pagination-button:last-child {
- border-right: none; /* Remove border on the right of the last button */
- }
- .pagination-button:hover {
- background-color: {color:hover}; /* Hover background color */
- color: {color:hover-text}; /* Hover text color */
- }
- /* 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;
- }
- /* PERMALINK */
- .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:#555555;
- -moz-transition-duration:1.5s;
- -webkit-transition-duration:1.5s;
- -o-transition-duration:1.5s;
- }
- .like-b {
- position:relative;
- display:inline-block;
- height:1em;
- line-height:1em;
- overflow:hidden;
- margin-bottom:-1px;
- }
- .like-b .like_button iframe {
- position:absolute;
- top:0;
- left:0;
- bottom:0;
- right:0;
- z-index:2;
- opacity:0;
- }
- .like-b .liked + .b {
- color:inherit;
- }
- .like-b .liked + .b:after {
- content:'d';
- }
- .npf-audio-wrapper {
- border:1px solid {color:border};
- --NPF-Audio-Buttons-Size: 1.4rem;
- --NPF-Audio-Buttons-Color: #555555; /* color of play & pause buttons */
- --NPF-Audio-Buttons-Spacing: 1.3rem; /* space between buttons and song info */
- --NPF-Audio-Image-Size: 85px;
- --NPF-Audio-Image-Spacing: 0px; /* gap between player info and cover image */
- }
- .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}; /* color of audio text (optional) */
- }
- .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';
- }
- /* PERMAPAGE 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:body text};
- }
- .note li a {
- text-align:left!important;
- font-size:11px!important;
- padding-right:0px;
- font-weight:bold;
- letter-spacing:0px;
- color: {color:body text};
- }
- .more_notes_link, .more_notes_link a {
- text-align:left!important;
- color:{color:italic}!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; /* Removes the left indent */
- padding-left: 0; /* Removes any left padding */
- text-indent: 0!important; /* Ensures no text indentation */
- }
- .notes blockquote:before,
- .notes blockquote:after {
- content: none;
- margin: 0;
- padding: 0;
- text-indent: 0!important; /* Ensures no text indentation */
- }
- .note img.avatar {
- display:none;
- width: 0px;
- height: 0px;
- }
- .note-icon {
- font-size: 14px; /* Adjust to your desired size (default is 18px) */
- margin-right: 6px; /* Slightly smaller spacing to match the smaller icon size */
- color: #757575; /* Optional: keep the same color */
- }
- .custom-like-button {
- display: flex;
- align-items: center;
- gap: 8px;
- cursor: pointer;
- font-size: 18px;
- }
- .custom-like-button .like-icon {
- font-size: 18px;
- color: #ffffff; /* Grey for unliked state */
- transition: color 0.3s ease;
- }
- .custom-like-button .like-icon.liked {
- color: #ffffff; /* Red for liked state */
- }
- .custom-like-button .like-count {
- color: #333;
- font-size: 18px;
- transition: color 0.3s ease;
- }
- /* 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 strike {
- background-color: #000000;
- outline: 1px solid {color:border};
- font-family:'Frank Ruhl Libre', serif;
- color:#000000!important;
- text-decoration:none!important;
- font-style:normal!important;
- font-weight:bold!important;
- text-transform:uppercase!important;
- float:left;
- margin-top:1px;
- margin-left:1px;
- height:60px;
- width:60px;
- font-size: 48px;
- margin-right: 13px;
- position: relative;
- text-align: center;
- vertical-align: middle;
- line-height: 60px;
- text-shadow:
- -1px -1px 0 #212121,
- 1px -1px 0 #212121,
- -1px 1px 0 #212121,
- 1px 1px 0 #212121;
- }
- #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>
- <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;">home</span> Home / Refresh
- </a>
- <a href="/askbox" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px;">mail</span> Message
- </a>
- <a href="/regulations" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px;">menu</span> Regulations
- </a>
- <a href="/muses" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px;">groups</span> Muse List
- </a>
- <a href="/navigation" style="display: inline-flex; align-items: center;">
- <span class="material-icons" style="font-size: 18px; margin-right: 10px;">link</span> Navigation
- </a>
- </div>
- </div>
- <div id="sidebar">
- <div id="sidebarheader" style="color:{color:tags}">INIZIARE</div>
- <div id="sidebartext">... Rather: follow your most intense obsessions mercilessly</div>
- </div>
- <div id="side">
- <img class="sideimage" src="{image:sidebar}">
- <div id="sideheader">
- Put your extra title here, Min
- </div>
- <div id="sidetext">
- <span style="color:#3d4a4b"><b>Multimuse, as written by Sae.</b></span> Home to characters from Genshin Impact, Honkai: Star Rail, and Dragon Age. The depictions you'll find here are canon-strict, and so you can expect many analyses of all kinds here, as dissecting the characters that I write is what I'm passionate about, and what I'm here for (and to write, of course!) —— And yes, I am <i>that</i> iniziare, and though I'll release things in the future, my old archive can be found <a href="https://iniziarearchive.tumblr.com/tagged/themes" style="text-decoration:none!important; font-weight:bold;">here.</a>
- </div>
- <!-- Pagination -->
- <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">Onward</a>
- {/block:NextPage}
- {block:PermalinkPagination}
- {block:PreviousPost}
- <a href="{PreviousPost}" class="pagination-button prev">Previous Post</a>
- {/block:PreviousPost}
- {block:NextPost}
- <a href="{NextPost}" class="pagination-button next">Next Post</a>
- {/block:NextPost}
- {/block:PermalinkPagination}
- </div>
- </div>
- <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:Photo}
- {block:Photoset}
- {Photoset}
- {/block:Photoset}
- {block:Caption}
- <div id="pcaption">
- {Caption}
- </div id="pcaption">
- {/block:Caption}
- <!-- 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}
- <!-- POST INFORMATION -->
- {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="{PostSourceURL}" title="Source: {SourceURL}"><span class="material-icons" style="float:right; margin-top:10px; font-size:15px!important;">folder_open</span></a>
- <a href="{ReblogURL}" target="_blank" title="Reblog"><span class="material-icons" style="float:right; margin-top:10px; margin-right:15px; 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}
- <!-- NOTES -->
- {block:PostNotes}
- <div id="notes">
- <div class="note">
- {PostNotes}
- </div class="note">
- </div id="notes">
- <br>
- {/block:PostNotes}
- <!-- 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