Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--
- PAGE 001 — MAIKI (REVAMP)
- © engelboy 2020
- please make sure you have read and understand
- my terms of use. note that all my work is
- licensed under creative commons.
- terms of use — engelthm.tumblr.com/tou
- credit — engelthm.tumblr.com/cred
- directions for use in code.
- ENJOY <3
- -->
- <head>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <!-- fonts + icons -->
- <link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap" rel="stylesheet">
- <!-- tutorial for changing the font here: https://www.w3schools.com/howto/howto_google_fonts.asp -->
- <style type="text/css">
- /* VARIABLES — EDIT THIS */
- :root {
- --background: #F3F4FB; /* background color */
- --content-bg: #FFF; /* container background color */
- --text: #060606; /* text color of content */
- --link: #3556C7; /* link colors */
- --link-hover: #17B5A6; /* link colors */
- --borders: #D8DAE7; /* border color */
- --title: #D8DAE7; /* accent and title color */
- --font: 'DM Sans', sans-serif; /* font */
- --text-size: 14px; /* text size */
- --border-radius: 10px; /* how curved the borders are */
- }
- /* general */
- body {
- font-family: var(--font);
- font-size: var(--text-size);
- font-weight: 400;
- text-decoration: none;
- line-height: 150%;
- overflow-x: hidden;
- color: var(--text);
- background-color: var(--background);
- }
- a {
- color: var(--link);
- box-shadow: inset 0 -.1em 0 0 var(--borders);
- text-decoration: none;
- transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- }
- a:hover {
- color: var(--link-hover);
- text-decoration: none;
- transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- }
- blockquote {
- padding-left: 10px;
- border-left: 2px solid var(--borders);
- }
- h2 { margin: 0 0 5px; }
- #info h3 { font-weight: 400; }
- h1, h3, h4, h5 { margin: 20px 0 5px; }
- b, strong { font-weight: 700; }
- ul { list-style: none;}
- ul li:before { content: "•"; padding-right: 5px; }
- * {
- -webkit-animation: fadein 2s;
- -moz-animation: fadein 2s;
- -ms-animation: fadein 2s;
- -o-animation: fadein 2s;
- animation: fadein 2s;
- }
- /* content */
- .container {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 50%;
- height: 500px;
- border-radius: var(--border-radius);
- border: 3px solid var(--borders);
- background-color: var(--content-bg);
- overflow: scroll;
- z-index: 100;
- }
- .title {
- width: 100%;
- height: 50px;
- text-align: center;
- font-weight: bold;
- line-height: 50px;
- text-transform: uppercase;
- letter-spacing: 3px;
- color: var(--title);
- border-bottom: 3px solid var(--borders);
- }
- .content {
- display: flex;
- flex-direction: row-reverse;
- align-items: flex-start;
- padding: 25px;
- }
- #info {
- margin: 0 7px 0 25px;
- width: 100%;
- }
- #info img {
- width: 100%;
- height: auto;
- object-fit: cover;
- border-radius: var(--border-radius);
- border: 4px solid var(--borders);
- }
- #social a {
- text-decoration: none;
- padding: 10px 15px;
- margin: 0 5px;
- line-height: 375%;
- box-shadow: none;
- border-radius: var(--border-radius);
- border: 2px solid var(--title);
- color: var(--content-bg);
- background-color: var(--title);
- }
- #social a:hover {
- text-decoration: none;
- border: 2px solid var(--title);
- color: var(--link);
- background-color: var(--background);
- }
- /* mobile display */
- @media screen and (max-width: 1000px) {
- .container {
- width: 65%;
- height: 400px;
- }
- }
- @media screen and (max-width: 800px) {
- .content {
- display: flex;
- flex-direction: column;
- width: 80%;
- height: 500px!important;
- }
- #info { margin: 0 0 25px 0; }
- #info img { width: 100%; height: auto; }
- }
- /* extras */
- * { cursor: url(https://i.imgur.com/dHusUiR.png),auto }
- a:hover { cursor: url(https://i.imgur.com/ZM41vky.png),progress!important }
- ::-webkit-scrollbar { display: none; }
- ::-moz-selection {
- background: var(--borders); /* highlight background */
- color: var(--text); /* highlight text */
- }
- ::selection {
- background: var(--borders); /* highlight background */
- color: var(--text); /* highlight text */
- }
- iframe.tmblr-iframe {
- z-index: 99999999999999!important;
- top: 25px!important;
- right: 25px!important;
- opacity: 0.0!important;
- padding-right: 50px!important;
- /* remove this for light controls */
- filter: invert(1) contrast(150%);
- -webkit-filter: invert(1) contrast(150%);
- -o-filter: invert(1) contrast(150%);
- -moz-filter: invert(1) contrast(150%);
- -ms-filter: invert(1) contrast(150%);
- /* to here */
- transform: scale(0.45);
- transform-origin: 100% 0;
- -webkit-transform: scale(0.45);
- -webkit-transform-origin: 100% 0;
- -o-transform: scale(0.45);
- -o-transform-origin: 100% 0;
- -moz-transform: scale(0.45);
- -moz-transform-origin: 100% 0;
- -ms-transform: scale(0.45);
- -ms-transform-origin: 100% 0;
- transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- }
- iframe.tmblr-iframe:hover {
- opacity: 0.5!important;
- transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- }
- @keyframes fadein {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @-moz-keyframes fadein {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @-webkit-keyframes fadein {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @-ms-keyframes fadein {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @-o-keyframes fadein {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- /* corner elements, do not touch credit */
- svg {
- width: 20px;
- height: auto;
- stroke-width: 1.5px;
- stroke: var(--link);
- transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- }
- svg:hover {
- stroke: var(--link-hover);
- transition-duration: 0.3s;
- -moz-transition-duration: 0.3s;
- -webkit-transition-duration: 0.3s;
- -o-transition-duration: 0.3s;
- -ms-transition-duration: 0.3s;
- }
- .back {
- position: fixed;
- top: 25px;
- left: 25px;
- box-shadow: none;
- }
- .controls {
- position: fixed;
- top: 25px;
- right: 25px;
- box-shadow: none;
- }
- .cred {
- position: fixed;
- bottom: 25px;
- right: 25px;
- box-shadow: none;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="title"> <!-- title in top bar -->
- maiki_pg.zip
- </div>
- <div class="content">
- <span id="info">
- <!-- img url should go between "" after src= -->
- <img src="https://i.imgur.com/B6gpLUm.jpg" />
- <!-- personal info -->
- <h3>
- <b>Name </b> your name <br>
- <b>Pronouns </b> pronouns <br>
- <b>Birthday </b> a date <br>
- <b>Star sign </b> a sun sign <br>
- </h3>
- </span>
- <span id="about">
- <!-- top quote, remove it if you want -->
- <h2>
- & The Painted Blue
- </h2>
- <!-- first section title -->
- <h3> About </h3>
- <!-- first section content -->
- Here is where you want to put your description. <i>italics</i> look like that, <b>bold text</b> is something that you can also write with, maybe try something <u>underlined</u>, or a <a href="URL">link</a>. There's also <small>small text</small> and slightly <big>larger text</big>.
- <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut enim ad minim veniam.</blockquote>
- And this is what a list looks like:
- <ul>
- <li>Quis nostrud exercitation
- <li>Ullamco laboris nisi
- <li>Duis aute irure dolor
- </ul>
- In reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
- <!-- second section title -->
- <h3> Links </h3>
- <b> Group </b> 
- <a href="url">index</a>
- <a href="url">contact</a>
- <a href="url">link</a>
- <a href="url">submit</a>
- <a href="url">archive</a>
- <br>
- <b> Group </b> 
- <a href="url">link</a>
- <a href="url">link</a>
- <a href="url">link</a>
- <a href="url">a long link</a>
- <a href="url">link</a>
- <span id="social">
- <!-- third section title -->
- <h3> Social </h3>
- <a href="url">Instagram</a>
- <a href="url">Twitter</a>
- <a href="url">Pinterest</a>
- <a href="url">Spotify</a>
- <a href="url">Goodreads</a>
- <a href="url">Ko-fi</a>
- </span></span>
- </div>
- </div>
- <!-- corner elements -->
- <div class="controls"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-labelledby="hamburgerIconTitle" stroke-linecap="round" stroke-linejoin="round" fill="none"><path d="M6 7L18 7M6 12L18 12M6 17L18 17"/></svg></div>
- <a class="back" href="/" title="Index"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-labelledby="arrowLeftIconTitle" stroke-linecap="round" stroke-linejoin="round" fill="none"><path d="M9 6l-6 6 6 6"/><path d="M21 12H4"/><path stroke-linecap="round" d="M3 12h1"/></svg></a>
- <!-- credit - DO NOT TOUCH -->
- <a class="cred" target="_blank" href="https://engelthm.tumblr.com/" title="From an angel."><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-labelledby="codeAltIconTitle" stroke-linecap="round" stroke-linejoin="round"> <path d="M7 8L3 12L7 16"/><path d="M17 16L21 12L17 8"/><path d="M9 19.5L14.5 5"/></svg></a>
- <!-- scripts -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- </body>
- </html>
Add Comment
Please, Sign In to add comment