Caylo

Theme 03

Jul 3rd, 2013
789
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 7.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!--
  4.  
  5. THEME 03 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="color:Text" content="#9e9e9e"/>
  19. <meta name="color:Title" content="#444444"/>
  20. <meta name="color:Desctext" content="#9e9e9e"/>
  21. <meta name="color:Link" content="#ababab"/>
  22. <meta name="color:Sidebarlink" content="#ababab"/>
  23. <meta name="color:Hover" content="#9cb859"/>
  24. <meta name="color:Border" content="#9e9e9e"/>
  25. <meta name="color:Post" content="#ffffff"/>
  26. <meta name="color:Info" content="#9e9e9e"/>
  27. <meta name="color:Tags" content="#9e9e9e"/>
  28.  
  29. <meta name="image:sidebar" content=""/>
  30. <meta name="text:Link 1" content="" />
  31. <meta name="text:Link 1 url" content="" />
  32. <meta name="text:Link 2" content="" />
  33. <meta name="text:Link 2 url" content="" />
  34. <meta name="text:Link 3" content="" />
  35. <meta name="text:Link 3 url" content="" />
  36. <meta name="text:Link 4" content="" />
  37. <meta name="text:Link 4 url" content="" />
  38. <meta name="text:Link 5" content="" />
  39. <meta name="text:Link 5 url" content="" />
  40.  
  41. <style type="text/css">
  42.  
  43.  
  44. ::-webkit-scrollbar {
  45.     width: 5px;
  46.     height: 5px;
  47. }
  48. ::-webkit-scrollbar-track-piece {
  49.     background-color: #fff;
  50. }
  51. ::-webkit-scrollbar-thumb:vertical {
  52.     height: 20px;
  53.     background-color: #aaa;
  54.     border-top: 1px solid #aaa;
  55.     border-bottom:1px solid #aaa;
  56. }
  57.  
  58.  
  59. body {
  60.     margin:0px;
  61.     color:{color:text};
  62.     font-family:'times', serif;
  63.     font-size:11px;
  64.     line-height:110%;
  65. }
  66.  
  67. a {
  68.     text-decoration:none;
  69.     outline:none;
  70.     color:{color:link};
  71.     -webkit-transition: all 0.7s ease;
  72.     -moz-transition: all 0.7s ease;
  73.     -o-transition: all 0.7s ease;
  74. }
  75.  
  76. a:hover {
  77.     opacity:10;
  78.     color:{color:hover};
  79.     -webkit-transition: all 0.7s ease;
  80.     -moz-transition: all 0.7s ease;
  81.     -o-transition: all 0.7s ease;
  82. }
  83.  
  84. small{
  85.     font-size:9px;
  86. }
  87.  
  88. img {
  89.     border:none;
  90. }
  91.  
  92. blockquote {
  93.     padding-left: 8px;
  94.     border-left:1px solid;
  95. }
  96.    
  97. blockquote blockquote {
  98.     padding-left:8px;
  99.     border-left:1px solid;
  100. }
  101.  
  102. h1 {
  103.     font-size:13px;
  104.     font-family: 'times', serif;
  105.     letter-spacing: 1px;
  106.     text-transform: uppercase;
  107. }
  108.  
  109. #sidebar {
  110.     position:fixed;
  111.     width:370px;
  112.     margin-left:100px;
  113.     margin-top:240px;
  114. }
  115.  
  116. #sidebarimage {
  117.     float:left;
  118.     width:120px;
  119. }
  120.  
  121. #sidebarimage img {
  122.     width:120px;
  123.     height:120px;
  124.     padding:8px;
  125.     border: 1px solid {color:border};
  126. }
  127.  
  128. #links {
  129.     margin-left: 21px;
  130.     margin-top: 21px;
  131.     padding: 8px 2px;
  132.     width: 90px;
  133.     font-family:'times';
  134.     text-align:center;
  135.     text-transform:uppercase;
  136.     position:absolute;
  137.     background-color: white;
  138.     opacity:0;
  139.     -moz-transition-duration:0.7s;
  140.     -webkit-transition-duration:0.7s;
  141.     -o-transition-duration:0.7s;
  142. }
  143.  
  144. #links a {
  145.     color: {color:sidebarlink};
  146.     font-size: 9px;
  147.     width: 90px;
  148.     display: block;
  149.     height: 10px;
  150.     padding: 3px 0px;
  151. }
  152.  
  153. #links a:hover {
  154.    color: {color:Hover};
  155.    font-size: 12px;
  156. }
  157.  
  158. #sidebar:hover #links{
  159.     opacity:0.9;
  160.     -moz-transition-duration:0.7s;
  161.     -webkit-transition-duration:0.7s;
  162.     -o-transition-duration:0.7s;
  163. }
  164.  
  165. #wrapper{
  166.     float:right;
  167.     width:220px;
  168.     margin-top:35px;
  169. }
  170.  
  171. #title{
  172.     text-transform:uppercase;
  173.     font-size:15px;
  174.     font-family:'Trajan pro', serif;
  175.     text-align:left;
  176.     letter-spacing:1px;
  177.     line-height:120%;
  178. }
  179.  
  180. #title a{
  181.     color:{color:title};
  182. }
  183.  
  184. #description {
  185.     margin-left:7px;
  186.     font-family:'Cambria', serif;
  187.     font-size:11px;
  188.     width:180px;
  189.     padding-top:8px;
  190.     color: {color:desctext};
  191. }
  192.  
  193. #pagination{
  194.     padding-top:10px;
  195.     width:180px;
  196.     text-align:right;
  197.     font-family:'times', serif;
  198. }
  199.  
  200. #entries {
  201.     padding: 10px;
  202.     width: 500px;
  203.     margin-left: 500px;
  204.     margin-top: 40px;
  205.     position: absolute;
  206. }
  207.  
  208. #post {
  209.     width:500px;
  210.     padding-bottom:20px;
  211.     padding:10px;
  212.     margin-top:20px;
  213.     background-color:{color:Post};
  214. }
  215.  
  216. #info {
  217.     font-family:'times', serif;
  218.     text-align: center;
  219.     margin-top: 20px;
  220.     text-transform: uppercase;
  221.     font-size: 9px;
  222.     border-top: 1px solid #dddddd;
  223. }
  224.  
  225. #info a{
  226.     color:{color:info};
  227. }
  228.  
  229. #info a:hover{
  230.     color: {color:hover};
  231. }
  232.  
  233. #tags {
  234.     font-family: 'Cambria', serif;
  235.     font-size:10px;
  236.     margin-top:4px;
  237.     text-align:center;
  238.     text-transform:none;
  239. }
  240.    
  241. #tags a{
  242.     color: {color:tags};
  243.     display: inline;
  244.     padding: 3px;
  245. }  
  246.  
  247. #quotesource{
  248.     font-size:13px;
  249.     text-align:right;
  250.     margin-right:25px;
  251. }
  252.  
  253. #chatter{
  254.     text-align:right;
  255. }
  256.  
  257. #asker {
  258.     padding: 5px;
  259.     width: 450px;
  260.     text-align: left;
  261.     margin-top: -55px;
  262.     margin-left: 55px;
  263. }
  264.  
  265. #question{
  266.     min-height: 50px;
  267. }
  268.  
  269. #question img{
  270.     padding:4px;
  271.     border: 1px solid {color:border};
  272. }
  273.  
  274.  
  275. {CustomCSS}</style></head><body>
  276.  
  277. <div id="sidebar">
  278.  
  279. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  280. <div id="links">
  281.         <a href="{text:link 1 url}">{text:link 1}</a>
  282.         <a href="{text:link 2 url}">{text:link 2}</a>
  283.         <a href="{text:link 3 url}">{text:link 3}</a>
  284.         <a href="{text:link 4 url}">{text:link 4}</a>
  285.         <a href="{text:link 5 url}">{text:link 5}</a>
  286. </div>
  287. <div id="wrapper">
  288. <div id="title"><a href="/">{Title}</a></div>
  289. <div id="description">{Description}</div>
  290. <div id="pagination">
  291. {block:Pagination}
  292. {block:PreviousPage}<a href="{PreviousPage}">«</a>&nbsp;&nbsp;{/block:PreviousPage}
  293. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  294. {/block:Pagination}
  295. </div>
  296. </div>
  297.  
  298.  
  299. </div>
  300.  
  301. <div id="entries">{block:Posts}<div id="post">
  302.  
  303. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  304.  
  305. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  306.  
  307. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  308.  
  309. {block:Quote}<h1>"{Quote}"</h1><div id="quotesource">{Source}</div>{/block:Quote}
  310.  
  311. {block:Link}<h1><a href="{URL}" {Target}>{Name} →</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  312.  
  313. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}
  314. <table>
  315. {block:Lines}
  316. <tr><td><div id="chatter">{block:Label}<b>{Label}</b>{/block:Label}</div></td>
  317. <td>{Line}</td></tr>{/block:Lines}
  318. </table>{/block:Chat}
  319.  
  320. {block:AudioEmbed}
  321. {AudioEmbed}
  322. {/block:AudioEmbed}
  323.  
  324. {block:Audio}
  325.    {AudioPlayerWhite}
  326.    {block:Caption}{Caption}{/block:Caption}
  327. {/block:Audio}
  328.  
  329. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  330.  
  331. {block:Answer}
  332. <div id="question">
  333. <img src="{AskerPortraitURL-40}">
  334. <div id="asker"><b>{Asker} asked:</b> <br/>
  335. {Question}</div></div>{Answer}{/block:Answer}
  336.  
  337. {block:Date}
  338. <div id="info">
  339. <br><a href="{Permalink}">{TimeAgo}</a> {block:RebloggedFrom} &nbsp;&nbsp;-&nbsp;&nbsp; <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:ContentSource}&nbsp;&nbsp;-&nbsp;&nbsp; <a href="{SourceURL}">source</a>{/block:ContentSource}
  340. &nbsp;&nbsp;-&nbsp;&nbsp; <a href="{Permalink}">{NoteCountWithLabel}</a>
  341. {block:HasTags}<div id="tags">{block:Tags} <a href="{TagURL}">#{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  342. {/block:Date}
  343. {/block:Posts}
  344. {/block:Posts}
  345. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  346. </div>
  347.  
  348.  
  349. <!-- CREDIT, PLEASE DON'T TOUCH -->
  350.  
  351. <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></div>
  352.  
  353.    
  354. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment