Advertisement
Caylo

Theme 07

Aug 28th, 2013
688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 8.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!--
  4.  
  5. THEME 07 BY CAYLO (princeoberynn)
  6. Please don't steal, redistribute or remove credit!
  7. Thank you ♥
  8.  
  9. -->
  10.  
  11.  
  12. <html xml:lang="en" lang="en">
  13. <head><title>{Title}</title>
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  17.  
  18. <meta name="image:sidebar" content=""/>
  19. <meta name="color:Text" content="#333333"/>
  20. <meta name="color:Link" content="#cacaca"/>
  21. <meta name="color:Postborder" content="#cacaca"/>
  22. <meta name="color:Hover" content="#222222"/>
  23. <meta name="color:Sidebartext" content="#444444"/>
  24. <meta name="color:Sidebarlinks" content="#dddddd"/>
  25. <meta name="color:Info" content="#cacaca"/>
  26. <meta name="color:Info Hover" content="#222222"/>
  27. <meta name="color:Tags" content="#cacaca"/>
  28. <meta name="color:Tags Hover" content="#222222"/>
  29. <meta name="color:Pagination" content="#222222"/>
  30. <meta name="color:Pagination Hover" content="#222222"/>
  31. <meta name="text:Link1" content=""/>
  32. <meta name="text:Link1 URL" content="/"/>
  33. <meta name="text:Link2" content=""/>
  34. <meta name="text:Link2 URL" content="/"/>
  35. <meta name="text:Link3" content=""/>
  36. <meta name="text:Link3 URL" content="/"/>
  37.  
  38.  
  39. <style type="text/css">
  40.  
  41.  
  42.  
  43. body {
  44.     font-family: 'Cambria', serif;
  45.     font-size:10px;
  46.     color:{color:Text};
  47. }
  48.  
  49. a, a:visited {
  50.     color:{color:Link};
  51.     text-decoration:none;
  52.     outline:none;
  53.     -moz-outline-style:none;
  54.     -webkit-transition: all 0.7s ease;
  55.     -moz-transition: all 0.7s ease;
  56.     -o-transition: all 0.7s ease
  57. }
  58.  
  59. a:hover {
  60.     color:{color:Hover};
  61.     opacity:10;
  62.      -webkit-transition: all 0.7s ease;
  63.     -moz-transition: all 0.7s ease;
  64.     -o-transition: all 0.7s ease
  65. }
  66.  
  67.  
  68. pre, p{
  69.     white-space: -moz-pre-wrap;
  70.     white-space: -pre-wrap;
  71.     white-space: -o-pre-wrap;
  72.     white-space: pre-wrap;
  73.     word-wrap: break-word;
  74. }
  75.  
  76. small{
  77.     font-size:9px;
  78. }
  79.  
  80. img {
  81.     border:none;
  82. }
  83.  
  84. blockquote {
  85.     padding-left:5px;
  86.     border-left:2px solid;
  87. }
  88.    
  89. blockquote blockquote {
  90.     padding-left:5px;
  91.     border-left:2px solid;
  92. }
  93.  
  94.  
  95. h1 {
  96.     font-size:12px;
  97. }
  98.  
  99.  
  100. #entries {
  101.     padding:10px;
  102.     width: 500px;
  103.     margin-left: 440px;
  104.     font-size: 10px;
  105.     padding-top:30px;
  106.     margin-top: 30px;
  107.     margin-bottom: 20px;
  108.     position: absolute;
  109. }
  110.  
  111. #post {
  112.     width:500px;
  113.     padding: 10px;
  114.     margin-top: 35px;
  115.     padding-bottom: 20px;
  116. }
  117.  
  118. #sidebar{
  119.     margin-top: 190px;
  120.     margin-left: 220px;
  121.     position:fixed;
  122.     width: 130px;
  123.     color:{color:sidebartext};
  124. }
  125.  
  126. #sidebarimage img{
  127.     width:130px;
  128. }
  129.  
  130. #description{
  131.     opacity:0;
  132.     margin-top:40px;
  133.     position:absolute;
  134.     text-align: center;
  135.     padding:0px 7px;
  136.     -webkit-transition: all 0.6s ease;
  137.     -moz-transition: all 0.6s ease;
  138.     -o-transition: all 0.6s ease;
  139.     -ms-transition: all 0.6s ease;
  140. }
  141.  
  142. #sidebar:hover #description{
  143.     opacity:1;
  144.     margin-top:58px;
  145.     -webkit-transition: all 0.6s ease;
  146.     -moz-transition: all 0.6s ease;
  147.     -o-transition: all 0.6s ease;
  148.     -ms-transition: all 0.6s ease;
  149. }
  150.  
  151. #links{
  152.     float:left;
  153.     margin-top:5px;
  154.     font-weight:bold;
  155. }
  156.    
  157. #links a{
  158.     font-family: 'calibri', sans-serif;
  159.     font-size:9px;
  160.     text-align: center;
  161.     text-transform: uppercase;
  162.     letter-spacing: 1px;
  163.     width: 60px;
  164.     padding: 4px 0;
  165.     margin: 2px;
  166.     border-bottom: 1px solid {color:sidebarlinks};
  167.     color:{color:sidebarlinks};
  168.     display: inline-block;
  169.     -webkit-transition: all 0.7s ease;
  170.     -moz-transition: all 0.7s ease;
  171.     -o-transition: all 0.7s ease
  172. }
  173.  
  174. #links a:hover{
  175.     color:{color:hover};
  176.     -webkit-transition: all 0.7s ease;
  177.     -moz-transition: all 0.7s ease;
  178.     -o-transition: all 0.7s ease
  179. }
  180.  
  181. #ask {
  182.     padding: 15px;
  183.     text-align:center;
  184.     border: 3px double {color:postborder};
  185. }
  186.  
  187. #asker{
  188.     text-transform: uppercase;
  189.     font-family: 'consolas', monospace;
  190.     letter-spacing: 1px;
  191.     text-align: center;
  192. }
  193.  
  194. #question {
  195. }
  196.  
  197. #dates{
  198.     height:15px;
  199.     margin-top:10px;
  200.     font-size:9px;
  201.     border-bottom: 1px solid {color:postborder};
  202. }
  203.  
  204.  
  205. #info {
  206.     opacity:0;
  207.     font-family: consolas;
  208.     font-size: 9px;
  209.     text-transform: uppercase;
  210.     position:absolute;
  211.     margin-top:8px;
  212.     width:500px;
  213.     padding:3px;
  214.     text-align:center;
  215.     -webkit-transition: all 0.6s ease-in-out;
  216.     -moz-transition: all 0.6s ease-in-out;
  217.     -o-transition: all 0.6s ease-in-out;
  218.     -ms-transition: all 0.6s ease-in-out;
  219. }
  220.  
  221. #info a{
  222.     color:{color:info};
  223. }
  224.  
  225. #info a:hover{
  226.     color:{color:info hover};
  227. }
  228.  
  229. #tags {
  230.     font-family: 'consolas', monospace;
  231.     font-size: 10px;
  232.     opacity:0;
  233.     position:absolute;
  234.     width:500px;
  235.     margin-top:8px;
  236.     padding-top:3px;
  237.     text-align: center;
  238.     -webkit-transition: all 0.6s ease-in-out;
  239.     -moz-transition: all 0.6s ease-in-out;
  240.     -o-transition: all 0.6s ease-in-out;
  241.     -ms-transition: all 0.6s ease-in-out;
  242. }
  243.  
  244. #tags a{
  245.     color:{color:tags};
  246. }
  247.  
  248. #tags a:hover{
  249.     color:{color:tags hover};
  250. }
  251.  
  252. #post:hover #info{
  253.     margin-top: 0px;
  254.     opacity:1;
  255.     -webkit-transition: all 0.6s ease-in-out;
  256.     -moz-transition: all 0.6s ease-in-out;
  257.     -o-transition: all 0.6s ease-in-out;
  258.     -ms-transition: all 0.6s ease-in-out;
  259. }
  260.  
  261. #post:hover #tags{
  262.     margin-top: 16px;
  263.     opacity:1;
  264.     -webkit-transition: all 0.6s ease-in-out;
  265.     -moz-transition: all 0.6s ease-in-out;
  266.     -o-transition: all 0.6s ease-in-out;
  267.     -ms-transition: all 0.6s ease-in-out;
  268. }
  269.    
  270. #tags a {
  271.     text-align: center;
  272.     -webkit-transition: all 0.6s ease-in-out;
  273.     -moz-transition: all 0.6s ease-in-out;
  274.     -o-transition: all 0.6s ease-in-out;
  275.     -ms-transition: all 0.6s ease-in-out;
  276.     transition: all 0.6s ease-in-out;}  
  277.  
  278. .tag{
  279.     padding: 0 4px;
  280.     display:inline;
  281. }
  282.    
  283. #pagination{
  284.     position:fixed;
  285.     padding: 8px;
  286.     margin-top: 320px;
  287.     margin-left: 1020px;
  288.     font-size: 13px;
  289.     text-transform:uppercase;
  290.     font-family: 'Calibri', sans-serif;
  291.     display: block;
  292.     border-left: 1px solid {color:postborder};
  293. }
  294.  
  295. #pagination a{
  296.     color:{color:pagination};
  297. }
  298.    
  299. #pagination a:hover{
  300.     color:{color:pagination hover};
  301. }
  302.  
  303. #pag{
  304.     padding: 3px;
  305. }
  306.  
  307. {CustomCSS}</style></head><body>
  308.  
  309. <div id="sidebar">
  310. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  311. <div id="links">
  312. <a href="/">Home</a>
  313. <a href="{text:Link1 URL}">{text:Link1}</a>
  314. <a href="{text:Link2 URL}">{text:Link2}</a>
  315. <a href="{text:Link3 URL}">{text:Link3}</a>
  316. </div>
  317. <div id="description">{Description}</div>
  318. </div>
  319.  
  320. {block:Pagination}
  321. <div id="pagination">
  322. <div id="pag">{block:NextPage}<a href="{NextPage}">next »</a>{/block:NextPage}</div>
  323. <div id="pag">{block:PreviousPage}<a href="{PreviousPage}">« prev</a>{/block:PreviousPage}</div>
  324. </div>
  325. {/block:Pagination}
  326.  
  327. <div id="entries">
  328. {block:Posts}
  329. <div id="post">
  330.  
  331. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  332.  
  333. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  334.  
  335. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  336.  
  337. {block:Quote}<h1>"{Quote}"</h1><br/>- {Source}{/block:Quote}
  338.  
  339. {block:Link}<h1><a href="{URL}" {Target}>{Name} »</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  340.  
  341. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  342.  
  343. {block:Audio}
  344. {AudioPlayerWhite}
  345. {block:AudioEmbed}{AudioEmbed}{/block:AudioEmbed}
  346. {Caption}
  347. {/block:Audio}
  348.  
  349. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  350.  
  351. {block:Answer}<div id="ask"><div id="asker">{Asker} asked:</div><div id="question">{Question}</div></div>{Answer}{/block:Answer}
  352.  
  353. {block:Date}
  354. <div id="dates">
  355. <div id="info">
  356. <a href="{Permalink}">{TimeAgo}</a> {block:RebloggedFrom} · <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}  
  357. {block:ContentSource} · <a href="{SourceURL}">source</a>{/block:ContentSource}{block:NoteCount} · <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} · <a href="{ReblogURL}">Reblog</a></div>
  358.  
  359. {block:HasTags}<div id="tags">{block:Tags}<div class="tag"><a href="{TagURL}">#{Tag}</a> </div>{/block:Tags}</div>{/block:HasTags}
  360. </div></div>{/block:Date}
  361.  
  362. {/block:Posts}
  363.  
  364. {block:PostNotes}{PostNotes-16}{/block:PostNotes}
  365. </div>
  366.  
  367. <!-- CREDIT, PLEASE DONT TOUCH -->
  368.  
  369. <div style="position:fixed; bottom:6px; right:12px; font-size:8px; letter-spacing:1px; font-family:gautami;"><a href="http://carolinesthemes.tumblr.com/">CAYLO</a></center></div>
  370.  
  371.    
  372. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement