Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC>
- <!-- nuclearthemes on tumblr || thanks for using my code! -->
- <!-- consider supporting me on ko-fi >> https://ko-fi.com/cameroni -->
- <!--
- || CREDITS ||
- • Custom tooltips by Atomiks >> https://atomiks.github.io/tippyjs/
- • Fonts from Google >> https://fonts.google.com/
- • Icons from Font Awesome >> https://fontawesome.com/
- • Placeholders from Unsplash >> https://unsplash.com/
- • Sidelinks by Larry Geams Parangan >> https://codepen.io/larrygeams/pen/pdchG
- • Tumblr controls fix by odeysseus >> https://odeysseus.tumblr.com/
- -->
- <html>
- <head>
- <title>{Name} / title</title> <!-- page title -->
- <link rel="shortcut icon" href="{Favicon}">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link href="https://fonts.googleapis.com/css?family=Josefin+Sans:400,400i,700,700i|Roboto+Slab:400,400i,700,700i" rel="stylesheet">
- <script src="https://kit.fontawesome.com/802dca85f3.js" crossorigin="anonymous"></script>
- <style type="text/css">
- * {margin:0; padding:0;}
- /* ----------------------------------------------------------------------- */
- /* --------------------------- tumblr controls --------------------------- */
- .tmblr-iframe {
- filter: invert(100%);
- -o-filter: invert(100%);
- -moz-filter: invert(100%);
- -ms-filter: invert(100%);
- -webkit-filter: invert(100%);
- opacity: 0.2;
- position: fixed;
- right: 5px;
- top: 5px;
- transform: scale(0.7,0.7);
- transform-origin: 100% 0%;
- -ms-transform-origin: 100% 0%;
- -webkit-transform-origin: 100% 0%;
- transition: 0.4s;
- -o-transition: 0.4s;
- -moz-transition: 0.4s;
- -ms-transition: 0.4s;
- -webkit-transition: 0.4s;
- white-space: nowrap;
- }
- .tmblr-iframe:hover {
- opacity: 1;
- }
- /* ----------------------------------------------------------------------- */
- /* --------------------------- custom tooltips --------------------------- */
- .tippy-tooltip.custom-theme {
- background-color: #d4a89f;
- border-radius: 0;
- color: #ffffff;
- font-family: inherit;
- font-size: inherit;
- text-align: center;
- }
- /* ----------------------------------------------------------------------- */
- /* -------------------- custom selection & scrollbar --------------------- */
- ::-moz-selection {background: #f07a9a; color: #ffffff;}
- ::selection {background: #f07a9a; color: #ffffff;}
- ::-webkit-scrollbar-thumb
- {background: #f07a9a; border: 5px solid #fff; border-radius: 10px;}
- ::-webkit-scrollbar-track
- {background: #d4a89f; border: 7px solid #ffffff;}
- ::-webkit-scrollbar
- {width: 15px;}
- /* ----------------------------------------------------------------------- */
- /* ----------------------------- page layout ----------------------------- */
- body {
- background: #ffffff; /* background color */
- color: #979797; /* text color */
- font-family: Josefin Sans; /* font */
- font-size: 16px; /* font size */
- text-align: justify; /* text align */
- }
- #container {
- height: 500px;
- left: 50%;
- margin-bottom: 40px;
- overflow: none;
- padding: 20px;
- position: absolute;
- top: 50%;
- transform: translate(-50%,-50%);
- -moz-transform: translate(-50%,-50%);
- -ms-transform: translate(-50%,-50%);
- -o-transform: translate(-50%,-50%);
- -webkit-transform: translate(-50%,-50%);
- width: 860px;
- }
- /* ----------------------------------------------------------------------- */
- /* ------------------------ sidebar links colors ------------------------- */
- #linkhome {border-left: 7px solid #f07a9a; color: #f07a9a;}
- #linkhome:after {background-color: #f07a9a;}
- #linkhome:hover {color: #fafafa; transition: 0.4s;}
- #link1 {border-left: 7px solid #eb819a; color: #eb819a;}
- #link1:after {background-color: #eb819a;}
- #link1:hover {color: #fafafa; transition: 0.4s;}
- #link2 {border-left: 7px solid #e6899b; color: #e6899b;}
- #link2:after {background-color: #e6899b;}
- #link2:hover {color: #fafafa; transition: 0.4s;}
- #link3 {border-left: 7px solid #df959c; color: #df959c;}
- #link3:after {background-color: #df959c;}
- #link3:hover {color: #fafafa; transition: 0.4s;}
- #link4 {border-left: 7px solid #d8a19e; color: #d8a19e;}
- #link4:after {background-color: #d8a19e;}
- #link4:hover {color: #fafafa; transition: 0.4s;}
- #link5 {border-left: 7px solid #d4a89f; color: #d4a89f;}
- #link5:after {background-color: #d4a89f;}
- #link5:hover {color: #fafafa; transition: 0.4s;}
- /* ----------------------------------------------------------------------- */
- /* --------------------------- sidebar content --------------------------- */
- #sidemenu { /* left menu */
- background-color: #fafafa;
- float: left;
- height: 500px;
- width: 200px;
- }
- #sidepic { /* sidebar picture */
- height: 200px;
- width: 200px;
- margin: 0;
- }
- #sidepic:hover {
- cursor: cell;
- }
- /* sidebar links code >> colors are modified above! */
- .sidebarlinks a {
- box-sizing: border-box;
- display: block;
- height: 50px;
- margin: 0;
- padding: 20px;
- padding-top: 18px;
- position: relative;
- text-transform: uppercase;
- width: 100%;
- z-index: 2;
- }
- .sidebarlinks a:after {
- content: "";
- height: 100%;
- left: -1;
- position: absolute;
- top: 0;
- transition: 0.4s;
- width: 0px;
- z-index: -1;
- }
- .sidebarlinks a:hover:after {
- width: calc(100% + 1px);
- width: -moz-calc(100% + 1px);
- width: -webkit-calc(100% + 1px);
- }
- /* sidebar links content >> changes text to icon with screen size */
- .big {display: block;}
- .small {display: none;}
- /* ----------------------------------------------------------------------- */
- /* ------------------------------- content ------------------------------- */
- #contentcontainer { /* container for content */
- float: right;
- height: 440px;
- overflow: auto;
- width: 660px;
- -moz-overflow-style: none;
- -ms-overflow-style: none;
- -o-overflow-style: none;
- }
- #contentcontainer::-webkit-scrollbar {
- display: none;
- }
- #leftcontainer { /* container for facts and stats */
- float: left;
- height: 440px;
- width: 365px;
- }
- #facts { /* facts section */
- background-color: #fafafa;
- float: right;
- height: 210px;
- margin-bottom: 15px;
- overflow: none;
- width: 350px;
- }
- #stats { /* stats section */
- background-color: #fafafa;
- float: right;
- height: 215px;
- overflow: none;
- width: 350px;
- }
- #text { /* text section */
- background-color: #fafafa;
- float: right;
- height: 440px;
- margin-left: 15px;
- overflow-y: auto;
- width: 280px;
- -moz-overflow-style: none;
- -ms-overflow-style: none;
- -o-overflow-style: none;
- }
- #text::-webkit-scrollbar {
- display: none;
- }
- .left { /* left columns */
- border-right: 1px dashed #f07a9a;
- float: left;
- font-weight: bold;
- line-height: 22px;
- margin-left: 5px;
- margin-right: 15px;
- padding-right: 15px;
- text-transform: uppercase;
- }
- .right { /* right columns */
- line-height: 22px;
- text-transform: lowercase;
- }
- .content { /* invisible text container */
- padding: 8px;
- }
- /* ----------------------------------------------------------------------- */
- /* -------------------------------- text --------------------------------- */
- h1 { /* page title */
- color: #f07a9a;
- font-family: Roboto Slab;
- font-size: 2em;
- margin-bottom: 10px;
- padding-bottom: 10px;
- text-align: right;
- }
- h2 { /* section titles */
- background-color: #d4a89f;
- color: #fafafa;
- display: block;
- font-family: Roboto Slab;
- font-size: 1.5em;
- padding: 5px 10px;
- text-align: right;
- }
- a {
- color: #d4a89f; /* link color */
- text-decoration: none;
- transition: 0.4s;
- -moz-transition: 0.4s;
- -ms-transition: 0.4s;
- -o-transition: 0.4s;
- -webkit-transition: 0.4s;
- }
- a:hover {
- color: #f07a9a; /* link hover color */
- transition: 0.4s;
- -moz-transition: 0.4s;
- -ms-transition: 0.4s;
- -o-transition: 0.4s;
- -webkit-transition: 0.4s;
- }
- b {
- color: #f07a9a;
- }
- /* ----------------------------------------------------------------------- */
- /* ----------------------------- responsive ------------------------------ */
- @media only screen and (max-width: 1024px){
- #container {width: 740px;}
- #sidepic {height: 80px; width: 80px;}
- #sidemenu {height: 500px; text-align: center; width: 80px;}
- .big {display: none;}
- .small {display: block; font-size: 20px; margin-top: 2px;}
- .sidebarlinks a {height: 70px;}
- .sidebarlinks a:hover:after {
- height: calc(100% + 1px);
- height: -moz-calc(100% + 1px);
- height: -webkit-calc(100% + 1px);
- width: calc(100% + 1px);
- width: -moz-calc(100% + 1px);
- width: -webkit-calc(100% + 1px);
- }
- }
- @media only screen and (max-width: 830px){
- #container {width: 445px;}
- #contentcontainer {width: 350px;}
- #text {float: none; margin: auto; width: 350px;}
- #stats, #text {height: 210px;}
- #leftcontainer {
- float: none;
- height: 435px;
- margin: 0px auto 15px auto;
- width: 350px;
- }
- }
- /* ----------------------------------------------------------------------- */
- /* ------------------------------- credits ------------------------------- */
- #credit {
- background-color: #ffffff;
- color: #f07a9a;
- bottom: 0;
- font-size: 20px;
- font-style: italic;
- margin: 10px;
- padding: 10px 0px;
- position: fixed;
- right: 0;
- text-align: center;
- transition: 0.4s;
- -moz-transition: 0.4s;
- -ms-transition: 0.4s;
- -o-transition: 0.4s;
- -webkit-transition: 0.4s;
- width: 40px;
- }
- #credit:hover {
- background-color: #f07a9a;
- color: #ffffff;
- transition: 0.4s;
- -moz-transition: 0.4s;
- -ms-transition: 0.4s;
- -o-transition: 0.4s;
- -webkit-transition: 0.4s;
- }
- /* ----------------------------------------------------------------------- */
- </style>
- </head>
- <body>
- <!--------------------------- START MAIN CONTENT---------------------------->
- <div id="container">
- <!-- start sidebar menu -->
- <div id="sidemenu">
- <a href="/" title="et in arcadia ego">
- <img id="sidepic" src="https://i.imgur.com/EtrbAvn.jpg">
- </a>
- <!--
- below you can modify the sidebar links. the text in <span class="big"> shows with normal screen size. with smaller screen sizes, the icon in <span class="small"> will be visible. the title element is the text that shows when you hover over the icon.
- if you need more help with customization, feel free to send me an ask or a dm!
- -->
- <div class="sidebarlinks">
- <a href="/" id="linkhome">
- <span class="big">home</span>
- <span class="small" title="home">
- <i class="fas fa-home"></i>
- </span>
- </a>
- </div>
- <div class="sidebarlinks">
- <a href="" id="link1">
- <span class="big">link 1</span>
- <span class="small" title="link 1">
- <i class="fas fa-star"></i>
- </span>
- </a>
- </div>
- <div class="sidebarlinks">
- <a href="" id="link2">
- <span class="big">link 2</span>
- <span class="small" title="link 2">
- <i class="fas fa-rocket"></i>
- </span>
- </a>
- </div>
- <div class="sidebarlinks">
- <a href="" id="link3">
- <span class="big">link 3</span>
- <span class="small" title="link 3">
- <i class="fas fa-moon"></i>
- </span>
- </a>
- </div>
- <div class="sidebarlinks">
- <a href="" id="link4">
- <span class="big">link 4</span>
- <span class="small" title="link 4">
- <i class="fas fa-space-shuttle"></i>
- </span>
- </a>
- </div>
- <div class="sidebarlinks">
- <a href="" id="link5">
- <span class="big">link 5</span>
- <span class="small" title="link 5">
- <i class="fas fa-sun"></i>
- </span>
- </a>
- </div>
- </div>
- <!-- end sidebar menu -->
- <h1>cinnamon</h1> <!-- main title -->
- <!-- start content -->
- <div id="contentcontainer">
- <div id="leftcontainer">
- <!-- start facts -->
- <div id="facts">
- <h2>facts</h2>
- <div class="content">
- <div class="left">
- name
- <br>
- nickname
- <br>
- age
- <br>
- gender
- <br>
- pronouns
- <br>
- sexuality
- <br>
- alignment
- </div>
- <div class="right">
- your name
- <br>
- your nickname
- <br>
- your age
- <br>
- your gender
- <br>
- your pronouns
- <br>
- your sexuality
- <br>
- your alignment
- </div>
- </div>
- </div>
- <!-- end facts -->
- <!-- start stats -->
- <div id="stats">
- <h2>stats</h2>
- <div class="content">
- <div class="left">
- stat name
- <br>
- stat name
- <br>
- stat name
- <br>
- stat name
- <br>
- stat name
- <br>
- stat name
- <br>
- stat name
- </div>
- <div class="right">
- <!-- stat 1 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <br>
- <!-- stat 2 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <br>
- <!-- stat 3 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <br>
- <!-- stat 4 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <br>
- <!-- stat 5 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <br>
- <!-- stat 6 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <br>
- <!-- stat 7 -->
- <i class="fas fa-star"></i>
- <i class="fas fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- <i class="far fa-star"></i>
- </div>
- </div>
- </div>
- <!-- end stats -->
- </div>
- <!-- start text -->
- <div id="text">
- <h2>text</h2>
- <div class="content">
- This is where you can put a whole bunch of text. This block has automatic overflow, so you don't have to worry about writing too much. You can also add <b>bold text here</b> or <i>italic text</i>. You can even put <a href="">links</a> here if you'd like!
- <br><br>
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. In ante metus dictum at tempor commodo ullamcorper a lacus. Nulla posuere sollicitudin aliquam ultrices sagittis orci a.
- <br><br>
- Egestas congue quisque egestas diam in arcu cursus euismod quis. Scelerisque viverra mauris in aliquam sem. Tellus molestie nunc non blandit massa enim nec. Velit laoreet id donec ultrices tincidunt arcu. Elit pellentesque habitant morbi tristique senectus et netus et malesuada. Quisque egestas diam in arcu cursus. Varius duis at consectetur lorem donec massa. Mollis nunc sed id semper risus in hendrerit.
- <br><br>
- Nibh tortor id aliquet lectus proin. Ac turpis egestas sed tempus urna et. Egestas congue quisque egestas diam in arcu cursus euismod. Dis parturient montes nascetur ridiculus mus. Enim eu turpis egestas pretium. Nulla aliquet enim tortor at. Odio ut enim blandit volutpat maecenas volutpat. Facilisi morbi tempus iaculis urna id. Pretium lectus quam id leo in vitae turpis massa sed.
- <br><br>
- Diam sit amet nisl suscipit adipiscing bibendum est. Ante in nibh mauris cursus mattis molestie. Orci porta non pulvinar neque laoreet suspendisse interdum. Erat pellentesque adipiscing commodo elit at. Tincidunt vitae semper quis lectus.
- </div>
- </div>
- <!-- end text -->
- </div>
- <!-- end content -->
- </div>
- <!---------------------------- END MAIN CONTENT----------------------------->
- <!-- don't edit beyond this point please! colors can be modified in <style> -->
- <a id="credit" target="blank" title="by bones" href="https://nuclearthemes.tumblr.com/"><i class="fas fa-skull"></i></a>
- <script src="https://unpkg.com/popper.js@1"></script>
- <script src="https://unpkg.com/tippy.js@5/dist/tippy-bundle.iife.js"></script>
- <link rel="stylesheet" href="https://unpkg.com/tippy.js@5/dist/svg-arrow.css" />
- <script>
- tippy('[title]', {
- theme: 'custom',
- arrow: false,
- delay: [200, 0],
- zIndex: 9999999999,
- maxWidth: 300,
- content(reference) {
- const title = reference.getAttribute('title');
- reference.removeAttribute('title');
- return title;
- },
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment