franzzfu

Theme 11: Wonderland - Sidebar

Apr 6th, 2014
1,519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <!----
  9.  
  10. theme11 by franz @ lestranqe.tumblr.com/
  11. DO NOT REMOVE THE CREDIT OR OFF WITH YOUR HEAD!
  12.  
  13. --->
  14.  
  15. <meta name="color:Background" content="#ffffff"/>
  16. <meta name="color:Text" content="#838282"/>
  17. <meta name="color:Link" content="#b8b8b8"/>
  18. <meta name="color:Hover" content=""/>
  19. <meta name="color:Border" content="#000000">
  20. <meta name="color:Title" content="#000000"/>
  21. <meta name="color:Text in box" content="#ffffff"/>
  22. <meta name="color:Sidebar hover" content=""/>
  23. <meta name="color:Scrollbar" content="#dfdfdf"/>
  24. <meta name="color:Scrollbar bg" content="#f7f7f7"/>
  25.  
  26. <meta name="image:Sidebar" content=""/>
  27.  
  28. <meta name="if:500px posts" content="1"/>
  29. <meta name="if:Big sidebar" content="1"/>
  30.  
  31. <meta name="text:link 1 title" content="link1"/>
  32. <meta name="text:link 1" content=""/>
  33. <meta name="text:link 2 title" content="link2"/>
  34. <meta name="text:link 2" content=""/>
  35. <meta name="text:link 3 title" content="link3"/>
  36. <meta name="text:link 3" content=""/>
  37. <meta name="text:link 4 title" content="link4"/>
  38. <meta name="text:link 4" content=""/>
  39.  
  40. <script language="JavaScript" src="http://dl.dropbox.com/u/3173073/GothicDarkness/qTip.js" type="text/JavaScript"></script>
  41.  
  42. <style>
  43. div#qTip {
  44. padding: 3px;
  45. display: none;
  46. text-align: center;
  47. position: absolute;
  48. font-size:8px;
  49. line-height:9px;
  50. font-family:baskerville;
  51. z-index: 1000;
  52. border: 1px solid {color:background};
  53. outline:1px solid {color:border};
  54. background-color: {color:border};
  55. color: {color:hover};
  56. text-transform:uppercase;
  57. letter-spacing: 2px;
  58. opacity:1;
  59. }
  60. </style>
  61.  
  62.  
  63.  
  64. <style type="text/css">
  65.  
  66. ::-webkit-scrollbar {width:5px;
  67. height:auto;
  68. background:{color:scrollbar bg};}
  69. ::-webkit-scrollbar-corner {background:{color:scrollbar bg};}
  70. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  71. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  72.  
  73.  
  74. /*main structure*/
  75.  
  76.  
  77. body {
  78. background:{color:background};
  79. margin:0px;
  80. color:{color:text};
  81. font-family:arial;
  82. font-size:10px;
  83. letter-spacing:1px;
  84. line-height:150%;
  85. }
  86.  
  87. a {
  88. text-decoration:none;
  89. outline:none;
  90. -moz-outline-style:none;
  91. color:{color:link};
  92. -webkit-transition:all .5s ease-in-out;
  93. -moz-transition:all .5s ease-in-out;
  94. transition:all .5s ease-in-out;
  95. }
  96.  
  97. a:hover {
  98. color:{color:hover};
  99. -webkit-transition:all 1s ease-in-out;
  100. -moz-transition:all 1s ease-in-out;
  101. transition:all 1s ease-in-out;
  102. }
  103.  
  104. img {
  105. {block:ifnot500pxposts}
  106. max-width:400px;
  107. {/block:ifnot500pxposts}
  108. border:none;
  109. }
  110.  
  111. blockquote {
  112. padding-left:5px;
  113. border-left:0px solid;
  114. }
  115.  
  116. blockquote blockquote {
  117. padding-left:5px;
  118. border-left:0px solid;
  119. }
  120.  
  121. #posttitle {
  122. {block:ifnot500pxposts}
  123. width:400px;
  124. {/block:ifnot500pxposts}
  125. {block:if500pxposts}
  126. width:500px;
  127. {/block:if500pxposts}
  128. text-align:center;
  129. font-family:arial;
  130. font-size:15px;
  131. line-height:130%;
  132. text-transform:lowercase;
  133. padding:5px 0;
  134. margin-bottom:5px;
  135. color:{color:text in box};
  136. background:{color:border};
  137. border:1px solid {color:background};
  138. outline:2px solid {color:border};
  139. }
  140.  
  141. #text{
  142. padding:5px;
  143. }
  144.  
  145. #entries {
  146. padding:30px;
  147. {block:ifnot500pxposts}
  148. width:400px;
  149. {/block:ifnot500pxposts}
  150. {block:if500pxposts}
  151. width:500px;
  152. {/block:if500pxposts}
  153. margin-left:400px;
  154. margin-top:80px;
  155. }
  156.  
  157. #post {
  158. {block:ifnot500pxposts}
  159. max-width:400px;
  160. {/block:ifnot500pxposts}
  161. {block:if500pxposts}
  162. max-width:500px;
  163. {/block:if500pxposts}
  164. width:100%;
  165. margin-bottom:80px;
  166. -ms-word-break: break-all;
  167. word-break: break-all;
  168. word-break: break-word;
  169. -webkit-hyphens: auto;
  170. -moz-hyphens: auto;
  171. -ms-hyphens: auto;
  172. hyphens: auto;
  173. }
  174.  
  175.  
  176. /*sidebar*/
  177.  
  178.  
  179. /*sidebar*/
  180.  
  181.  
  182. #sidebar {
  183. width:158px;
  184. text-align:center;
  185. margin-top:120px;
  186. margin-left:200px;
  187. position:fixed;
  188. }
  189.  
  190. #sidebarimage {
  191. max-width:150px;
  192. margin-left:auto;
  193. margin-right:auto;
  194. }
  195.  
  196. #sidebarimage img {
  197. max-width:150px;
  198. }
  199.  
  200. #title {
  201. width:158px;
  202. font-size:18px;
  203. font-family:arial;
  204. font-weight:bold;
  205. text-transform:lowercase;
  206. letter-spacing:0px;
  207. text-align:center;
  208. line-height:150%;
  209. margin-left:auto;
  210. margin-right:auto;
  211. }
  212.  
  213. #title a {
  214. color:{color:title};
  215. -webkit-transition:all .5s ease-in-out;
  216. -moz-transition:all .5s ease-in-out;
  217. transition:all .5s ease-in-out;
  218. }
  219.  
  220. #title a:hover {
  221. color:{color:hover};
  222. -webkit-transition:all 1s ease-in-out;
  223. -moz-transition:all 1s ease-in-out;
  224. transition:all 1s ease-in-out;
  225. }
  226.  
  227. #links {
  228. width:150px;
  229. background:{color:border};
  230. border:1px solid {color:background};
  231. outline:3px solid {color:border};
  232. text-align:center;
  233. font-size:12px;
  234. font-family:times;
  235. line-height:20px;
  236. margin-top:5px;
  237. margin-left:auto;
  238. margin-right:auto;
  239. }
  240.  
  241. #links a {
  242. display:inline-block;
  243. color:{color:text in box};
  244. background:{color:border};
  245. padding:2px 10px;
  246. text-align:center;
  247. -webkit-transition:all .5s ease-in-out;
  248. -moz-transition:all .5s ease-in-out;
  249. transition:all .5s ease-in-out;
  250. }
  251.  
  252. #links a:hover {
  253. color:{color:sidebar hover};
  254. -webkit-transition:all .5s ease-in-out;
  255. -moz-transition:all .5s ease-in-out;
  256. transition:all .5s ease-in-out;
  257. }
  258.  
  259. #description {
  260. width:150px;
  261. line-height:130%;
  262. letter-spacing:0px;
  263. text-align:justify;
  264. margin-top:10px;
  265. margin-left:auto;
  266. margin-right:auto;
  267. }
  268.  
  269.  
  270. /*post info and tags*/
  271.  
  272.  
  273. #info {
  274. margin-top:15px;
  275. font-size:12px;
  276. text-align:center;
  277. text-transform:uppercase;
  278. padding:8px;
  279. line-height:150%;
  280. }
  281.  
  282. #tags {
  283. text-transform:uppercase;
  284. font-size:9px;
  285. text-align:center;
  286. padding:10px;
  287. line-height:150%;
  288. opacity:0;
  289. -webkit-transition:all .5s ease-in-out;
  290. -moz-transition:all .5s ease-in-out;
  291. transition:all .5s ease-in-out;
  292. }
  293.  
  294. #post:hover #tags {
  295. opacity:1;
  296. -webkit-transition:all .8s ease-in-out;
  297. -moz-transition:all .8s ease-in-out;
  298. transition:all .8s ease-in-out;
  299. }
  300.  
  301.  
  302. /*quote*/
  303.  
  304.  
  305. .quote {
  306. text-align:center;
  307. font-size:18px;
  308. line-height:130%;
  309. margin-top:15px;
  310. font-family:baskerville;
  311. font-style:italic;
  312. letter-spacing:0px;
  313. }
  314.  
  315. .source {
  316. {block:ifnot500pxposts}
  317. width:400px;
  318. {/block:ifnot500pxposts}
  319. {block:if500pxposts}
  320. width:500px;
  321. {/block:if500pxposts}
  322. text-align:center;
  323. font-size:10px;
  324. padding:5px 0;
  325. color:{color:text in box};
  326. background:{color:border};
  327. border:1px solid {color:background};
  328. outline:2px solid {color:border};
  329. }
  330.  
  331.  
  332. /*chat*/
  333.  
  334. .chat ol {
  335. padding:0;
  336. line-height:150%;
  337. list-style:none;
  338. }
  339.  
  340. .line.odd {
  341. background:{color:border};
  342. border:1px solid {color:background};
  343. outline:2px solid {color:border};
  344. color:{color:text in box};
  345. padding:5px 10px;
  346. }
  347.  
  348. .line.even {
  349. background:{color:background};
  350. padding:5px 10px;
  351. border:1px solid transparent;
  352. outline:2px solid transparent;
  353. }
  354.  
  355. .label {
  356. padding-right:3px;
  357. text-transform:uppercase;
  358. }
  359.  
  360.  
  361. /*audio*/
  362.  
  363.  
  364. .cover {
  365. width:134px;
  366. position:relative;
  367. z-index:1
  368. }
  369.  
  370. .playbutton {
  371. width:20px;
  372. height:30px;
  373. overflow:hidden;
  374. position:relative;
  375. z-index:1000;
  376. margin:10px 19px 8px 11px;
  377. }
  378.  
  379. .playbox {
  380. background-color:#000;
  381. position:absolute;
  382. z-index:1000;
  383. margin-top:45px;
  384. margin-left:42px;
  385. -webkit-border-radius:50px;
  386. -moz-border-radius:50px;
  387. border-radius:50px;
  388. opacity:.8;
  389. }
  390.  
  391. .audioinfo {
  392. {block:ifnot500pxposts}
  393. width:246px;
  394. {/block:ifnot500pxposts}
  395. {block:if500pxposts}
  396. width:346px;
  397. {/block:if500pxposts}
  398. display:inline-block;
  399. line-height:130%;
  400. position:absolute;
  401. margin-left:20px;
  402. margin-top:2px;
  403. }
  404.  
  405. .track {
  406. font-size:8px;
  407. text-transform:uppercase;
  408. color:{color:text in box};
  409. background:{color:border};
  410. border:1px solid {color:background};
  411. outline:2px solid {color:border};
  412. padding:5px 0 5px 10px;
  413. margin-bottom:10px;
  414. }
  415.  
  416.  
  417. /*ask*/
  418.  
  419.  
  420. .ask {
  421. text-align:center;
  422. padding:5px;
  423. color:{color:text in box};
  424. background:{color:border};
  425. border:1px solid {color:background};
  426. outline:2px solid {color:border};
  427. }
  428.  
  429. .question {
  430. font-family:baskerville;
  431. font-style:italic;
  432. font-size:14px;
  433. }
  434.  
  435. .answer {
  436. padding:10px 5px 0px 5px;
  437. }
  438.  
  439.  
  440. /*permalinks page*/
  441.  
  442.  
  443. ol.notes {
  444. padding-left:6%;
  445. padding-bottom:2%;
  446. width:90%;
  447. text-align:center;
  448. list-style-type:decimal-leading-zero;
  449. }
  450.  
  451. ol.notes li.note{
  452. padding:2%;
  453. }
  454.  
  455. ol.notes li.note img.avatar{
  456. width:0px;
  457. height:0px;
  458. }
  459.  
  460.  
  461. /*pagination*/
  462.  
  463.  
  464. #pagi {
  465. width:150px;
  466. margin-bottom:80px;
  467. font-size:10px;
  468. text-transform:uppercase;
  469. text-align:center;
  470. background:{color:border};
  471. border:1px solid {color:background};
  472. outline:2px solid {color:border};
  473. padding:5px 0;
  474. margin-left:auto;
  475. margin-right:auto;
  476. }
  477.  
  478. #pagi a {
  479. color:{color:text in box};
  480. }
  481.  
  482. #pagi a:hover {
  483. color:{color:hover};
  484. }
  485.  
  486. /*credit*/
  487.  
  488.  
  489. #credit {
  490. position:fixed;
  491. float:right;
  492. opacity:1;
  493. bottom:5px;
  494. right:5px;
  495. padding:3px;
  496. border:1px solid {color:text};
  497. background-color:{color:background};
  498. font-size:8px;
  499. text-transform:uppercase;
  500. font-family:times;
  501. }
  502.  
  503. #credit a {
  504. color:{color:text};
  505. -webkit-transition:all .5s ease-in-out;
  506. -moz-transition:all .5s ease-in-out;
  507. transition:all .5s ease-in-out;
  508. }
  509.  
  510. #credit a:hover {
  511. color:{color:hover};
  512. -webkit-transition:all 1s ease-in-out;
  513. -moz-transition:all 1s ease-in-out;
  514. transition:all 1s ease-in-out;
  515. }
  516.  
  517.  
  518. {CustomCSS}
  519.  
  520. </style>
  521. </head>
  522.  
  523.  
  524. <body>
  525.  
  526. <div id="sidebar">
  527. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  528. <div id="title"><a href="/">{Title}</a></div>
  529. <div id="links">
  530. <a href="{text:link 1}"title="{text:link 1 title}">&spades;</a>
  531. <a href="{text:link 2}"title="{text:link 2 title}">&hearts;</a>
  532. <a href="{text:link 3}"title="{text:link 3 title}">&clubs;</a>
  533. <a href="{text:link 4}"title="{text:link 4 title}">&diams;</a>
  534. </div>
  535. <div id="description">{Description}</div>
  536. </div>
  537.  
  538. <div id="entries">
  539.  
  540. {block:Posts}
  541. <div id="post">
  542.  
  543. {block:Text}{block:Title}<div id="posttitle">{Title}</div>{/block:Title}<div id="text">{Body}</div>{/block:Text}
  544.  
  545. {block:Photo}
  546. {block:ifnot500pxposts}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:ifnot500pxposts}
  547. {block:if500pxposts}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:if500pxposts}
  548. {/block:Photo}
  549.  
  550. {block:Photoset}
  551. {block:ifnot500pxposts}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:ifnot500pxposts}
  552. {block:if500pxposts}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:if500pxposts}
  553. {/block:Photoset}
  554.  
  555. {block:Quote}
  556. {block:Source}<div class="source">-&nbsp;{Source}&nbsp;-</div>{/block:Source}
  557. <div class="quote">{Quote}</div>
  558. {/block:Quote}
  559.  
  560. {block:Link}<div id="posttitle"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  561.  
  562. {block:Chat}
  563. {block:Title}<div id="posttitle">{Title}</div>{/block:Title}
  564. <div class="chat"><ol>{block:Lines}<li class="line {Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}{Line}</li>{/block:Lines}</ol></div>
  565. {/block:Chat}
  566.  
  567. {block:Video}
  568. {block:ifnot500pxposts}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:ifnot500pxposts}
  569. {block:if500pxposts}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:if500pxposts}
  570. {/block:Video}
  571.  
  572. {block:Answer}
  573. <div class="ask">{Asker}</u> wondered<br><div class="question">{Question}</div></div>
  574. <div class="answer">{Answer}</div>
  575. {/block:Answer}
  576.  
  577. {block:Audio}
  578. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  579. {block:AlbumArt}
  580. <img src="{AlbumArtURL}" class="cover">
  581. {/block:AlbumArt}
  582. <div class="audioinfo">
  583. {block:TrackName}<div class="track">{TrackName}</div>{/block:TrackName}
  584. {block:Artist}<div class="track">{Artist}</div>{/block:Artist}
  585. {block:Album}<div class="track">{Album}</div>{/block:Album}
  586. <div class="track">{FormattedPlayCount}</div>
  587. </div>
  588. {/block:Audio}
  589.  
  590. <div id="info">
  591. {block:Date}{DayOfMonth}.{MonthNumber}.{ShortYear}{/block:Date} +<a href="{Permalink}">{NoteCount}</a> <a href="{ReblogURL}" target="_blank">&rArr;</a><br>
  592. {block:PermalinkPage}<span style="font-size:8px;">{block:RebloggedFrom}<a href="{ReblogParentURL}"title="{ReblogParentName}">via</a>&nbsp;/&nbsp;<a href="{ReblogRootURL}"title="{ReblogRootName}">Source</a>{/block:RebloggedFrom}</span>{/block:PermalinkPage}
  593. </div>
  594.  
  595. <div id="tags">
  596. {block:HasTags}{block:Tags}#&nbsp;<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}{/block:HasTags}</div>
  597. </div>
  598.  
  599. {block:PostNotes}{PostNotes}{/block:PostNotes}
  600. {/block:Posts}
  601.  
  602. {block:Pagination}
  603. <div id="pagi">
  604. {block:PreviousPage}<a href="{PreviousPage}">&larr;</a>&nbsp;{/block:PreviousPage}<span style="color:{color:text in box};">{CurrentPage} of {TotalPages}</span>{block:NextPage}&nbsp;<a href="{NextPage}">&rarr;</a>{/block:NextPage}
  605. </div>
  606. {/block:Pagination}
  607.  
  608. </div>
  609.  
  610. <div id="credit"><a href="http://lestranqe.tumblr.com/">FZ</a></div>
  611.  
  612. </body>
  613. </html>
Advertisement
Add Comment
Please, Sign In to add comment