Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--
- THEME BY BRU
- credits:
- google fonts,
- cappuccicons,
- aidensthemes
- yukoki,
- maziekeen,
- shythemes
- -->
- <html>
- <head>
- <title>{Title}</title>
- <meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" />
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- {block:Options}
- <meta name="color:background" content="#f6f6f6"/>
- <meta name="color:posts" content="#ffffff"/>
- <meta name="color:text" content="#11261c"/>
- <meta name="color:links" content="#56bc8a" />
- <meta name="color:tags" content="#56bc8a" />
- <meta name="color:user bg" content="#9ad7b9"/>
- <meta name="color:user text" content="#0f291c"/>
- <meta name="color:user hover" content="#bbe4d0"/>
- <meta name="color:search background" content="#fff" />
- <meta name="color:search text" content="#000"/>
- <meta name="color:borders" content="#ddd"/>
- <meta name="color:side img shadow" content="#459684"/>
- <meta name="color:sticky note bg" content="#fff"/>
- <meta name="text:border width" content="1px"/>
- <meta name="text:border radius" content="4px"/>
- <meta name="text:font size" content="16px" />
- <meta name="text:desktop description" content="Write your description here."/>
- <meta name="text:name" content="write your name"/>
- <meta name="text:tracked tag" content="write your tracked tag"/>
- <meta name="text:age" content="write your age"/>
- <meta name="text:pronouns" content="write your pronouns"/>
- <meta name="text:zodiac" content="write your zodiac"/>
- <meta name="text:country" content="write your country"/>
- <meta name="text:sexuality" content="write your sexuality"/>
- <meta name="text:watching" content="write here what you're watching."/>
- <meta name="text:listening" content="write here what you're listening."/>
- <meta name="text:reading" content="write here what you're reading."/>
- <meta name="text:playing" content="write here what you're playing."/>
- <meta name="image:background" content=""/>
- <meta name="image:sidebar" content=""/>
- <meta name="image:icon" content=""/>
- <meta name="color:night mode background" content="#0a0a0a"/>
- <meta name="color:night mode text" content="#fff"/>
- <meta name="color:night mode posts" content="#050505"/>
- <meta name="color:night mode accent" content="#fff" />
- <meta name="color:night mode borders" content="#fff" />
- <meta name="color:night mode search" content="#fff" />
- <meta name="if:Remove background image in night mode" content=""/>
- <meta name="if:full background" content=""/>
- <meta name="if:sidebar image" content=""/>
- <meta name="select:Font" content="Helvetica" title="Helvetica" />
- <meta name="select:Font" content="Roboto" title="Roboto" />
- <meta name="select:Font" content="Favorit" title="Favorit" />
- <meta name="select:Font" content="Calluna" title="Calluna" />
- <meta name="select:Font" content="Fairwater" title="Fairwater" />
- <meta name="select:Font" content="Source Code Pro" title="Source Code Pro" />
- <meta name="select:Font" content="Nunito" title="Nunito"/>
- {/block:Options}
- {NewPostStyles}
- <script>
- const themed = localStorage.getItem('night-mode');
- if (themed === "enabled") {
- sessionStorage.setItem('night-mode', 'enabled');
- document.documentElement.classList.add('night-mode-theme');
- }
- </script>
- <script src="https://static.tumblr.com/svdghan/gFJrolu7g/daynight.js"></script>
- <!--- fonts ---->
- <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=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
- <script src="//pull.cappuccicons.com/cpf.js"></script>
- <script src="//cdn.jsdelivr.net/npm/jquery@latest/dist/jquery.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("[title]").style_my_tooltips();
- });
- })(jQuery);
- </script>
- <!--yukoki sticky note scripts-->
- <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
- <script src="//code.jquery.com/jquery-1.10.2.js"></script>
- <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
- <script>
- $(function() {
- $( "#stickynote1" ).draggable({ handle: "div.dragstickynote1" });
- $(".closestickynote1").click(function(){$("#stickynote1").fadeOut();});
- $( "#stickynote2" ).draggable({ handle: "div.dragstickynote2" });
- $(".closestickynote2").click(function(){$("#stickynote2").fadeOut();});
- });
- </script>
- <!--yukoki sticky note scripts end-->
- <style>
- @import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900');
- * {
- box-sizing: border-box;
- }
- :root {
- --background-image: url({image:background});
- --background: {color:background};
- --accent: {AccentColor};
- --text: {color:text};
- --borders: {color:borders};
- --spacing: 1rem;
- --border-width: {text:border width};
- --border-radius: {text:border radius};
- --posts: {color:posts};
- --tags: {color:tags};
- --links: {color:links};
- --sidebar-links: {color:sidebar links};
- --search-background: {color:search background};
- --search-text: {color:search text};
- --headerimage: url({HeaderImage});
- --invert: invert(0);
- --night-mode-accent: {color:night mode accent};
- }
- .night-mode-theme {
- --background: {color:night mode background};!important;
- --accent: var(--night-mode-accent);
- {block:ifRemoveBackgroundImageInNightMode}
- --background-image: url('');
- {/block:ifRemoveBackgroundImageInNightMode}
- --text: {color:night mode text};
- --posts: {color:night mode posts};
- --invert: invert(1);
- --links: var(--night-mode-accent);
- --tags: var(--night-mode-accent);
- --search-background:{color:night mode search};
- --borders:{color:night mode borders};
- }
- body {
- font-family: {select:Font}, sans-serif;
- font-size: clamp(.92rem, {text:font size}, 20px);
- margin: 0;
- height: 100vh;
- color: var(--text);
- background: var(--background) var(--background-image) center center fixed;
- {block:iffullbackground}
- background-size: cover;
- {/block:iffullbackground}}
- a {
- color: {color:links};
- }
- a:hover {
- color:{color:user hover};
- transition: 0.3s;
- text-decoration:none!important;
- }
- /*GENERAL: SELECTION */
- ::selection {
- background: {color:links};
- color: {color:text};
- }
- ::-moz-selection {
- background: {color:links};
- color: {color:text};
- }
- /* SCROLLBAR */
- ::-webkit-scrollbar {
- width:0px;
- height:0px;
- }
- ::-webkit-scrollbar {
- background-color:rgb(255,255,255); /* background color */
- }
- ::-webkit-scrollbar-track {
- border:8px solid rgb(255,255,255); /* background color */
- background-color:rgb(230,230,230); /* light border color */
- }
- ::-webkit-scrollbar-thumb {
- border:8px solid rgb(255,255,255); /* background color */
- background-color:rgb(144,144,144); /* dark border color */
- min-height:0px;
- min-width:0px;
- }
- /* --- TOOLTIPS --*/
- #s-m-t-tooltip {
- z-index: 9999;
- background: #fff;
- font-size: 14px;
- padding:10px;
- font-family:'Nunito', sans-serif;
- line-height: 13px;
- letter-spacing: 1px;
- border-radius:5%;
- background-color:{color:user hover};
- color:{color:user text};
- moz-border-radius-bottomright: 5px;
- border-bottom-right-radius: 5px;
- -moz-border-radius-topleft: 5px;
- border-top-left-radius: 5px;
- -moz-border-radius-bottomleft: 5px;
- border-bottom-left-radius: 5px;
- -moz-border-radius-topright: 5px;
- border-top-right-radius: 5px;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- text-transform: uppercase;
- font-weight:bold;
- max-width: 150px;
- word-wrap: break-word;
- display: block;
- margin: 24px 14px 7px 12px;
- }
- /*---- sticky notes -------*/
- #stickynote1 {
- width: 300px;
- margin-bottom: 20px;
- position: fixed;
- z-index: 100000000000;
- top: 30px; /** position from top of screen **/
- left: 50px; /** position from left of screen **/
- }
- #stickynote2 {
- width: 300px;
- margin-bottom: 20px;
- position: fixed;
- z-index: 100000000000;
- top: 240px; /** position from top of screen **/
- left: 40px; /** position from left of screen **/
- }
- #stickynote1, #stickynote2 {
- border-radius:10px 10px 10px 10px;
- color:{color:user text};
- box-shadow: 2px 2px {color:side img shadow};
- width: 300px; /** width of your sticky note **/
- background-color: {color:sticky note bg}; /** background colour **/
- } .dragstickynote1, .dragstickynote2 {
- font-family: 'Nunito', sans-serif;
- font-size: 12px;
- font-weight:bold;
- border-bottom:1px solid {color:borders};
- border-radius:10px 10px 0 0;
- color:{color:user text};
- text-transform: uppercase;
- letter-spacing: 1px;
- padding: 10px;
- background-color: {color:user bg};
- } .closestickynote1, .closestickynote2 {
- cursor: pointer;
- margin-left: 268px;
- width: 32px;
- height: 34px;
- line-height: 32px;
- font-family: arial;
- font-size: 10px;
- position: absolute;
- text-align: center;
- float: right;
- margin-top:1px;
- }
- .stickynotecontent {
- padding: 10px;
- font-family: 'Nunito', sans-serif;
- font-size: 13px!important;
- margin-left:10px;
- }
- .stickynotecontent b,strong {
- color: {color:user text};
- font-weight:600;
- font-style:bold;
- }
- .stickynotecontent i,em {
- color: #666666; /** colour of italic text **/
- }
- .stickynotecontent a {
- text-decoration: underline;
- color: #666666; /** colour of linked text **/
- }
- .stickynotecontent a:hover {
- color: #aaaaaa; /** colour of hovered linked text **/
- }
- #stickynote1, #stickynote2 li {
- list-style-type: circle;
- margin-bottom:20px;
- }
- /*---- sticky notes -------*/
- /*---------- masonry code ------*/
- .masonry-navigation {
- width: 100%;
- border-bottom: 1px solid #e2e2e2;
- margin-bottom:15px;
- }
- .masonry-navigation:last-child {
- border:none;
- }
- .masonry-navigation-item.one-column {
- width: 100%;
- padding: 0 5px;
- margin-bottom: 10px;
- }
- .masonry-navigation-item.one-column ul {
- display: flex;
- flex-wrap: wrap;
- margin: 0;
- padding: 0;
- }
- /* if you have any problem with one colum lists (ul li) you edit here */
- .masonry-navigation-item.one-column ul li {
- margin: 4px 15px;
- padding: 0;
- }
- /* if they don't display two columns correctly, try to decrease the value on width: 240px */
- .masonry-navigation-item.two-columns {
- width: 240px;
- padding: 0 5px;
- margin-bottom: 10px;
- }
- /* if they don't display three columns correctly, try to decrease the value on width: 160px */
- .masonry-navigation-item.three-columns {
- width: 160px;
- padding: 0 5px;
- margin-bottom: 10px;
- }
- /* edit height: 215px to adjust the box height if you add the class scroll in the html */
- .masonry-navigation-item.scroll {
- height:215px;
- overflow-y: scroll;
- }
- /* maziekeen's theme 221 - MASONRY NAVIGATION CSS PART */
- article a {
- text-decoration: none;
- }
- article a:hover {
- text-decoration: underline;
- }
- article iframe, .tumblr_video_container {
- max-width: 100%;
- }
- .blog-title {
- font-family: 'Source Code Pro', sans-serif;
- font-size:18px;
- font-weight:bold;
- letter-spacing:-1px;
- text-transform:normal;
- text-shadow: 0.5px 0.5px;
- }
- main, .pagination {
- display: flex;
- flex-wrap: wrap;
- align-items: flex-start;
- justify-content: space-around;
- }
- main {
- max-width:1100px;
- margin:auto;
- }
- article {
- box-shadow: 5px 5px {color:side img shadow};
- border-radius:20px 20px 20px 20px;
- }
- article, .pagination {
- width: 100%;
- position:relative;
- max-width: 540px;
- margin: calc(var(--spacing) * 4) auto;
- border: var(--border-width) solid var(--borders);
- border-radius: var(--border-radius);
- background:var(--posts);
- }
- aside .pagination {
- margin: var(--spacing) auto auto auto;
- }
- article img {
- max-width: 100%;
- }
- .link-container {
- padding: var(--spacing);
- margin:var(--spacing);
- border:var(--border-width) solid var(--borders);
- border-radius: var(--border-radius);
- }
- .caption:empty, p:empty {
- display:none;
- }
- .reblog-header a {
- display: flex;
- align-items:center;
- }
- .reblog-header img {
- padding-right: .4rem;
- max-height: 1.4rem;
- }
- .contained :is(header, footer, main) {
- width: 100%;
- max-width: 1000px;
- margin: 1rem auto;
- background: var(--background);
- border: var(--border-width) solid var(--borders);
- }
- .contained header {
- margin-bottom: 0;
- padding: var(--spacing);
- }
- .contained main {
- height: 70vh;
- overflow: auto;
- }
- .contained article, .contained .pagination {
- max-width: 500px;
- }
- .grid main {
- max-width: 98%;
- }
- .grid section {
- column-count: 2;
- break-inside: avoid;
- grid-gap: calc(var(--spacing) * 2);
- margin-bottom:var(--spacing);
- }
- .grid article {
- display: inline-block;
- max-width: calc(100% - var(--spacing));
- margin: var(--spacing) 0;
- }
- .original-post, .reblog-header, .tags, .post-info, .pagination, .quote-container, .replies, .question {
- padding: var(--spacing);
- }
- .reblog-header a {
- background:{color:user bg};
- color:{color:user text};
- width:auto;
- padding:10px;
- border-radius:10px 10px 10px 10px;
- font-weight:bold;
- }
- .reblog-header a:hover {
- color:{color:user hover};
- }
- .reblog-content p, .reblog-content h2, .reblog-content h1 {
- margin-left: var(--spacing);
- margin-right: var(--spacing);
- }
- .quote-container, .replies, .question {
- border: var(--border-width) solid var(--borders);
- margin: var(--spacing);
- }
- .description, aside h2 {
- padding: calc(var(--spacing) /2) 0;
- margin: 0;
- }
- #search-form input {
- padding: calc(var(--spacing) / 2);
- width:100%;
- background:var(--search-background);
- margin: calc(var(--spacing) /2) 0 0 0;
- border:var(--border-width) solid var(--borders);
- border-radius:var(--border-radius);
- color:var(--search-text);
- }
- ::placeholder {
- text-transform:lowercase;
- color:var(--search-text);
- }
- .post-info, .like-and-reblog, .contained {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-between;
- }
- .like-and-reblog a {
- color:{color:user text}!important;
- }
- .post-info {
- background:{color:user bg};
- color:{color:user text};
- border-radius:0 0 10px 10px;
- }
- .post-info a {
- color:{color:user text};
- justify-content:space-between;
- padding:10px;
- }
- .post-info a:hover {
- color:{color:user hover};
- transition: 0.3s;
- background:{color:background};
- padding:10px;
- border-radius:10px 10px 10px 10px;
- justify-content:space-between;
- }
- .pinned {
- font-weight:bold;
- color:var(--accent);
- }
- .pinned {
- font-weight:bold;
- text-transform:uppercase;
- font-family:'Source Code Pro';
- font-size:10px;
- letter-spacing:-1px;
- color:{color:user text};
- border:1px solid {color:borders};
- background:{color:user bg};
- border-radius:10px 10px 0 0;
- }
- .pinned-default {
- padding:var(--spacing);
- }
- .like-and-reblog .reblog_button, .like-and-reblog .like_button:not(.liked) {
- filter: var(--invert);
- }
- aside {
- width: calc(30% - calc(var(--spacing) * 2));
- height:100vh;
- position: sticky;
- top: 0;
- }
- .sidebar-container {
- background: var(--posts);
- margin: calc(var(--spacing) * 4) auto 0 auto;
- border: var(--border-width) solid var(--borders);
- padding:var(--spacing);
- max-width: 300px;
- border-radius: var(--border-radius);
- }
- .sidebar-style-dash {
- padding:0;
- text-align:center;
- }
- .sidebar-style-dash .pagination {
- border:0 solid transparent;
- }
- .sidebar-style-dash :is(h2, div){
- padding:var(--spacing);
- }
- .sidebar-style-dash h2 + div, .sidebar-style-dash div + div {
- padding-top:0;
- }
- .sidebar-style-bubble {
- padding: 0;
- border: 0;
- background:transparent;
- }
- .user-sidebar a {
- margin-left:5px;
- font-family: "Nunito", sans-serif;
- margin-bottom:50px;
- padding:10px;
- border-radius:80px 80px 80px 80px;
- text-decoration:none;
- font-size:16px;
- color:{color:user text};
- background:{color:user bg};
- font-size:16px;
- text-transform:uppercase;
- font-weight:bold;
- letter-spacing:-1px;
- box-shadow: 2px 2px {color:user hover};
- }
- .user-sidebar a:hover {
- font-family: "Nunito", sans-serif;
- margin-bottom:50px;
- padding:10px;
- border-radius:80px 80px 80px 80px;
- text-decoration:none;
- font-size:16px;
- color:{color:user text};
- background:{color:user hover};
- font-size:16px;
- text-transform:uppercase;
- font-weight:bold;
- letter-spacing:-1px;
- transition: 0.3s;
- box-shadow: 0 2px 4px 0 {color:user hover};
- }
- .avatar-user {
- background:{color:user bg};
- padding:10px;
- border-radius:10px 10px 0px 0px;
- width:100%;
- margin-top:30px;
- margin-bottom:-20px;
- }
- .bubble {
- display:flex;
- flex-wrap:wrap;
- align-items:center;
- width:320px;
- }
- .bubble-desc {
- border:var(--border-width) solid var(--borders);
- padding: var(--spacing);
- width:320px!important;
- background:var(--posts);
- border-radius:0 0 10px 10px;
- border-top-left-radius:0;
- margin:var(--spacing) 0;
- text-align:center;
- box-shadow: 0 1px 1px 0 {color:user hover};
- }
- .sidebar-style-bubble img {
- width:48px;
- border-radius:50%;
- margin-right:.4rem;
- }
- {block:ShowHeaderImage}
- {block:ShowAvatar}
- .header-image + * {
- margin-top:24px;
- }
- {/block:ShowAvatar}
- {/block:ShowHeaderImage}
- section {
- width: 70%;
- }
- .contained section {
- width:60%;
- }
- .reblog_button {
- margin-right: .6rem;
- }
- .like_button {
- height:20px;
- }
- .pages-container, .nav-container {
- margin: calc(var(--spacing) /4) 0;
- }
- .pages-container a, .nav-container a, .pagination a, .tags a {
- display: inline-block;
- margin-right: .4rem;
- text-decoration:none;
- }
- .nav-container {
- width:400px!important;
- text-align:center;
- }
- .nav-container a {
- text-align:center;
- font-size:10px;
- text-transform:lowercase;
- color:{color:user text};
- background:{color:user bg};
- justify-content:space-between;
- padding:7px;
- border-radius:10px;
- box-shadow: 2px 2px {color:side img shadow};
- }
- .nav-container a:hover {
- font-family: "Nunito", sans-serif;
- border-radius:10px;
- text-decoration:none;
- font-size:10px;
- color:{color:user text};
- background:{color:user hover};
- transition: 0.3s;
- }
- .pagination a {
- text-align:center;
- font-size:10px;
- text-transform:lowercase;
- color:{color:user text};
- background:{color:user bg};
- justify-content:space-between;
- padding:7px;
- border-radius:10px;
- box-shadow: 2px 2px {color:side img shadow};
- }
- .pagination a:hover {
- font-family: "Nunito", sans-serif;
- padding:7px;
- border-radius:10px;
- text-decoration:none;
- font-size:10px;
- color:{color:user text};
- background:{color:user hover};
- transition: 0.3s;
- }
- .pagination {
- border:none;
- width:320px;
- background:transparent;
- }
- .sidebar-image {
- width:320px;
- margin-top:65px;
- margin-bottom:-30px;
- padding:0px;
- border-radius:10px 10px 10px 10px;
- }
- .sidebar-image img {
- border-radius:10px 10px 10px 10px;
- margin-left:0px;
- padding:10px;
- background:{color:user bg};
- box-shadow: 10px 10px {color:side img shadow};
- }
- aside a {
- color: var(--sidebar-links);
- }
- a.asker {
- font-weight:bold;
- text-transform:lowercase;
- vertical-align:middle;
- margin-left:10px;
- }
- .question img {
- width:35px;
- vertical-align:middle;
- border-radius:100%;
- }
- .question p {
- width:auto;
- color:{color:user text};
- margin-left:50px;
- margin-top:0px;
- background:{color:user bg};
- padding:10px;
- border-radius:0px 10px 10px 10px;
- }
- .tags a {
- color: var(--tags);
- }
- .pages-container a {
- font-weight:bold;
- color:var(--accent);
- }
- .reblogs {
- padding:10px;
- }
- .reblogs a, .caption a {
- color:var(--accent);
- }
- .tumblr_audio_player {
- width: 100%;
- }
- ol.notes {
- list-style-type:none;
- padding:10px;
- margin-left:10px;
- }
- ol.notes a {
- margin-left:10px;
- }
- ol.notes img.avatar {
- border-radius:100%;
- }
- @media only screen and (max-width: 1100px) {
- main, .contained main, section {
- width: 80%;
- height: auto;
- }
- aside, .sidebar-container{
- width: 100%;
- max-width:100%;
- height: auto;
- position:relative;
- }
- .sidebar-container {
- max-width:90%;
- margin:var(--spacing) auto;
- }
- .bubble-desc, .nav-container {
- width:100%!important;
- }
- .bubble {
- display:flex;
- flex-wrap:wrap;
- align-items:center;
- width:100%;
- }
- .sidebar-image {
- display:none;
- }
- article {
- max-width:90%;
- margin: var(--spacing) auto;
- }
- .grid section {
- column-count: 1;
- }
- }
- .screen-reader {
- border: 0;
- clip: rect(1px, 1px, 1px, 1px);
- clip-path: inset(50%);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: 1px;
- word-wrap: normal !important;
- }
- #daynight-toggle {
- cursor:pointer;
- background:;
- position:fixed;
- top:var(--spacing);
- left:var(--spacing);
- z-index:2;
- height:2rem;
- width:2rem;
- border-radius:50%;
- background:white;
- display:flex;
- border:var(--border-width) solid var(--borders);
- flex-wrap:wrap;
- justify-content:center;
- align-items:center;
- }
- #daynight-toggle:before {
- content:'☀';
- }
- #daynight-toggle.night-mode-toggle:before {
- content:'';
- width:1rem;
- height:1rem;
- transform:translate(-.32rem, -.32rem);
- border-radius: 50%;
- box-shadow: .32rem .32rem 0 0 black;
- }
- /*---- CREDIT -----*/
- #credit {
- position: fixed;
- bottom: 20px;
- right: 20px;
- font-size: 20px;
- text-decoration:none;
- }
- #credit a:hover {
- background:{color:hover};
- border-radius:10px;
- -webkit-transition: all 0.3s;
- -moz-transition: all 0.3s;
- -ms-transition: all 0.3s;
- -o-transition: all 0.3s;
- transition: all 0.3s;
- color:{color:text};
- }
- #credit a {
- text-decoration:none;
- }
- {CustomCSS}
- </style>
- </head>
- <body class="default {block:homepage}home{/block:homepage}{block:tagpage}tag{/block:tagpage}{block:searchpage}search{/block:searchpage}{block:submitpage}submit-{/block:submitpage}{block:AskPage}ask{/block:AskPage}-page">
- <button id="daynight-toggle"><span class="screen-reader">toggle day and night mode</span></button>
- <div id="stickynote1">
- <div class="closestickynote1"><i class="cp cp-cross"></i></div>
- <div class="dragstickynote1"><i class="cp cp-lightbulb-o"></i> quick stats</div>
- <div class="stickynotecontent">
- <li><i class="cp cp-alien"></i> <b>NAME:</b> {text:name}</li>
- <li><i class="cp cp-hashtag"></i> <b>TRACKED TAG:</b> {text:tracked tag}</li>
- <li><i class="cp cp-heart-o"></i> <b>AGE:</b> {text:age}</li>
- <li><i class="cp cp-card-o"></i> <b>PRONOUNS:</b> {text:pronouns}</li>
- <li><i class="cp cp-z-gemini"></i> <b>ZODIAC:</b> {text:zodiac}</li>
- <li><i class="cp cp-earth-o"></i> <b>COUNTRY:</b> {text:country}</li>
- <li><i class="cp cp-rainbow-o"></i> <b>SEXUALITY:</b> {text:sexuality}</li>
- </div>
- </div><!--stickynote1 end-->
- <div id="stickynote2">
- <div class="closestickynote2"><i class="cp cp-cross"></i></div>
- <div class="dragstickynote2"><i class="cp cp-stars-o"></i> currently </div>
- <div class="stickynotecontent">
- <li><i class="cp cp-tv"></i> <b>WATCHING:</b> {text:watching}</li>
- <li><i class="cp cp-spotify"></i> <b>LISTENING:</b> {text:listening}</li>
- <li><i class="cp cp-book-o"></i> <b>READING:</b> {text:reading}</li>
- <li><i class="cp cp-gaming-controller-o"></i> <b>PLAYING:</b> {text:playing}</li>
- </div>
- </div><!--stickynote2 end-->
- <main>
- <section>
- {block:SearchPage}
- <article>
- <div class="reblogs">{lang:Found SearchResultCount results for SearchQuery}</div>
- </article>
- {/block:SearchPage}
- {block:TagPage}
- <article>
- <div class="reblogs">{lang:Showing TagResultCount posts tagged Tag}</div>
- </article>
- {/block:TagPage}
- {block:DayPage}
- <article>
- <div class="reblogs">{lang:Viewing everything posted on Month DayOfMonth Year}</div>
- </article>
- {/block:DayPage}
- {block:Posts}
- <!-- {block:NoRebloggedFrom}
- {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
- {/block:NoRebloggedFrom} -->
- {block:ContentSource}<!-- {SourceURL}
- {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- <article id="post-{PostID}">
- {block:PinnedPostLabel}<div class="pinned pinned-default"><i></i>{PinnedPostLabel}</div>{/block:PinnedPostLabel}
- {block:RebloggedFrom}
- <div class="reblog-header">
- <a href="{permalink}" {block:isdeactivated}class="inactive"{/block:isdeactivated}>
- <img src={ReblogRootPortraitURL-64} alt="{ReblogRootName}"> {ReblogRootName}
- </a>
- </div>
- {/block:RebloggedFrom}
- {block:Photo}
- <img src="{PhotoURL-HighRes}" alt="{photoalt}" class="photos">
- {/block:Photo}
- {block:Photoset}
- {Photoset}
- {/block:Photoset}
- {block:Panorama}
- <img src="{photourl-panorama}" alt="{photoalt}">
- {/block:Panorama}
- {block:Quote}
- <div class="quote-container">
- <div class="quote">
- "{Quote}"
- </div>
- <div class="source">
- -{Source}
- </div>
- </div>
- {/block:Quote}
- {block:Chat}
- <ul class="chat">
- {block:Lines}
- <li>
- {block:Label}{Label}{/block:Label}
- {Line}
- </li>
- {/block:Lines}
- </ul>
- {/block:Chat}
- {block:link}
- <div class="link-container">
- <a href="{URL}">
- {Name}
- </a>
- </div>
- {/block:link}
- {block:Video}
- {Video-700}
- {/block:Video}
- {block:Audio}
- {audioembed}
- {/block:Audio}
- {block:Answer}
- <div class="question">
- <img src={AskerPortraitURL-64} alt="{username}"> {Asker} asked: {Question}
- </div>
- {block:Answerer}
- <div class="replies">
- {Answerer}: {Answer}
- </div>
- {/block:Answerer}
- {block:NotReblog}
- <div class="replies">
- {Replies}
- </div>
- {/block:NotReblog}
- {/block:Answer}
- <!-- captions -->
- <div class="caption {block:notreblog} original-post {/block:notreblog}">
- {block:Text}
- {block:Title}<h2>{Title}</h2>{/block:Title}
- {/block:Text}
- {block:notreblog}
- {block:caption}{Caption}{/block:caption}
- {block:Text}{body}{/block:Text}
- {/block:notreblog}
- {block:Rebloggedfrom}
- {block:Reblogs}
- <div class="reblogs">
- {block:IsNotOriginalEntry}
- <div class="reblog-header">
- <a href="{permalink}" {block:isdeactivated}class="inactive"{/block:isdeactivated}>
- <img src={PortraitURL-64} alt="{username}"> {username}
- </a>
- </div>
- {/block:IsNotOriginalEntry}
- <div class="reblog-content">
- {Body}
- </div>
- </div>
- {/block:Reblogs}
- {/block:RebloggedFrom}
- </div>
- {block:Date}<div class="post-info">
- <div class="note-info">
- <a href="{Permalink}" title="permalink"><i class="cp cp-info-alt"></i></a>
- <a href="/day/{year}/{MonthNumberWithZero}/{DayOfMonth}" title="{TimeAgo}"><i class="cp cp-calendar-o"></i></a>
- <a href="{Permalink}"> {NoteCountwithLabel}</a></div>
- <div class="like-and-reblog"> {LikeButton}</div>
- </div>{/block:Date}
- {block:Hastags}
- <div class="tags">
- {block:Tags}
- <a href="{TagURL}">#{Tag}</a>
- {/block:Tags}
- </div>
- {/block:Hastags}
- {PostNotes}
- </article>
- {/block:Posts}
- </section>
- <aside>
- {block:ifSidebarImage}
- <div class="sidebar-image">
- <img src="{image:sidebar}">
- </div>
- {/block:ifSidebarImage}
- <div class="sidebar-container sidebar-style-bubble">
- <div class="user-sidebar">
- <i class="cp cp-mushroom-o" style="font-size:18px; vertical-align:middle; padding:10px; background:{color:user bg}; border-radius:100%; color:{color:user text}; box-shadow: 2px 2px {color:user hover};"></i>
- <a href="/"> @{name}</a>
- </div>
- <div class="bubble">
- <div class="avatar-user">
- <div class="avatar-user-content">
- <center><img src="{image:icon}"></center>
- </div></div>
- <div class="bubble-desc">
- <div class="blog-title">{Title}</div>
- <div class="description">{text:desktop description}</div> {block:HasPages}
- <div class="pages-container">
- {block:Pages}
- <a href="{URL}">{Label}</a>
- {/block:Pages}
- </div>
- {/block:HasPages}
- <form action="/search" method="get" id="search-form">
- <input type="text" name="q" class="query" value="" placeholder="Search">
- </form></div>
- <div class="nav-container">
- <a href="/" title="home"><i class="cp cp-home-o"></i></a>
- <a href="/ask" title="inbox"><i class="cp cp-chat-bubble-o"></i></a>
- <a href="{text:Link 1 Url}" title="{text:Link 1 Title}"><i class="cp cp-map-o"></i></a>
- <a href="{text:Link 2 Url}" title="{text:Link 2 Title}"><i class="cp cp-jellyfish-o"></i></a>
- <a href="{text:Link 3 Url}" title="{text:Link 3 Title}"><i class="cp cp-heart-o"></i></a>
- <a href="{text:Link 4 Url}" title="{text:Link 4 Title}"><i class="cp cp-fried-egg-o"></i></a>
- <a href="{text:Link 5 Url}" title="{text:Link 5 Title}"><i class="cp cp-forest-o"></i></a>
- </div>
- </div>
- {block:Pagination}
- <div class="pagination flex centered">
- {block:previouspage}
- <a href="{previouspage}">Prev</a>
- {/block:previouspage}
- {block:JumpPagination length="3"}
- {block:CurrentPage}
- <span class="current-page">
- {PageNumber}
- </span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a href="{URL}">
- {PageNumber}
- </a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {block:nextpage}
- <a href="{nextpage}">Next</a>
- {/block:nextpage}
- </div>
- {/block:Pagination}
- </div>
- </aside>
- </main>
- <!----- CREDIT ----->
- <a href="https://geminicodes.tumblr.com" title="by bru" id="credit"><i class="cp cp-moon-o"></i></a>
- <!-- masonry navigation -->
- <script src="https://static.tumblr.com/0siu224/Ljlqmh1nv/masonry.pkgd.min.js"></script>
- <script type="text/javascript">
- // masonry navigation
- var elements = document.getElementsByClassName('masonry-navigation');
- var msnry;
- var nElements = elements.length;
- for(var i = 0; i < nElements; i++){
- msnry = new Masonry( elements[i], {
- // columnWidth: 268,
- gutter: 10,
- itemSelector: '.masonry-navigation-item',
- });
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement