Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <!--
- NOTIZBUCH
- Page #18 by silbrigthemes
- A responsive page inspired by a notebook.
- Rules:
- 1) Do not steal (parts of) the code.
- 2) Do not redistribute on other websites.
- 3) Do not claim as your own.
- 4) Do not edit beyond recognition.
- 5) Do not alter or delete the credit.
- 6) Do not use as a base code.
- Useful annotations to this code have been made.
- If you need any help with the customization, feel free to send me a message via silbrigthemes.tumblr.com/ask or send a message to my official support blog, silbrigsupport.tumblr.com.
- -->
- <head>
- <meta charset="utf-16">
- <title>{Title} | About</title>
- <link rel="shortcut icon" href="{Favicon}"/>
- <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
- <link rel="apple-touch-icon-precomposed" href="{PortraitURL-128}">
- <!-- Necessary for the theme to be responsive. -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- Necessary for the scripts to work. -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
- <!-- Changes the toolbar color on mobile. -->
- <meta name="theme-color" content="#ccc"/>
- <!-- Tooltip Script -->
- <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:200,
- tip_fade_speed:300
- }
- );
- });
- })(jQuery);
- </script>
- <!-- Icon font, by suiomi. -->
- <link href="//solrainha.github.io/honeybee/honeybee.css" rel="stylesheet">
- <!-- Font "Mali", by Cadson Demak. -->
- <link href="https://fonts.googleapis.com/css?family=Mali:300,400,700&subset=latin-ext,thai,vietnamese" rel="stylesheet">
- <!-- Other fonts. -->
- <!-- Cormorant Garamond -->
- <link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,400,700&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese" rel="stylesheet">
- <!-- Dancing Script -->
- <link href="https://fonts.googleapis.com/css?family=Dancing+Script:400,700&subset=latin-ext,vietnamese" rel="stylesheet">
- <!-- Roboto Mono -->
- <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,700&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese" rel="stylesheet">
- <style>
- body{
- margin:0;
- top:0;
- left:0;
- font-size:1em; /* 1em = 16px */
- background-color:white; /* change background color here */
- font-family:"Mali", "Comic Sans MS"; /* change fonts here */
- color:#00008b; /* change text color here */
- overflow-x:hidden;
- text-align:justify; /* alt.: left, center, right */
- }
- /* Custom Text Selection */
- ::selection{
- background-color:#c0ebff; /* background color */
- /*color:white;*/
- /* uncomment the line above if the selection background is
- going to be a dark color */
- }
- ::-moz-selection{
- background-color:#c0ebff;
- /*color:white;*/
- /* uncomment the line above if the selection background is
- going to be a dark color */
- }
- ::-o-selection{
- background-color:#c0ebff;
- /*color:white;*/
- /* uncomment the line above if the selection background is
- going to be a dark color */
- }
- ::-webkit-selection{
- background-color:#c0ebff;
- /*color:white;*/
- /* uncomment the line above if the selection background is
- going to be a dark color */
- }
- /* Custom Scrollbar */
- ::-webkit-scrollbar{
- width:10px; /* track width */
- /*background-color:[COLOR HERE];*/
- /* uncomment the line above if the background under body is
- not white (#fff) and change [COLOR HERE] to a color matching the body background as the default track has a
- white background */
- }
- ::-webkit-scrollbar-thumb{
- width:10px; /* thumb width */
- border-radius:5px; /* rounded corners */
- background-color:#ccc; /* background color */
- }
- /* Custom Tooltips */
- #s-m-t-tooltip{
- max-width:300px;
- margin:15px;
- padding:0.5em;
- z-index:9999999999999;
- font-size:12px; /* change font-size here */
- /* font-size under body{} - 4px */
- text-transform:uppercase; /* alt.: normal, lowercase */
- font-family:"Mali", Verdana; /* change font here */
- border-radius:2px; /* rounded corners */
- background-color:#f0f0f0; /* change background color here */
- color:inherit; /* change text color here */
- /* note: inherit means the text color of the tooltips is the
- same as the text color under body{} */
- }
- /** --- TEXT STYLES --- **/
- /* Bold Text */
- b, strong{
- font-weight:bold;
- }
- /* Italic Text */
- i, em{
- font-weight:300; /* alt.: 400 */
- font-style:italic;
- }
- /* Marked Text */
- mark{
- background-color:#fff4c0; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the marked text background is
- going to be a dark color */
- }
- /* Underlined Text */
- u{
- text-decoration:none; /* no text decoration */
- border-bottom:2px solid #00008b;
- /* thickness style color */
- /* color should be the same as the color under body{} */
- }
- /* Small Text */
- small{
- font-size:14px; /* change font-size here */
- /* font-size under body{} - 2px */
- }
- /* Text Line */
- hr{
- width:80%; /* change width here */
- border:none; /* no border */
- height:2px; /* change height here */
- background-color:#00008b; /* change background color here */
- border-radius:2px; /* rounded corners */
- }
- /* Striked Text */
- strike{
- text-decoration:line-through wavy #00008b;
- /* line-position line-style line-color */
- /* keep the position the same */
- /* alt-styles: solid, double, dotted, dashed */
- /* match the color with the text color under body{} */
- }
- /* Empty Paragraphs */
- p:empty{
- display:none; /* hidden */
- }
- /* Preformatted Text */
- pre{
- word-wrap:break-all;
- white-space:pre-wrap;
- font-family:"Roboto Mono", Courier;
- font-size:14px; /* change font-size here */
- /* font-size under body{} - 2px */
- background-color:#cbffc0; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- padding:4px 8px;
- }
- pre:before{
- content:"<";
- margin-right:4px;
- }
- pre:after{
- content:"/>";
- margin-left:4px;
- }
- /* Blockquote */
- blockquote{
- background-color:#ffd5c0; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- padding:4px 8px;
- border-radius:2px; /* rounded corners */
- }
- blockquote:before{
- content:">>";
- margin-right:4px;
- }
- blockquote:after{
- content:"<<";
- margin-left:4px;
- }
- /* HEADINGS */
- /* First Heading */
- h1{
- font-size:2em; /* 2 x font-size under body{} */
- font-weight:normal; /* alt.: 700 (bold), 300 (thin) */
- }
- /* Second Heading */
- h2{
- font-size:1.5em; /* 1.5 x font-size under body{} */
- font-weight:300; /* alt.: 700 (bold), 400 (normal) */
- }
- /* LINKS */
- /* Link */
- a{
- color:#00008b; /* change color here */
- /* match this color with the text color on body{} */
- text-decoration:none; /* no text decoration */
- box-shadow:inset 0 -8px 0 #d5c0ff; /* change color here */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /* Link on Hover */
- a:hover{
- box-shadow:inset 0 -16px 0 #ffc0eb; /* change color here */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /* COLORED TEXT */
- /* Pink Text */
- .npf_color_niles {
- color:#ff8ddb; /* change text color here */
- }
- /* Red Text */
- .npf_color_joey {
- color:#ff8da1; /* change text color here */
- }
- /* Orange Text */
- .npf_color_monica {
- color:#ffb38d; /* change text color here */
- }
- /* Yellow Text */
- .npf_color_phoebe {
- color:#ffe152; /* change text color here */
- }
- /* Green Text */
- .npf_color_ross {
- color:#79f25f; /* change text color here */
- }
- /* Blue Text */
- .npf_color_rachel {
- color:#8ddbff; /* change text color here */
- }
- /* Purple Text */
- .npf_color_chandler {
- color:#b38dff; /* change text color here */
- }
- /* SPECIAL FONTS */
- /* Quirky Font */
- .npf_quirky{
- font-family: 'Dancing Script', cursive;
- font-size:1.25em; /* 1.25 x font-size under body{} */
- }
- /* Chat Font */
- .npf_chat{
- font-family:Courier;
- }
- /* Quote Font */
- .npf_quote{
- font-family:"Cormorant Garamond", "Palatino";
- font-size:1.25em; /* 1.25 x font-size under body{} */
- }
- /** ––– END TEXT STYLES | START CONTENT STYLING ––– **/
- /** CONTAINER **/
- #container{
- width:70vw;
- height:70vh;
- margin-left:20vw;
- margin-top:15vh;
- display:flex;
- align-items:flex-start;
- justify-content:center;
- }
- /** LEFT SIDE OF NOTEBOOK **/
- #other{
- width:30vw;
- height:70vh;
- border-right:2px solid #ccc; /* change border color here */
- background-color:white; /* change background color here */
- background-image: linear-gradient(rgba(240, 240, 240, .7) .1em, transparent .1em), linear-gradient(90deg, rgba(240, 240, 240, .7) .1em, transparent .1em);
- background-size: 0.5em 0.5em;
- /* background-image and background-size set a grid here */
- /* rgba(240, 240, 240, .7) sets #f0f0f0 with an opacity of 70% */
- /* just change the triplet for the color ideally */
- border-radius:4px 0 0 4px; /* rounded corners */
- box-shadow:2px 2px 1px #ccc;
- /* change box-shadow color here */
- display:flex;
- align-items:center;
- justify-content:center;
- flex-direction:column;
- }
- /* ICONS */
- #icon1 img, #icon2 img{
- width:64px;
- height:64px;
- }
- /* First Icon */
- #icon1 img{
- transform:rotate(-10deg); /* tilted */
- margin-left:-160px;
- margin-top:-120px;
- position:fixed;
- }
- /* Second Icon */
- #icon2 img{
- transform:rotate(10deg); /* tilted */
- position:fixed;
- margin-left:80px;
- margin-top:40px;
- }
- /* TITLE */
- #title{
- font-size:2em; /* 2 x font-size under body{} */
- font-weight:normal; /* alt.: 300 (thin), 700 (bold) */
- }
- /* QUOTE | DESCRIPTION */
- #quote{
- text-align:center; /* alt.: left, justify, right */
- }
- /* SOCIAL | CUSTOM LINKS */
- /* Link */
- a.social-link{
- color:#00008b; /* change text color here */
- /* match this color to the text color under body{} */
- text-decoration:none; /* no text-decoration */
- background-color:#ffd5c0; /* change background color here */
- padding:2px 8px;
- border-radius:2px; /* rounded corners */
- box-shadow:none;
- margin-left:2px;
- margin-right:2px;
- line-height:1.75em;
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /* Link on Hover */
- a.social-link:hover{
- background-color:#cbffc0; /* change background color here */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /** RIGHT SIDE OF NOTE BOOK **/
- #about{
- width:calc(30vw - 2em);
- height:calc(70vh - 1em);
- overflow-y:auto;
- padding:8px 16px;
- border-left:2px solid #ccc; /* change border color here */
- background-color:white; /* change background color here */
- background-image: linear-gradient(rgba(240, 240, 240, .7) .1em, transparent .1em), linear-gradient(90deg, rgba(240, 240, 240, .7) .1em, transparent .1em);
- background-size: 0.5em 0.5em;
- /* background-image and background-size set a grid here */
- /* rgba(240, 240, 240, .7) sets #f0f0f0 with an opacity of 70% */
- /* just change the triplet for the color ideally */
- z-index:100!important;
- border-radius:0 4px 4px 0; /* rounded corners */
- box-shadow:2px 2px 1px #ccc;
- /* change box-shadow color here */
- }
- /** SIDE NAVIGATION **/
- #sidenav{
- min-width:144px;
- display:flex;
- flex-direction:column;
- }
- /* NAVIGATION LINKS */
- /* Link */
- a.navlink{
- width:130px;
- margin-left:-120px;
- padding:4px 8px;
- border-radius:0 4px 4px 0; /* rounded corners */
- margin-bottom:2px;
- color:#00008b; /* change text color here */
- /* match this color with the text color under body{} */
- text-decoration:none; /* no text-decoration */
- box-shadow:none; /* no box-shadow */
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /* Link on Hover */
- a.navlink:hover{
- margin-left:-2px;
- transition:0.5s;
- -moz-transition:0.5s;
- -o-transition:0.5s;
- -webkit-transition:0.5s;
- }
- /* Index Link */
- #index{
- background-color:#ffc0eb; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /* Ask Link */
- #ask{
- background-color:#ffc0cb; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /* Archive Link */
- #archive{
- background-color:#ffd5c0; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /* First Custom Link */
- #custom1{
- background-color:#fff4c0; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /* Second Custom Link */
- #custom2{
- background-color:#cbffc0; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /* Third Custom Link */
- #custom3{
- background-color:#c0ebff; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /* CREDIT */
- /* If you delete the credit, you will be blocked and reported for theft. */
- #page{
- background-color:#d5c0ff; /* change background color here */
- /*color:white;*/
- /* uncomment the line above if the background color is
- going to be a dark color */
- }
- /** ––– END CONTENT STYLING | START RESPONSIVE LAYOUT ––– **/
- @media only screen and (max-width:1000px){
- /*
- For tablets and smartphones the layout is not that of a notebook. In order to make this page responsive to different screen sizes, the content will be displayed in a column to ensure that the page remains readable and user-friendly.
- */
- /* Main Container */
- #container{
- width:100vw;
- margin-left:0;
- height:auto;
- margin-top:0;
- flex-direction:column;
- }
- /* Left and Right Side */
- #other, #about{
- min-height:100vh;
- border:none;
- box-shadow:none;
- }
- /* Left Side and Navigation */
- #other, #sidenav{
- width:100vw;
- }
- /* Right Side */
- #about{
- width:calc(100vw - 2em);
- height:auto;
- overflow-y:initial;
- }
- /* ICONS */
- #icon1 img, #icon2 img{
- position:absolute;
- }
- /* First Icon */
- #icon1 img{
- margin-left:-45vw;
- margin-top:-30vh;
- }
- /* Second Icon */
- #icon2 img{
- margin-top:20vh;
- margin-left:30vw;
- }
- /* NAVIGATION */
- /* Container */
- #sidenav{
- background-color:white;
- /* change background color here */
- background-image: linear-gradient(rgba(240, 240, 240, .7) .1em, transparent .1em), linear-gradient(90deg, rgba(240, 240, 240, .7) .1em, transparent .1em);
- background-size: 0.5em 0.5em;
- /* background-image and background-size set a grid here */
- /* rgba(240, 240, 240, .7) sets #f0f0f0 with an opacity of 70% */
- /* just change the triplet for the color ideally */
- padding-bottom:16px;
- display:flex;
- align-items:center;
- justify-content:space-evenly;
- flex-direction:row;
- flex-wrap:wrap;
- }
- /* Link */
- a.navlink{
- margin-left:0;
- border-radius:2px;
- margin-top:4px;
- margin-bottom:4px;
- text-align:center;
- }
- /* Link on Hover */
- a.navlink:hover{
- margin-left:0;
- }
- /* Index Link on Hover */
- #index:hover{
- background-color:#ff8ddb;
- /* change background color here */
- }
- /* Ask Link on Hover */
- #ask:hover{
- background-color:#ff8da1;
- /* change background color here */
- }
- /* Archive Link on Hover */
- #archive:hover{
- background-color:#ffb38d;
- /* change background color here */
- }
- /* First Custom Link on Hover */
- #custom1:hover{
- background-color:#ffe152;
- /* change background color here */
- }
- /* Second Custom Link on Hover */
- #custom2:hover{
- background-color:#79f25f;
- /* change background color here */
- }
- /* Third Custom Link on Hover */
- #custom3:hover{
- background-color:#8ddbff;
- /* change background color here */
- }
- /* Credit Link on Hover */
- #page:hover{
- background-color:#b38dff;
- /* change background color here */
- }
- }
- /* Hides the tumblr app button, by @yeoli-thm */
- .tmblr-iframe--app-cta-button {
- display: none!important;
- }
- /* Hides standard tumblr controls */
- body > iframe:first-child {
- display: none !important;
- }
- </style>
- </head>
- <!-- END STYLING | START CONTENT -->
- <body>
- <!-- CONATINER -->
- <div id="container">
- <!-- LEFT SIDE -->
- <div id="other">
- <!-- First Icon -->
- <div id="icon1">
- <img src="[IMAGE URL HERE]" alt="icon"/>
- </div>
- <!-- Title -->
- <div id="title">[TITLE HERE]</div>
- <!-- Quote -->
- <div id="quote">
- [QUOTE / DESCRIPTION HERE]
- </div>
- <!-- Quick Stats -->
- <div id="stats">
- <ul>
- <li>Name: [YOUR NAME]</li>
- <li>Age: [YOUR AGE]</li>
- <li>Location: [YOUR LOCATION]</li>
- </ul>
- </div>
- <!-- Social Links -->
- <div id="social">
- <!-- Delete/alter/edit these links at your will. -->
- <a href="[LINK HERE]" title="facebook" class="social-link">
- <span class="th th-facebook-o"></span>
- </a>
- <a href="[LINK HERE]" title="instagram" class="social-link">
- <span class="th th-instagram-o"></span>
- </a>
- <a href="[LINK HERE]" title="twitter" class="social-link">
- <span class="th th-twitter-o"></span>
- </a>
- <a href="[LINK HERE]" title="youtube" class="social-link">
- <span class="th th-youtube-o"></span>
- </a>
- <a href="[LINK HERE]" title="whatsapp" class="social-link">
- <span class="th th-whatsapp"></span>
- </a>
- </div>
- <!-- Second Icon -->
- <div id="icon2">
- <img src="[IMAGE URL HERE]" alt="icon"/>
- </div>
- </div> <!-- / end left side -->
- <!-- RIGHT SIDE -->
- <div id="about">
- [TEXT HERE]
- </div> <!-- / end right side -->
- <!-- NAVIGATION -->
- <div id="sidenav">
- <!-- Index Link -->
- <a href="/" title="home" id="index" class="navlink">
- Index
- </a>
- <!-- Ask Link -->
- <a href="/ask" title="ask" id="ask" class="navlink">
- {AskLabel} <!-- uses the automatic ask label -->
- </a>
- <!-- Archive Link -->
- <a href="/archive" title="archive" id="archive" class="navlink">
- Archive
- </a>
- <!-- First Custom Link -->
- <a href="[LINK HERE]" title="[LINK NAME HERE]" id="custom1" class="navlink">
- [LINK NAME HERE]
- </a>
- <!-- Second Custom Link -->
- <a href="[LINK HERE]" title="[LINK NAME HERE]" id="custom2" class="navlink">
- [LINK NAME HERE]
- </a>
- <!-- Third Custom Link -->
- <a href="[LINK HERE]" title="[LINK NAME HERE]" id="custom3" class="navlink">
- [LINK NAME HERE]
- </a>
- <!-- CREDIT --->
- <!-- If you delete/alter the credit, you will be blocked and
- reported for theft. -->
- <a href="https://silbrigthemes.tumblr.com/" title="page by silbrigthemes" id="page" class="navlink">
- Page Credit
- </a>
- </div> <!-- / end navigation panel -->
- </div> <!-- / end container -->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment