Advertisement
theirins

LYDIA / theme #07

Jul 28th, 2014
5,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 11.44 KB | None | 0 0
  1. <!--
  2.  
  3. theme #07 by theirins
  4.  
  5. -->
  6.  
  7.  
  8. <!DOCTYPE html>
  9. <head>
  10.  
  11.  
  12. <title>{Title}</title>
  13.  
  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.  
  19. <!--Default Variables-->
  20.  
  21. <meta name="color:background" content="#ffffff"/>
  22. <meta name="color:text" content="#949494"/>
  23. <meta name="color:link" content="#949494"/>
  24. <meta name="color:linkhover" content="#bbbbbb"/>
  25. <meta name="color:scrollbar" content="#d5d5d5" />
  26. <meta name="color:borders" content="#f3f3f3"/>
  27. <meta name="color:navbg" content="#fbfbfb"/>
  28. <meta name="color:audiobg" content="#fbfbfb"/>
  29. <meta name="color:heart" content="e28db3" />
  30.  
  31. <meta name="image:sidebar" content="" />
  32.  
  33. <meta name="text:Link 1 URL" content="" />
  34. <meta name="text:Link 1" content="" />
  35. <meta name="text:Link 2 URL" content="" />
  36. <meta name="text:Link 2" content="" />
  37. <meta name="text:Link 3 URL" content="" />
  38. <meta name="text:Link 3" content="" />
  39.  
  40.  
  41. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  42.  
  43. <script>
  44. $(document).ready(function(){
  45. $("#navtitle").click(function(){
  46. $("#navigation").slideToggle("slow");
  47. });
  48. });
  49. </script>
  50.  
  51.  
  52. <style type="text/css">
  53.  
  54.  
  55. ::-webkit-scrollbar{height: 5px;
  56. width: 5px;
  57. background-color:{color:background}}
  58. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  59. ::-webkit-scrollbar-track{background-color:{color:background};}
  60.  
  61.  
  62. blockquote {
  63. padding-left:9px;
  64. margin:6px 10px 6px 5px;
  65. border-left:1px solid {color:borders};
  66. max-width:500px!important;
  67. }
  68.  
  69. body {
  70. background:{color:background};
  71. color:{color:text};
  72. font-family:'helvetica';
  73. font-size:10px;
  74. text-align:justify;
  75. margin:0;
  76. line-height:14px;}
  77.  
  78.  
  79. a {
  80. text-decoration:none;
  81. color:{color:link};
  82. -moz-transition-duration:0.2s;
  83. -webkit-transition-duration:0.2s;
  84. -o-transition-duration:0.2s;
  85. }
  86.    
  87. a:hover {
  88. text-decoration:underline;
  89. color:{color:linkhover};
  90. -moz-transition-duration:0.2s;
  91. -webkit-transition-duration:0.2s;
  92. -o-transition-duration:0.2s;
  93. }
  94.  
  95.  
  96. img{
  97. opacity:1;
  98. border:none;
  99. text-decoration:none}
  100.  
  101.  
  102. b, strong {
  103. color:{color:text}}
  104. i, em {
  105. color:{color:text}}
  106. p {
  107. margin-top:5px;
  108. margin-bottom:5px}
  109. ol {
  110. list-style:normal;}
  111. ul {
  112. list-style:square;}
  113.  
  114. small {
  115. font-size:9px;}
  116.  
  117. big {
  118. font-size:12px;}
  119.  
  120.  
  121.  
  122.  
  123. #title {font-size:12px;
  124. line-height:14px;
  125. letter-spacing:1px;
  126. margin-bottom:9px;
  127. text-transform:uppercase;
  128. text-align:left;
  129. color:{color:text};
  130. }
  131.  
  132. #title a {
  133. color:{color:text};
  134. }
  135.  
  136.  
  137. #sidebarimg {
  138. width:187px;
  139. position:center;
  140. margin-left:0px;
  141. }
  142.  
  143. #sidebarimg img {
  144. width:187px;
  145. border:1px solid {color:borders};
  146. padding:6px;
  147. background:{color:navbg};
  148. }
  149.  
  150.  
  151. #side {
  152. position:fixed;
  153. margin-top:170px;
  154. padding:15px 15px 15px 15px;
  155. width:200px;
  156. margin-left:-240px;
  157. }
  158.  
  159.  
  160. #navtitle {
  161. padding:5px 5px;
  162. border:1px solid {color:borders};
  163. font-size:8px;
  164. letter-spacing:1px;
  165. text-transform:uppercase;
  166. color:{color:text};
  167. background:{color:navbg};
  168. margin-top:2px;}
  169.  
  170.  
  171. #navigation {
  172. width:198px;
  173. background:{color:navbg};
  174. display:none;
  175. position:absolute;
  176. font-size:8px;
  177. letter-spacing:1px;
  178. text-transform:uppercase;
  179. border:1px solid {color:borders};
  180. border-top:0px;
  181. }
  182.  
  183.  
  184. #navigation a {
  185. padding:5px 5px;
  186. border-bottom:1px solid {color:borders};
  187. text-decoration:none;
  188. display:block;
  189. }
  190.  
  191.  
  192. #navigation a:last-of-type {
  193. border-bottom:0px;
  194. }
  195.  
  196. #navigation a:hover {
  197. background:{color:background};
  198. color:{color:text};
  199. }
  200.  
  201.  
  202. #navtitle:after {
  203. position:absolute;
  204. content:'+';
  205. font-weight:bold;
  206. font-family:arial;
  207. font-size:15px;
  208. right:22px;
  209. margin-top:1px;}
  210.  
  211.  
  212. #description {
  213. padding-top:6px;
  214. color:{color:text};
  215. text-align:justify;
  216. }
  217.  
  218. #pagination {
  219. text-align:center;
  220. margin:0px 0;
  221. padding-top:6px;
  222. text-transform:uppercase;
  223. letter-spacing:1px;
  224. font-size:15px;
  225. }
  226.  
  227. #pagination a {
  228. text-decoration:none;
  229. line-height:13px;
  230. padding:0 0px;
  231. }
  232.  
  233.  
  234. #con {
  235. left:50%;
  236. margin-left:-270px;
  237. position:absolute;
  238. }
  239.  
  240. #entries {
  241. margin-top:75px;
  242. width:500px;
  243. margin-left:15px;
  244. }
  245.  
  246.  
  247.  
  248. #posts {
  249. width:500px;
  250. {block:IndexPage}
  251. margin-bottom:75px;
  252. {/block:IndexPage}
  253. {block:PermalinkPage}
  254. margin-bottom:50px;
  255. {/block:PermalinkPage}
  256. }
  257.  
  258. #posts img {
  259. max-width:500px;
  260. }
  261.  
  262.  
  263. #tquote{
  264. font-size:12px;
  265. line-height:18px;
  266. font-family:arial;
  267. text-transform:uppercase;
  268. text-align:justify;
  269. padding:10px;
  270. color:{color:text};
  271. }
  272.  
  273. #tquote b {
  274. font-size:12px;
  275. font-family:times;
  276. }
  277.  
  278. #source {
  279. text-align:center;
  280. font-size:10px;
  281. padding:10px 0;}
  282.  
  283.  
  284.  
  285. #posts img, #posts li, #posts blockquote {
  286. max-width: 100%
  287. }
  288.  
  289.  
  290.  
  291. .playbutton {
  292. overflow:hidden;
  293. position:relative;
  294. z-index:1000;
  295. width:26px;
  296. height:26px;
  297. margin:11px 11px 11px 11px;
  298. }
  299.    
  300. .playbox {
  301. float:left;
  302. background-color:#000;
  303. position:absolute;
  304. z-index:1000;
  305. width:50px;
  306. height:50px;
  307. margin:30px;
  308. -webkit-border-radius:50px;
  309. -moz-border-radius:50px;
  310. opacity:0.2;
  311. -moz-transition-duration:0.6s;
  312. -webkit-transition-duration:0.6s;
  313. -o-transition-duration:0.6s;
  314. }
  315.    
  316. .playbox:hover {
  317. opacity:0.9;
  318. -moz-transition-duration:0.6s;
  319. -webkit-transition-duration:0.6s;
  320. -o-transition-duration:0.6s;
  321. }
  322.  
  323.  
  324. .info {
  325. float:right;
  326. font-size:9px;
  327. text-align:left;
  328. width:333px;
  329. background-color:{color:audiobg};
  330. padding:25px;
  331. height:60px;
  332. line-height:150%;
  333. font-family:arial;
  334. letter-spacing:0px;
  335. font-family:arial;
  336. text-transform:lowercase;
  337. }
  338.  
  339. .info i {
  340. font-style:normal;
  341. font-family:arial;
  342. font-size:11px;
  343. text-transform:uppercase;
  344. letter-spacing:1px;
  345. }
  346.  
  347. .info b {
  348. font-family:arial;
  349. font-size:10px;
  350. text-transform:uppercase;
  351. letter-spacing:0px;
  352. }
  353.  
  354. .cover {
  355. position: relative;
  356. z-index: 1;
  357. width:80px;
  358. height:80px;
  359. outline:15px solid {color:audiobg};
  360. margin:15px;
  361. }
  362.  
  363.  
  364.  
  365. .ask {
  366. font-size:12px;
  367. font-weight:bold;
  368. text-align:left;
  369. font-style:italic;
  370. padding:10px;
  371. text-transform:uppercase;
  372. border-bottom: 1px dotted {color:borders};
  373. }
  374.  
  375. .question {
  376. font-size:9px;
  377. margin-top:-60px;
  378. margin-left:50px;
  379. letter-spacing:0px;
  380. padding:10px;
  381. text-align:left;
  382. color:{color:text};
  383. }
  384.  
  385. .ans {
  386. font-size:9px;
  387. letter-spacing:0px;
  388. text-align:left;
  389. padding:10px;
  390. color:{color:text};
  391. }
  392.  
  393.  
  394.  
  395. .chat ol {
  396. padding:0;
  397. line-height:180%;
  398. list-style:none;
  399. }
  400.  
  401. .line.odd {
  402. background:{color:borders};
  403. padding:5px;
  404. }
  405.  
  406. .line.even {
  407. padding:5px;
  408. }
  409.  
  410. .label {font-weight:bold;
  411. padding-right:1px;
  412. letter-spacing:1px;
  413. text-transform:uppercase;
  414. color:{color:text};
  415. }
  416.  
  417.  
  418.  
  419.  
  420. #permalink {
  421. margin-top:2px;
  422. font-size:8px;
  423. padding:1px 2px;
  424. text-transform:uppercase;
  425. letter-spacing:1px;
  426. text-align:right;
  427. }
  428.  
  429. #permalink a {margin:0 0px;
  430. }
  431.  
  432.  
  433. .tags {
  434. text-align:justify;
  435. font: 8px 'helvetica';
  436. padding:4px 2px 4px 2px;
  437. background-color:{color:navbg};
  438. border-bottom:1px solid {color:borders};
  439. letter-spacing: 1px;
  440. }
  441.  
  442. .tags a {
  443. color: {color:link};
  444. margin: 2px 2px 0 0;
  445. padding: 1px 1px;
  446. }
  447.  
  448. .tags a:hover {
  449. color:{color:linkhover};
  450. text-decoration:underline;
  451. }
  452.  
  453.  
  454.  
  455. .pagenotes {
  456. {block:IndexPage}
  457. display: none!important;
  458. {/block:IndexPage}
  459. {block:PermalinkPage}
  460. width:500px;
  461. {/block:PermalinkPage}
  462. text-align:left;
  463. }
  464.  
  465. .pagenotes img {
  466. display:none!important;}
  467. .pagenotes li {
  468. list-style-type:none;
  469. padding:5px 0px;
  470. text-align:left;
  471. margin:0 0 0 -40px;
  472. font-size:9px;
  473. text-transform:lowercase;
  474. }
  475.  
  476. .t {
  477. font-size:12px;
  478. font-weight:bold;
  479. letter-spacing:1px;
  480. color:{color:title};
  481. text-transform:uppercase;
  482. }
  483.  
  484.  
  485. #cred {
  486. font-family:arial;
  487. font-size: 10px;
  488. bottom:15px;
  489. font-style:none;
  490. right:20px;
  491. position:fixed;
  492. }
  493.  
  494.  
  495.  
  496. {CustomCSS}
  497.  
  498.  
  499. </style>
  500.    
  501.      
  502.  
  503. </head>
  504.  
  505.  
  506. <body>
  507.  
  508. <div id="cred">
  509. <a href="http://theirins.tumblr.com/"></a>
  510. </div>
  511.  
  512. <div id="con">
  513.  
  514. <div id="side">
  515.  
  516. <div id="sidebarimg"><center><a href="/"><img src="{image:sidebar}"></a></center></div>
  517.  
  518. <div id="navtitle">navigation</div>
  519. <div id="navigation">
  520. <a href="/">home</a>
  521. <a href="/ask">ask</a>
  522. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  523. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  524. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  525. </div>
  526.  
  527. <div id="description">{Description}</div>
  528.  
  529.  
  530.  
  531. <div id="pagination">
  532. {block:Pagination}
  533. {block:PreviousPage}
  534. <a href="{PreviousPage}">«</a>
  535. {/block:PreviousPage}
  536.  
  537.  
  538. {block:NextPage}
  539. <a href="{NextPage}">»</a>
  540. {/block:NextPage}
  541. {/block:Pagination}
  542. </div>
  543.  
  544.  
  545. </div>
  546.  
  547.  
  548.  
  549.  
  550. <div id="entries">
  551.  
  552. {block:Posts}
  553. <div id="posts">
  554.  
  555.  
  556. {block:Quote}
  557.  
  558.  
  559. <div id="tquote">« {Quote} »</div>
  560. {block:Source}<div id="source">― {Source}</div>{/block:Source}
  561. {/block:Quote}
  562.  
  563.  
  564.  
  565. {block:Text}
  566.  
  567. {block:Title}
  568. <div id="title">{Title}</div>{/block:Title}
  569. {Body}
  570.  
  571.  
  572. {/block:Text}
  573.  
  574. {block:Link}
  575.  
  576. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  577.  
  578. {/block:Link}
  579.  
  580. {block:Chat}
  581. {block:Title}
  582. <h1>{Title}</h1>
  583. {/block:Title}
  584. <div class="chat">
  585. <ol>{block:Lines}
  586. <li class="line {Alt}">
  587. {block:Label}
  588. <span class="label">
  589. {Label}</span>
  590. {/block:Label}{Line}</li>
  591. {/block:Lines}
  592. </ol></div>
  593. {/block:Chat}
  594.  
  595.  
  596. {block:Photo}
  597. <center><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></center>
  598. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  599. {/block:Photo}
  600.  
  601.  
  602. {block:Photoset}
  603. <center>{Photoset-500}</center>
  604. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  605. {/block:Photoset}
  606.  
  607.  
  608. {block:Video}
  609. {Video-500}
  610. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  611. {/block:Video}
  612.  
  613.  
  614.  
  615. {block:Audio}
  616. {block:AudioPlayer}
  617. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  618. {block:AlbumArt}
  619. <img src="{AlbumArtURL}" class="cover">
  620. {/block:AlbumArt}
  621. <div class="info">
  622. {block:TrackName}<i>{TrackName}</i>{/block:TrackName}<br/>
  623. {block:Artist}<b>Artist:</b> {Artist}{/block:Artist}<br/>
  624. {block:Album}<b>Album:</b> {Album}{/block:Album}<br/>
  625. <b>Plays:</b> {PlayCountWithLabel}
  626. </div>
  627. {/block:AudioPlayer}
  628. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
  629. {/block:Audio}
  630.  
  631.  
  632.  
  633. {block:Answer}<div id="askbox"><div class="pic"><a href="{AskerURL}"><img src="{AskerPortraitURL-48}" /></a></div><div class="question"><span class="asker">{Asker}:</span><br>{Question}</div></div><br><div class="answer">{Answer}</div>{/block:Answer}
  634.  
  635.  
  636. <div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>
  637. {block:Date}
  638.  
  639. {block:Date}
  640. {/block:Date}
  641. <div id="permalink">
  642. {block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date}{block:NoteCount} <font color="{color:heart}"></font> <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  643. </div>
  644.  
  645.  
  646.  
  647. </div>
  648.  
  649.  
  650.  
  651. {block:PermalinkPage}
  652. {/block:PermalinkPage}
  653. <div class="pagenotes">
  654. {block:NoteCount}<div class="t">notes</div>{/block:NoteCount}
  655. {PostNotes}
  656. </ol>
  657.  
  658.  
  659.  
  660. </div>
  661. {/block:PostNotes}
  662. {/block:Posts}
  663.  
  664.  
  665.  
  666. </div>
  667.  
  668. {block:ContentSource}
  669. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  670. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  671. {/block:SourceLogo}
  672. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  673. {/block:ContentSource}
  674.  
  675. {block:ReblogParentUrl}
  676. <!-- {URL}{block:SourceLogo}<img src="{BlackLogoURL}"
  677. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  678. {/block:SourceLogo}
  679. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  680. {/block:ReblogParentUrl}
  681.  
  682.  
  683. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement