Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <!--
- Sky theme made by hendrixrph. Do not redistribute or remove credit, but you are free to play with colors and fonts and whatever you want.
- QUICK TIPS:
- 1. If you want to make the font size for the character name smaller on one character but not the others, add the following code inside the <div class="name"> tag on that tab:
- style="font-size:SIZEYOUWANTpx"
- For example: <div class="name" style="font-size:30px">Name McVeryLongName</div>
- 2, Theoretically you can have any number of tabs, but 24 or less is ideal. 25+ will look okay in chrome, but bad in firefox and ie.
- -->
- <title>Your Title Here</title>
- <link rel="shortcut icon" href="{Favicon}">
- <style>
- ::-webkit-scrollbar {
- width:3px;
- height:5px;
- }
- ::-webkit-scrollbar-track {
- background-color: #f6f9fb;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #BCC5CC;
- }
- * {
- padding:0;
- margin:0;
- box-sizing:border-box;
- }
- body {
- background-image: url(http://www.transparenttextures.com/patterns/fabric-of-squares.png);
- }
- .header {
- width:600px;
- clear:both;
- text-align:center;
- height:9px;
- margin:10px auto;
- color:#333;
- font-size:12px;
- font-family:Helvetica,Arial,sans-serif;
- font-weight:100;
- }
- .header div {
- border-right:1px solid #ccc;
- }
- .header div:last-of-type {
- border-right:none;
- }
- .link {
- width:17.5%;
- float:left;
- }
- .link a {
- color:#999;
- text-decoration:none;
- transition:all 0.5s;
- }
- .link a:hover {
- color:#79A3BD;
- letter-spacing:1px;
- }
- .title {
- width:30%;
- float:left;
- color:#5299cc;
- }
- .wrapper {
- min-width:700px;
- max-width:1000px;
- height:600px;
- margin:0 auto;
- margin-top:20px;
- position:relative;
- font-family:helvetica,arial,sans-serif;
- font-weight:100;
- }
- .tabs {
- height:600px;
- width:20%;
- clear:both;
- overflow:auto;
- }
- .tab {
- width:100%;
- }
- .tab label {
- display:block;
- width:100%;
- background:#f6f9fb;
- border-bottom:#BCC5CC 1px solid;
- border-left:#BCC5CC 1px solid;
- text-align:center;
- font-size:12px;
- padding:5px;
- color:#79A3BD;
- }
- .tabs .tab:first-of-type label {
- border-top-left-radius:10px;
- border-top:#BCC5CC 1px solid;
- }
- .tabs .tab:last-of-type label {
- border-bottom-left-radius:10px;
- }
- .tab [type=radio] {
- display: none;
- }
- .content {
- position:absolute;
- top: 0px;
- left: 20%;
- right: 0;
- bottom: 0;
- padding: 20px;
- width:80%;
- background:white;
- opacity:0;
- clear:both;
- transition:opacity 1.5s ease;
- }
- [type=radio]:checked ~ label {
- background: #fff;
- color:#52ADCC;
- }
- [type=radio]:checked ~ label ~ .content {
- z-index: 1;
- opacity:1;
- transition:opacity 1s ease;
- }
- .portrait {
- width:40%;
- background-size:cover;
- background-position:center;
- height:600px;
- position:absolute;
- top:0;
- left:0;
- border:1px solid #BCC5CC;
- border-right:none;
- }
- .name {
- position:absolute;
- bottom:0;
- left:0;
- width:40%;
- padding:10px;
- font-size:40px; /* If your names are too long for the portrait box, you can lower the font size here. */
- font-weight:bold;
- font-style:italic;
- text-transform:uppercase;
- text-shadow:0 0 15px #79A3BD, 0 0 5px #406982;
- color:white;
- }
- .bio {
- width:60%;
- background:#fff;
- height:600px;
- position:absolute;
- top:0;
- left:40%;
- padding:10px;
- border:1px solid #BCC5CC;
- border-left:none;
- font-size:12px;
- overflow:auto;
- color:#555;
- }
- .bio h2 {
- text-align:right;
- font-weight:100;
- border-bottom:1px solid #BCC5CC;
- margin-bottom:10px;
- padding-bottom:2px;
- color:#5299cc;
- text-shadow:0 0 5px #a8d6e5;
- font-size:20px;
- letter-spacing:1px;
- text-transform:lowercase;
- }
- .bio p {
- text-indent:15px;
- margin-bottom:5px;
- line-height:1.35em;
- }
- .bio blockquote {
- width:80%;
- margin:10px auto;
- text-align:center;
- padding:20px;
- border:1px solid #BCC5CC;
- text-transform:lowercase;
- font-style:italic;
- background:#f6f9fb;
- color:#79A3BD;
- line-height:1.35em;
- text-shadow:0 0 5px #bdefff;
- }
- .bio b, .bio strong {
- color:#52ADCC;
- }
- .bio a {
- color:#5299cc;
- text-decoration:none;
- transition:0.5s all;
- }
- .bio a:hover {
- color:#BCC5CC;
- }
- .bio ul, .bio ol {
- padding-left:30px;
- margin-bottom:5px;
- line-height:1.35em;
- }
- .bio img {
- padding:20px;
- border:1px solid #BCC5CC;
- background:#f6f9fb;
- display:block;
- margin:10px auto;
- max-width:80%;
- }
- </style>
- </head>
- <body>
- <div class="header">
- <!-- Sadly, there must be 4 links plus a title to look right, unless you know code enough to play with the percentage widths. If you want to remove some of them without throwing off the layout, just have no text within the <a> tag.-->
- <div class="link"><a href="#">link 1</a></div>
- <div class="link"><a href="#">link 2</a></div>
- <div class="title">sky page theme</div>
- <div class="link"><a href="#">link 3</a></div>
- <div class="link"><a href="http://hendrixrph.tumblr.com">theme</a></div>
- </div>
- <div class="wrapper">
- <div class="tabs">
- <!-- BEGIN COPY/PASTE -->
- <div class="tab">
- <input type="radio" id="tab-1" name="tab-group-1" checked> <!-- Make sure to change the id of this to something unique, or else the tabs won't work! I recommend the tab number, such as tab-3 or tab-4. NOTE: THE FIRST TAB IS THE ONLY ONE THAT SHOULD HAVE "checked" IN IT! -->
- <label for="tab-1">Tab One</label> <!-- Tab name. Change the for attribute to the id of the input above. -->
- <div class="content">
- <div class="portrait" style="background-image:url('https://pbs.twimg.com/media/BxuRdHlIIAAPcCX.jpg')"> <!-- Put the URL of your image between the first and last single quote in the "style" attribute. Should look like this: style="background-image:url('YOURIMAGEURLHERE');" -->
- </div> <!-- End portrait image -->
- <div class="name">Name</div> <!-- Character name (or whatever text you want to go over the picture) goes here. -->
- <div class="bio">
- <h2>Heading</h2>
- <p>Theoretically you can have any number of tabs, but 24 or less is ideal. 25+ will look okay in chrome, but bad in firefox and ie.</p>
- <p><b>Bolded,</b> <i>italicized,</i> <del>strikethrough</del>, <big>big,</big> <small>small</small>, <a href="#">a link,</a> <sup>superscript</sup> and <sub>subscript.</sub></p>
- <blockquote>Blockquote</blockquote>
- </div><!-- end bio -->
- </div> <!-- end content -->
- </div> <!-- end tab -->
- <!-- END COPY/PASTE -->
- <!-- BEGIN COPY/PASTE -->
- <div class="tab">
- <input type="radio" id="tab-2" name="tab-group-1"> <!-- Make sure to change the id of this to something unique, or else the tabs won't work! I recommend the tab number, such as tab-3 or tab-4. -->
- <label for="tab-2">Tab Two</label> <!-- Tab name. Change the for attribute to the id of the input above. -->
- <div class="content">
- <div class="portrait" style="background-image:url('http://resources0.news.com.au/images/2014/11/04/1227112/444260-335fa27a-63de-11e4-8f83-4f43733686cd.jpg')"> <!-- Put the URL of your image between the first and last single quote in the "style" attribute. Should look like this: style="background-image:url('YOURIMAGEURLHERE');" -->
- </div>
- <div class="name">Name</div> <!-- Character name (or whatever text you want to go over the picture) goes here -->
- <div class="bio">
- Bio info goes here
- </div> <!-- end bio -->
- </div> <!-- end content -->
- </div> <!-- end tab -->
- <!-- END COPY/PASTE -->
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment