Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--- ✧・゚ MUSE PAGE 01 // TABBED — by @bycandleliqht ・゚✧
- edit & customize to your heart's content!
- please don't remove credit or claim as yours.
- if you need help or run into any bugs, drop me an ask & i'll do my best to help! --->
- <!DOCTYPE html>
- <html>
- <head>
- <title>PAGE TITLE</title> <!--- Change the title of your page here --->
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'> <!--- This is the file for the font featured in most of the headings --->
- <link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css"> <!--- This is the stylesheet for the icons that link you to each muse's info tabs --->
- <!--- This is the script for your filters. --->
- <script src="http://static.tumblr.com/fuu6t9w/kh8ml0pl9/jquery-1.7.1.min.js"></script>
- <script src="http://static.tumblr.com/fuu6t9w/eubml0pm0/jquery.isotope.min.js"></script>
- <script>
- $(function(){
- var $container = $('#musecon');
- $container.isotope({
- itemSelector : '.all'
- });
- var $optionSets = $('#sort .option-set'),
- $optionLinks = $optionSets.find('a');
- $optionLinks.click(function(){
- var $this = $(this);
- // don't proceed if already selected
- if ( $this.hasClass('selected') ) {
- return false;
- }
- var $optionSet = $this.parents('.option-set');
- $optionSet.find('.selected').removeClass('selected');
- $this.addClass('selected');
- // make option object dynamically, i.e. { filter: '.my-filter-class' }
- var options = {},
- key = $optionSet.attr('data-option-key'),
- value = $this.attr('data-option-filter');
- // parse 'false' as false boolean
- value = value === 'false' ? false : value;
- options[ key ] = value;
- if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
- // changes in layout modes need extra logic
- changeLayoutMode( $this, options )
- } else {
- // otherwise, apply new options
- $container.isotope( options );
- }
- return false;
- });
- });
- </script>
- <!--- This is the end of the scripts! --->
- <style>
- /* SCROLLBAR */
- ::-webkit-scrollbar {
- width:7px;
- background-color:#faf9f9; /* BG colour of the scrollbar */
- }
- ::-webkit-scrollbar-track{
- background-color:#faf9f9; /* BG colour of the scrollbar track */
- }
- ::-webkit-scrollbar-thumb{
- border:3px solid #faf9f9; /* Make sure this colour stays the same as the BG colour. This is what makes the scrollbar thin but still easily clickable! */
- border-top:4px solid #faf9f9; /* Same as above. This just adds some padding on the top of it. */
- background-color:#86afc7; /* Colour of the actual scrollbar. */
- }
- /* LINKS, BOLDS, & HEADINGS */
- a {
- color:#86afc7; /* Link colour */
- text-transform:uppercase;
- text-decoration:none;
- font-weight:bold;
- letter-spacing:1px;
- }
- b {
- font-weight:bold;
- color:#86afc7; /* Colour of bolded items */
- font-family:calibri;
- }
- h1 {
- font-size:8px;
- text-transform:uppercase;
- text-align:left;
- font-family:'Montserrat', sans-serif;
- letter-spacing:3px;
- font-weight:bold;
- margin-bottom:15px;
- text-shadow: 0 0 .01em;
- }
- h2 {
- color:#86afc7; /* Text colour for character name */
- font-size:10px;
- text-transform:lowercase;
- text-align:center;
- font-family:calibri;
- letter-spacing:.4px;
- margin-top:-1.5px;
- text-shadow: 0 1 0em;
- }
- h3 {
- font-size:11px;
- text-transform:uppercase;
- text-align:center;
- font-family:calibri;
- letter-spacing:.4px;
- font-weight:bold;
- margin-top:-8px;
- text-shadow: 0 0 .1em;
- }
- h4 {
- font-size:8.5px;
- padding:8px;
- background-color:#f3f3f3; /* Heading BG colour, featured in the tabs. Keep this light coloured, since the text colour is dark. */
- text-transform:uppercase;
- text-align:center;
- font-family:'Montserrat', sans-serif;
- font-weight:bold;
- margin-top:-.5px;
- text-shadow: 0 0 0.1em;
- box-shadow: 0px 0px 8px #d1c7c7; /* Shadow colour. I don't recommend touching this unless you make your backgrounds darker & need a darker shadow. */
- }
- h5 {
- background-color:#f3f3f3; /* BG colour for the categories in the Muse Nav tab. */
- padding:3px;
- border:1px solid #dddbdb;
- font-size:8.5px;
- text-transform:uppercase;
- color:#86afc7; /* Text colour for the category headings in the Muse Nav tab. */
- font-family:calibri;
- text-shadow: 0 1 0em;
- text-align:left;
- }
- h6 {
- font-size:8px;
- padding:5px;
- text-transform:uppercase;
- text-align:center;
- font-family:'Montserrat', sans-serif;
- font-weight:bold;
- margin-top:-.5px;
- text-shadow: 0 0 0.1em;
- }
- /* MAIN BODY */
- body {
- background-color:#eeeeee;
- font-family:calibri;
- font-size:10.5px;
- color:#373334; /* Main text colour. */
- line-height:1.5;
- letter-spacing:.5px;
- }
- #main {
- margin-top:105px;
- margin-left:385px;
- width:585px;
- height:415px;
- position:fixed;
- overflow-y:scroll;
- overflow-x:hidden;
- background-color:#faf9f9; /* BG colour for the main box / muse container. Keep this the same colour as your scroll BG & border colours. */
- box-shadow: 0px 5px 20px #d1c7c7; /* Shadow colour of the topbar. If you change it, make sure it's the same colour as the one on #top & #list. */
- }
- #top {
- background-color:#000; /* BG colour behind the title. */
- width:565px;
- height:30px;
- padding:10px;
- position:fixed;
- text-align:center;
- font-weight:bold;
- font-size:10px;
- margin-top:55px;
- margin-left:385px;
- text-shadow: 0 0 .03em;
- box-shadow: 0px 0px 20px #d1c7c7; /* Shadow colour of the topbar. If you change it, make sure it's the same colour as the one on #main & #list. */
- }
- #top a {
- color:#a9838e; /* Link colour on the top nav. */
- padding-right:15px;
- }
- #top a:hover {
- color:#86afc7; /* Link colour when hovering on the top nav links. */
- letter-spacing:5px;
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- #musecon {
- padding:25px;
- width:530px;
- margin-left:5px;
- float:left;
- position:relative;
- }
- /* SIDEBAR */
- #list {
- background-color:#faf9f9; /* BG colour for the sidebar. Keep this the same colour as your scroll BG & border colours. */
- border:10px solid #000;
- width:140px;
- height:385px;
- position:fixed;
- padding:30px;
- margin-top:55px;
- margin-left:155px;
- overflow-y:scroll;
- box-shadow: 0px 5px 20px #d1c7c7; /* Shadow colour of the topbar. If you change it, make sure it's the same colour as the one on #top & #main. */
- }
- #sort {
- margin-top:-15px;
- margin-left:-10px;
- padding-bottom:10px;
- position:relative;
- font-weight:bold;
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- #sort li {
- text-align:left;
- list-style-type:circle;
- margin-left:-15px;
- }
- #sort li a.selected {
- color:#ad858f; /* Text colour of selected filters. */
- letter-spacing:.5px;
- text-shadow: 0 0 .09em;
- margin-left:5px;
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- /* MUSE CELLS */
- #muse {
- background-color:#f3f3f3; /* BG colour for each muse ( character & series name ). */
- width:250px;
- height:70px;
- margin-left:8px;
- margin-bottom:60px;
- margin-right:0px;
- float:left;
- text-align:center;
- position:absolute;
- transition-duration:1s;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- #name {
- margin-top:15px;
- }
- #muse img {
- width:70px;
- height:70px;
- float:left;
- }
- #clicks {
- background-color:#000; /* BG colour for the muse tab links. */
- margin-top:25px;
- width:234px;
- height:20px;
- padding:8px;
- }
- #clicks a {
- color:#faf9f9; /* Link colour for the muse info tabs. Change this to a darker colour if you make the BG colour light. */
- }
- /* CREDIT -- DO NOT TOUCH!! */
- #credit {
- bottom:10px;
- right:10px;
- background-color:#f3f3f3;
- padding:3px;
- border:1px solid #dddbdb;
- font-size:8px;
- text-transform:uppercase;
- font-family:calibri;
- text-shadow: 0 1 0em;
- text-align:left;
- position:absolute;
- padding:4px;
- }
- #credit a {
- color:#a9838e;
- }
- </style>
- </head>
- <body>
- <div id="top">
- <h6 style="font-size:16px; color:#faf9f9; text-align:left; margin-top:-14px; margin-left:5px; margin-bottom:3px;">MUSE LIST</h6>
- <!--- The links below will appear on the topbar. Add more with <a href="LINK">LINK NAME</a> Make sure the first link coding stays where it is, but feel free to change it to a different link if you want something else there.--->
- <div style="margin-top:-8px; margin-left:-10px; background-color:#f3f3f3; padding:5px; width:575px;">
- <a href="/guidelines">rules</a>
- <a href="/mun">mun</a>
- <a href="/">back</a>
- <a href="http://tumblr.com/dashboard">dash</a>
- </div>
- </div>
- <div id="list">
- <!--- This is where you'll put your filters. To add a new section, copy/paste FILTER SECTION START to FILTER SECTION END.
- To add a new filter line:
- <li><a href="#filter" data-option-filter=".FILTERNAME">FILTER NAME</a></li>
- Make sure you keep the dot there. Don't paste these lines outside of the <ul> </ul> tags. You'll want to keep it to one word, and it's recommended you make it relatively short so it makes things easier when you're setting the filters on your muses.
- Scroll down to MUSE START to learn how to set filters for each muse! --->
- <div id="sort">
- <!--- FILTER SECTION START --->
- <h1>SORT BY CATEGORY</h1>
- <ul id="filters" class="option-set clearfix" data-option-key="filter">
- <li><a href="#filter" data-option-filter=".all">all</a></li>
- <li><a href="#filter" data-option-filter=".FILTERNAME">FILTER NAME</a></li>
- </ul>
- <!--- FILTER SECTION END --->
- </div>
- </div>
- <div id="main">
- <div id="musecon" class="clearfix">
- <!--- This is the start of your muses section. --->
- <!--- MUSE START --->
- <div id="muse" class="all mus pri"> <!--- This is where you'll set your muse filters. See the quotations right after 'class='? Inside those quotation marks, you're going to put the filters you added into the sidebar. Whatever word you typed after the dot, you'll type in these quotation marks, with a space separating each filter. So you can have as many filters per muse as you need!
- EX: If your filter link is <a href="#filter" data-option-filter=".lit">literature</a>, then what you put into the class section here will be <div id="muse" class="all lit">.
- ! IMPORTANT ! Keep the 'all' filter on every single one, otherwise it'll mess up the filters! --->
- <img src="https://68.media.tumblr.com/839e89c7641edd2a99b175682bc0e029/tumblr_inline_owsu08u0bz1ukw7jy_540.png"> <!--- Muse icon. Image size is 70x70px. --->
- <div id="name">
- <h2>character name.</h2>
- <h3>SERIES NAME</h3> <!--- Keep this to one line, otherwise it'll make the tab links wonky. You can lower the font size of h3 in the CSS if you have a lot of longer series titles. --->
- </div>
- <div id="clicks">
- <!--- Your links go here. You can title them however you want by editing the <A TITLE="TITLE GOES HERE">. If you want different icons, you can find more here: https://linearicons.com/free. Simply click on the icon you want to use and copy/paste the HTML field in between the <a> </a> tags. --->
- <a title="MAIN" href="#LINK" style="margin-left:15px; font-size:16px; letter-spacing:20px;"><span class="lnr lnr-bookmark"></span></a>
- <a title="ABOUT" href="#LINK" style="margin-left:5px; font-size:16px; letter-spacing:20px;"><span class="lnr lnr-user"></span></span></a>
- <a title="THREADS" href="#LINK" style="margin-left:5px; font-size:16px; letter-spacing:20px;"><span class="lnr lnr-book"></span></a>
- <a title="HEADCANONS" href="#LINK" style="margin-left:5px; font-size:16px; letter-spacing:20px;"><span class="lnr lnr-bubble"></span></a>
- <a title="IMAGERY" href="#LINK" style="margin-left:5px; font-size:16px; letter-spacing:20px;"><span class="lnr lnr-earth"></span></a>
- </div>
- </div>
- <!--- MUSE END ---->
- </div>
- </div>
- <div id="credit"><a href="http://bycandleliqht.tumblr.com">PAGE BY EVIE</a></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment