Advertisement
Lavender-Llama

FluffyLlama

Aug 24th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2.     <head>
  3.    
  4.     <title>{Title}</title>
  5.    
  6.     <meta name="color:Links" content="#000000" />
  7.     <meta name="color:Links Hover" content="#000000" />
  8.     <meta name="color:Background" content="#000000" />
  9.     <meta name="color:Text" content="#000000" />
  10.     <meta name="color:Sidebar Background" content="#696969" />
  11.     <meta name="color:Sidebar Links" content="#FFE4C4" />
  12.     <meta name="color:Sidebar Hover" content="#000000" />
  13.     <meta name="color:SidebarBottom Links" content="#000000" />
  14.    
  15.     <meta name="image:Sidebar" content="/" />
  16.     <meta name="image:Background" content="/" />
  17.     <meta name="image:Sidebar Background" content="/" />
  18.    
  19.    
  20.     <meta name="font:Sidebar Link Text" content="" />
  21.     <meta name="font:Body" content="" />
  22.     <meta name="font:Title" content="" />
  23.     <meta name="font:Description" content="" />
  24.    
  25.    
  26.  
  27.         <style style="text/css">
  28.        
  29.      body {
  30.         background-color: {color:Background};
  31.         background-image: url("{image:Background}");
  32.         margin: 0;
  33.         word-wrap: break-word;
  34.         background-attachment: fixed;
  35.      }
  36.        
  37.     #content {
  38.          width: 560px;
  39.          background-color: rgba(0,255,255,.4);
  40.          margin: 60px 0 0 600px;
  41.          padding: 20px 0 ;
  42.          color: black;
  43.          border-radius: 40px;
  44.      }
  45.      
  46.      #content a {
  47.          color: {color:Links};
  48.          text-decoration: none;
  49.      }
  50.      
  51.      #content a:hover {
  52.          color: {color:Links Hover};
  53.      }
  54.      
  55.      #content blockquote {
  56.          border-left: solid 2px black;
  57.          margin: 0;
  58.          padding-left: 10px;
  59.      }
  60.      
  61.      img {
  62.          border: 0;
  63.          max-width: 100%;
  64.          border-radius: 40px;
  65.      }
  66.      /*CONTENT POSTS*/
  67.      #content #posts {
  68.          background-color: white;
  69.          width: 500px;
  70.          margin: 0 auto 20px;
  71.          padding: 10px;
  72.          border-radius: 40px;
  73.          font-family: {font:Body};
  74.      }
  75.      
  76.      #content #posts .title {
  77.          font-size: 22px;
  78.      }
  79.      
  80.      #content #posts .text {
  81.          font-size: 11px;
  82.      }
  83.      
  84.       /*TAGS*/
  85.     #content #posts #permalink {
  86.         font-size: 9px;
  87.         margin-top: 10px;
  88.     }
  89.      
  90.     #content #posts #tags {
  91.         font-size: 9px;
  92.     }
  93.    
  94.     #content #notecontainer {
  95.         margin: 20px auto;
  96.         width: 500px;
  97.         font-size: 11px;
  98.     }
  99.    
  100.     #content #notecontainer ol.note {
  101.         list-style-type: none;
  102.         margin: 0;
  103.         padding: 0;
  104.     }
  105.    
  106.     #content #notecontainer img.avatar {
  107.         margin-right: 10px;
  108.         width: 16px;
  109.         height: 16px;
  110.     }
  111.     /*NEXT/PREVIOUS PAGE*/
  112.        
  113.    
  114.     #sidebar {
  115.         background-color: {color:Sidebar Background};
  116.         background-image: url("{image:Sidebar Background}");
  117.         height: 100%;
  118.         float: left;
  119.         width: 450px;
  120.         position: fixed;
  121.         top: 0;
  122.         background-size: cover;
  123.     }
  124.    
  125.     #sidebar .image {
  126.         width: 260px;
  127.         padding: 0 0 0 90px;
  128.         border-radius: 0px;
  129.     }
  130.    
  131.     #sidebar .title {
  132.         text-align: center;
  133.         font-size: 50px;
  134.         padding: 130px 0 0 0;
  135.         font-family: {font:Title};
  136.     }
  137.    
  138.     #sidebar .title a {
  139.         color: {color:Sidebar Links};
  140.         text-decoration: none;
  141.     }
  142.    
  143.     #sidebar title a:hover {
  144.         color: {color:Sidebar Hover};
  145.     }
  146.    
  147.     #sidebar .description {
  148.         text-align: center;
  149.         color: #cd5cdc;
  150.         font-family: {font:Description};
  151.     }
  152.    
  153.     #sidebar .links {
  154.       font-size: 13px;
  155.       text-align: center;
  156.       padding: 5px 5px;
  157.       margin: 2px;
  158.       width: 186px;
  159.       font-family: {font:Sidebar Link Text};
  160.     }
  161.    
  162.     #sidebar .links a {
  163.         color: {color:Sidebar Links};
  164.         text-decoration: none;
  165.     }
  166.    
  167.     #sidebar .links a:hover {
  168.         color: {color:Sidebar Hover};
  169.     }
  170.           /*Stuffs*/
  171.       #credit {
  172.         position:fixed;
  173.         bottom:10px;
  174.         right:10px;
  175.         font-family:uni;
  176.         color:black;
  177.         font-size:15pt;
  178.         padding:5px;
  179.     }
  180.      
  181.     #credit a{
  182.         color: black;
  183.         background: white;
  184.         padding:5px;
  185.         border:1px solid black;
  186.         text-decoration: none;
  187.     }
  188.      
  189.     #credit a:hover{
  190.         color: #b0c4de;
  191.         text-decoration:line-through;
  192.     }
  193.      
  194.             {CustomCSS}
  195.         </style>
  196.     </head>
  197.   <body>
  198.  
  199.     <div id="sidebar">
  200.     <div class="title"><a href="/"><u>{Title}</u></a></div>
  201.     <img class="image" src="{image:Sidebar}" />
  202.     <div class="description">{Description}</div>
  203.    
  204.     <div class="links">
  205.     {block:AskEnabled}<a href="/ask>{AskLabel}</a>  {/block:AskEnabled}
  206.     {block:SubmissionsEnabled}<a href="/submit>{SubmitLabel}</a>  {/block:SubmissionsEnabled}
  207.     {block:HasPages}{block:Pages}<a href="{url}">{Label}</a> • {/block:Pages}{/block:HasPages}
  208.     </div>
  209.    
  210.  
  211.     </div>
  212.    
  213.      <div id="content">
  214.      
  215.      <div class = "autopagerize_page_element" >
  216.      {block:Posts}
  217.      <div id="posts">
  218.      
  219.          {block:Photo}
  220.     <div class-"title">{LinkOpenTag}<img src="{PhotoURL-500}" />{LinkCloseTag}</div>
  221.     {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  222.     {/block:Photo}
  223.    
  224.     {block:Photoset}
  225.     <div class="title">{Photoset-500}</div>
  226.     {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  227.     {/block:Photoset}
  228.    
  229.     {block:Video}
  230.     <div class="title">{Video-500}</div>
  231.     {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  232.     {/block:Video}
  233.    
  234.     {block:Audio}
  235.     <div class="title">{AudioPlayer}</div>
  236.     <br />{PlayCountWithLabel}
  237.     {block:Caption}<br /><div class="text">{Caption}</div>{/block:Caption}
  238.     {/block:Audio}
  239.    
  240.     {block:Text}
  241.     {block:Title}<div class="title">{Title}</div><br />{/block:Title}
  242.     <div class="text">{Body}</div>
  243.     {/block:Text}
  244.    
  245.     {block:Answer}
  246.     <div class="title">{Question}</div><br />
  247.     <div class="text">{Asker}</div><br />
  248.     <div class="text">{Answer}</div>
  249.     {/block:Answer}
  250.    
  251.     {block:Chat}
  252.     {block:Title}<div class="title">{Title}</div><br />{/block:Title}
  253.     {block:Lines}
  254.     {block:Label}<strong><div class="text">{Label}</div></strong>{/block:Label} {Line}<br  />
  255.     {/block:Lines}
  256.     {/block:Chat}
  257.    
  258.     {block:Link}
  259.     <a href="{URL}" ><div class="title">{Name}</div></a>
  260.     {block:Description}<br /><div class="text">{Description}</div>{/block:Description}
  261.     {/block:Link}
  262.    
  263.     <div id="permalink">
  264.     <a href="{Permalink}">
  265.     {block:Date}{lang:Posted TimeAgo}{/block:Date}
  266.     {block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
  267.     </a>
  268.     </div>
  269.    
  270.     {block:HasTags}<div id="tags">
  271.     {block:Tags}
  272.     <a href="{TagURL}">#{Tag} </a>
  273.     {/block:Tags}
  274.     </div>
  275.     {/block:HasTags}
  276.          
  277.      </div>
  278.      
  279.      {block:PostNotes}
  280.      <div id="notecontainer">{PostNotes}</div>
  281.      {/block:PostNotes}
  282.      
  283.      {/block:Posts}
  284.     </div>
  285.    
  286.  
  287.        
  288.     <div id="credit">
  289.         <div id="credit">
  290.     <a href="http://lavender-llama.tumblr.com/" title="Theme By Lavender Llama">&#9829;</a>
  291. </div>
  292.  
  293. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  294. <script type="text/javascript" src="http://arrow.scrolltotop.com/arrow79.js"></script>
  295. <noscript>Not seeing a <a href="http://www.scrolltotop.com/">Scroll to Top Button</a>? Go to our FAQ page for more info.</noscript>
  296.  
  297.      
  298.   </body>
  299. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement