Advertisement
kotaanne

Theme 001

Mar 24th, 2013
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 8.08 KB | None | 0 0
  1.     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.     <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4.     <title>{Title}</title>
  5.     <link rel="shortcut icon" href="{Favicon}">
  6.     <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7.     {block:Description}
  8.     <meta name="description" content="{MetaDescription}" />
  9.     {/block:Description}
  10.      
  11.      
  12.     <head>
  13.          
  14.     <!----
  15.      
  16.     © Kota (masterrjedi) Here's my first theme being released, yay! You are free to move the credit to a secondary page if you want and replace it with a third link, but PLEASE keep it somewhere on your blog.
  17.  
  18.    ---->
  19.  
  20.    <!-- VARIABLES -->
  21.    <link href='http://fonts.googleapis.com/css?family=Molle:400italic' rel='stylesheet' type='text/css'>
  22.    
  23.    <meta name="image:Background" content=""/>
  24.    <meta name="image:Sidebar Image" content="" />
  25.  
  26.    <meta name="color:Background" content="#fdf3ee" />
  27.    <meta name="color:Text" content="#beb3a4" />
  28.    <meta name="color:Bold" content="#809729" />
  29.    <meta name="color:Italic" content="#809729" />
  30.    <meta name="color:Link" content="#a09280" />
  31.    <meta name="color:Content BG" content="#ffffff" />
  32.    <meta name="color:Content Border" content="#ebebeb" />
  33.    <meta name="color:Info BG" content="#f8f1e8" />
  34.    <meta name="color:Info Border" content="#ebddcb" />
  35.    <meta name="text:Link 1 URL" content="http://" />
  36.    <meta name="text:Link 1" content="Link 1" />
  37.    <meta name="text:Link 2 URL" content="http://" />
  38.    <meta name="text:Link 2" content="Link 2" />
  39.    <meta name="text:ask" content="message" />
  40.    
  41.  
  42.    <meta name="text:Text Size" content="10px" />
  43.  
  44.    <style type="text/css">
  45.  
  46.    /* MAIN */
  47.    
  48.    body {
  49.        background-color:{color:Background};
  50.        background-image: url('{image:Background}');
  51.        color:{color:Text};
  52.        font-family: calibri;
  53.        font-size: {text:Text Size};
  54.        margin: 0px;
  55.        padding: 0px;}
  56.      
  57.    a:link, a:active {
  58.        text-decoration:none;
  59.        color: {color:Link}; }
  60.  
  61.     a:visited {
  62.        text-decoration:none;
  63.        color: {color:Link}; }
  64.  
  65.    a:hover {
  66.        text-decoration:none;
  67.        color: {color:Bold};
  68.        font-style:italic;}
  69.      
  70.    b, strong, .strong {color:{color:Bold};}
  71.  
  72.    blockquote {
  73.        border-left:2px solid {color:Text};
  74.        padding-left:6px; }
  75.      
  76.    #tumblr_controls{ position:fixed!important; right: 0px; top:0px;}
  77.      
  78.    i, em, .em {color:{color:Italic};}
  79.    
  80.    
  81.    .contentwhole {
  82.        width:520px;
  83.        margin-left:500px;
  84.        height:100%;}
  85.      
  86.    .content {
  87.        width: 500px;
  88.        height: auto;
  89.        padding:10px;
  90.        margin-top:20px;
  91.        background-color: {color:Content BG};
  92.        border:1px solid {color:Content Border};}
  93.  
  94.    .info {
  95.        height:15px;
  96.        float:center;
  97.        padding-top:4px;
  98.        margin-top:10px;
  99.        opacity:0.8;
  100.        text-align:center;
  101.        font-size:5px;
  102.        font-family:arial;
  103.        letter-spacing:1px;
  104.        background-color: {color:Info BG};
  105.        background-image:url('{image:Info BG}');
  106.        color:{color:Link};
  107.        border-top: 1px solid {color:Info Border};
  108.        border-bottom: 1px solid {color:Info Border};
  109.        width: 500px;  
  110.        text-transform:uppercase;
  111.        transition-duration: 0.6s;  
  112.        -moz-transition-duration: 0.6s;  
  113.        -webkit-transition-duration: 0.6s;  
  114.        -o-transition-duration: 0.6s; }
  115.    
  116.    .info a {
  117.        font-size:7px; }
  118.        
  119.    .info:hover {
  120.        opacity:1.0;
  121.        transition-duration: 0.6s;  
  122.        -moz-transition-duration: 0.6s;  
  123.        -webkit-transition-duration: 0.6s;  
  124.        -o-transition-duration: 0.6s; }
  125.        
  126.    #pagination {
  127.        font-size:15px;
  128.        margin:15px;
  129.        text-align:center;}
  130.        
  131.    /* SIDEBAR */
  132.    
  133.    
  134.  #sidebar {
  135.        width:250px;
  136.        position:fixed;
  137.        top:80px;
  138.        text-align:left;
  139.        background-color:transparent;
  140.        padding: 2px 0px 2px 0px;
  141.        left:30px;
  142.        height:auto;}
  143.  
  144.  
  145.     #sidebarimg img {
  146.        background-image:url('{image:Sidebar Image}');
  147.        background-repeat:no-repeat;
  148.        width:200px;
  149.        height:250px;
  150.        margin-bottom:10px;
  151.        opacity:3.0;
  152.        overflow: visible;
  153.        box-shadow: 5px 5px 16px #000000; }
  154.  
  155.      
  156.     #sidebarimg {
  157.        background-image:url('{image:Sidebar Image}');
  158.        background-repeat:no-repeat;
  159.        width:200px;
  160.        height:250px;
  161.        margin-bottom:10px;
  162.        opacity:3.0;
  163.        overflow: visible;
  164.        box-shadow: 5px 5px 16px #000000; }
  165.                
  166.    #extraslinks {
  167.        display:block;
  168.        font-size:7pt;
  169.        text-align:auto;
  170.        text-decoration:bold;
  171.        border:groove 2px #000000; }
  172.  
  173.    #desc {
  174.       border:double 1px #000000;
  175.       border-top-left-radius:20px;
  176.    border-top-right-radius:0px;
  177.    border-bottom-left-radius:10px;
  178.    border-bottom-right-radius:10px;
  179.    text-align:right;
  180.    overflow:auto; }
  181.    
  182.    #title {
  183.        font-family: 'Calibri', serif;
  184.        font-size:15pt;
  185.        text-align:center;
  186.        margin-bottom:5px
  187.        
  188.  
  189.        
  190.      
  191.        
  192.    </style>
  193.    
  194.    <div id="sidebar">
  195.    <div align="center">
  196.    <div id="title">
  197.    
  198.    {Title}
  199.    </div>
  200.    <div id="sidebarimg"></div>
  201.    <div id="desc">   {Description} </div>    <p>
  202.    <div id="extralinks"> <a href="/">home</a>
  203.    <a href="/ask">{text:ask}</a>
  204.    <a href="{text:Link 1 URL}">{text:Link 1}</a>
  205.    <a href="{text:Link 2 URL}">{text:Link 2}</a>
  206.    <a href="http://masterrjedi.tumblr.com">theme credit</a></div>
  207.    <div id="pagination">
  208.    {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><<></a>{/block:PreviousPage}
  209.    {block:NextPage}<a href="{NextPage}">>></a>{/block:NextPage}{/block:Pagination}    
  210.    </div>
  211.    </div>
  212.    </div>
  213.    </div>
  214.    </div>
  215.    </div>
  216.  
  217.  
  218.  
  219.    <div class="contentwhole">
  220.    {block:Posts}
  221.        
  222.    <div class="content">
  223.    {block:Text}
  224.    {block:Title}
  225.    <a href="{Permalink}" class="ttitle">{Title}</a>
  226.    {/block:Title}
  227.    {Body}
  228.    {/block:Text}
  229.  
  230.    {block:Photo}
  231.    <img class="photo" src="{PhotoURL-500}" alt="{PhotoAlt}" />
  232.    {block:Caption}{Caption}{/block:Caption}
  233.    {/block:Photo}
  234.    
  235.    {block:Photoset}
  236.    {Photoset-500}
  237.    {block:Caption}{Caption}{/block:Caption}
  238.    {/block:Photoset}
  239.  
  240.    {block:Quote}
  241.    {Quote}<p>
  242.    {block:Source}- {Source}{/block:Source}
  243.    {/block:Quote}
  244.  
  245.    {block:Link}
  246.    <a href="{URL}" target="{Target}" class="ttitle"> {Name} (x) </a>
  247.    {block:Description} {Description} {/block:Description}
  248.    {/block:Link}
  249.  
  250.    {block:Chat}
  251.    {block:Title} {Title} {/block:Title}
  252.    {block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  253.  
  254.    {/block:Lines}
  255.    {/block:Chat}
  256.  
  257.  
  258.    {block:Audio}
  259.    {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  260.    <p>
  261.    {block:AlbumArt}
  262.    <img src="{AlbumArtURL}" width="100px" />
  263.    {/block:AlbumArt}
  264.    <p>
  265.    {block:Caption}
  266.    {Caption}
  267.    {/block:Caption}
  268.    {/block:Audio}
  269.  
  270.  
  271.    {block:Video}
  272.    {Video-500}
  273.    {block:Caption}{Caption}{/block:Caption}
  274.    {/block:Video}
  275.  
  276.    {block:Answer}
  277.    {Asker} asked: {Question}<p>
  278.    {Answer}
  279.    {/block:Answer}
  280.  
  281.  
  282.    {block:PermalinkPage}
  283.    {block:ContentSource} Source: <a href="{SourceURL}" target="_blank">{SourceTitle}</a>{/block:ContentSource}<p>
  284.    {block:PostNotes}
  285. {PostNotes}
  286.    {/block:PostNotes}
  287.    {/block:PermalinkPage}
  288.  
  289.    <div class="info">
  290.    {block:Date}posted {TimeAgo}{/block:Date}
  291. {block:NoteCount}<a href="{Permalink}">with {NoteCountWithLabel}</a>{/block:NoteCount}</a>
  292.    </div>
  293.    
  294.    </div>
  295.  
  296.    {/block:Posts}
  297.    </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement