Advertisement
harreyeh

theme 13: tiana

Jun 1st, 2014
1,313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.15 KB | None | 0 0
  1. <!-- tiana theme, by hardziam // themesbyzsu.tumblr.com-->
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6.  
  7. <head>
  8.  
  9. <title>{Title}</title>
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12.  
  13.  
  14. <meta name="font:Title" content="Trebuchet MS" />
  15. <meta name="if:Uppercase Title" content="1" />
  16.  
  17. <meta name="color:Background" content="#fff" />
  18. <meta name="color:Body" content="#333" />
  19. <meta name="color:Link" content="#333" />
  20. <meta name="color:Header" content="#65d4f9" />
  21. <meta name="color:Title Border" content="#65d4f9" />
  22. <meta name="color:Link Hover" content="#c48e8e" />
  23.  
  24. <meta name="image:Header" content="" />
  25.  
  26. <meta name="text:Link1" content="link" />
  27. <meta name="text:Link1 URL" content="/" />
  28. <meta name="text:Link2" content="link" />
  29. <meta name="text:Link2 URL" content="/" />
  30. <meta name="text:Link3" content="link" />
  31. <meta name="text:Link3 URL" content="/" />
  32. <meta name="text:Link4" content="link" />
  33. <meta name="text:Link4 URL" content="/" />
  34. <meta name="text:Link5" content="link" />
  35. <meta name="text:Link5 URL" content="/" />
  36. <meta name="text:Title Font Size" content="20px" />
  37.  
  38.  
  39. <script type="text/javascript" src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script>
  40.  
  41. <script type="text/javascript">
  42. $(window).scroll(function() {
  43.  
  44. var headerH = $('.header').outerHeight(true);
  45. //this will calculate header's full height, with borders, margins, paddings
  46. var scrollTopVal = $(this).scrollTop();
  47. if ( scrollTopVal > headerH ) {
  48. $('#navibar').css({'opacity':'1'});
  49.  
  50. } else {
  51. $('#navibar').css({'opacity':'0'});
  52. }
  53.  
  54.  
  55. });
  56. </script>
  57. <style type="text/css">
  58.  
  59. body {
  60. background: {color:Background};
  61. background-image: url('{image:Background}');
  62. position:absolute;
  63. width:100%;
  64. margin:0;
  65. font-size:12px;
  66. font-family: 'Arial';
  67. color:{color:Body};
  68. }
  69.  
  70. blockquote {
  71. border-left: 3px solid #eee;
  72. padding:5px;
  73. padding-left:10px;
  74. text-align: justify;
  75. }
  76.  
  77. blockquote img {
  78. max-width: 100%;
  79. display: block;
  80. margin-bottom: 5px;
  81. }
  82.  
  83. blockquote blockquote {
  84. margin: 10px;
  85. padding: 10px;
  86. }
  87.  
  88. a {
  89. text-decoration:none;
  90. outline:none;
  91. color:{color:Link};
  92. -webkit-transition: all 0.5s ease-in-out;
  93. -moz-transition: all 0.5s ease-in-out;
  94. -o-transition: all 0.5s ease-in-out;
  95. }
  96.  
  97. a:hover {
  98. color:{color:Link Hover};
  99. -webkit-transition: all 0.5s ease-in-out;
  100. -moz-transition: all 0.5s ease-in-out;
  101. -o-transition: all 0.5s ease-in-out;
  102. }
  103.  
  104. h1 {
  105. font-family:{font:Body};
  106. text-align:center;
  107. }
  108.  
  109. h2 {
  110. font-family:tahoma;
  111. text-transform:uppercase;
  112. padding:5px;
  113. color:{color:Link};
  114. }
  115.  
  116. /* SIDEBAR */
  117.  
  118. #sidebar{
  119. height:250px;
  120. width:100%;
  121. position:fixed;
  122. z-index:2;
  123. background: {color:Header} url('{image:Header}') no-repeat;
  124. background-position:center bottom;
  125. }
  126.  
  127. #topheader{
  128. position:absolute;
  129. width:100%;
  130. left:0;
  131. padding-top:40px;
  132. margin-top:250px;
  133. height:200px;
  134. z-index:100;
  135. background:white;
  136. }
  137.  
  138. #navibar {
  139. position:fixed;
  140. bottom:0;
  141. margin-left:-210px;
  142. width:200px;
  143. font-family:'Trebuchet MS';
  144. text-align:right;
  145. height:110px;
  146. opacity:0;
  147. text-transform:uppercase;
  148. }
  149.  
  150. #numbers{
  151. text-align:right;
  152. line-height:20px;
  153. color:white;
  154. }
  155.  
  156. #numbers a{
  157. display: block;
  158. color:black;
  159. border-right:3px solid {color:Title Border};
  160. font-weight:bold;
  161. padding-right:5px;
  162. color:{color:Background};
  163. transition-duration:0.3s;
  164. -moz-transition-duration:0.3s;
  165. -webkit-transition-duration:0.3s;
  166. -o-transition-duration:0.3s;
  167. }
  168.  
  169. #numbers span{
  170. padding-left:20px;
  171. color:black;
  172. transition-duration:0.3s;
  173. -moz-transition-duration:0.3s;
  174. -webkit-transition-duration:0.3s;
  175. -o-transition-duration:0.3s;
  176. }
  177.  
  178. #numbers a:hover{
  179. color:black;
  180. transition-duration:0.7s;
  181. -moz-transition-duration:0.7s;
  182. -webkit-transition-duration:0.7s;
  183. -o-transition-duration:0.7s;
  184. }
  185.  
  186. #numbers a:hover span{
  187. padding-left:0;
  188. color:{color:Title Border};
  189. transition-duration:0.5s;
  190. -moz-transition-duration:0.5s;
  191. -webkit-transition-duration:0.5s;
  192. -o-transition-duration:0.5s;
  193. }
  194.  
  195. #desc{
  196. width:400px;
  197. padding:5px 52px 30px;
  198. height:60px;
  199. margin-top:60px;
  200. left:30%;
  201. position:absolute;
  202. text-align:justify;
  203. border-bottom:1px solid #ccc;
  204. }
  205.  
  206. #links{
  207. text-transform:uppercase;
  208. font-weight:bold;
  209. margin-top:5px;
  210. width:300px;
  211. font-family:Trebuchet MS;
  212. font-size:10px;
  213. }
  214.  
  215. #links a{
  216. color:black;
  217. display:inline-block;
  218. margin-right:5px;
  219. }
  220.  
  221. #links a span{
  222.  
  223. transition-duration:0.3s;
  224. -moz-transition-duration:0.3s;
  225. -webkit-transition-duration:0.3s;
  226. -o-transition-duration:0.3s;
  227. }
  228.  
  229. #links a:hover span{
  230. color:{color:Title Border};
  231. transition-duration:0.3s;
  232. -moz-transition-duration:0.3s;
  233. -webkit-transition-duration:0.3s;
  234. -o-transition-duration:0.3s;
  235. }
  236.  
  237. .svg-wrapper {
  238. text-align:center;
  239. position: absolute;
  240. left:30%;
  241. transform: translateY(-50%);
  242. margin: 0 auto;
  243. margin-top:30px;
  244. margin-bottom:-20px;
  245. margin-right:10px;
  246. padding-left:10px;
  247. width: 500px;
  248. }
  249. .shape {
  250. stroke-dasharray: 140 590;
  251. stroke-dashoffset: -590;
  252. stroke-width: 4px;
  253. fill: transparent;
  254. stroke: {color:Title Border};
  255. border-bottom: 5px solid black;
  256. transition: stroke-width 1s, stroke-dashoffset 1s, stroke-dasharray 1s;
  257. }
  258. .text {
  259. font-weight:100;
  260. font-size: {text:Title Font Size};
  261. line-height: 32px;
  262. font-family:{font:Title};
  263. {block:IfUppercaseTitle}text-transform:uppercase;{/block:IfUppercaseTitle}
  264. letter-spacing: 2px;
  265. color: #fff;
  266. top: -45px;
  267. cursor:hand;
  268. position: relative;
  269. }
  270.  
  271. .text a{
  272. color:#333;
  273. }
  274.  
  275. .text a:hover{
  276. color:#ccc;
  277. }
  278.  
  279. .svg-wrapper:hover .shape {
  280. stroke-width: 2px;
  281. stroke:{color:Title Border};
  282. stroke-dashoffset: 0;
  283. stroke-dasharray: 1300;
  284. }
  285.  
  286. .svg-wrapper:hover a{
  287. color:{color:Title Border};
  288. }
  289.  
  290. #container{
  291. width:100%;
  292. position:absolute;
  293. background:white;
  294. }
  295.  
  296. #entries {
  297. font-size:10px;
  298. margin-top:480px;
  299. position:absolute;
  300. z-index:90;
  301. padding:30px 30%;
  302. width:60%;
  303. text-align: center;
  304. background:white;
  305. }
  306.  
  307. #post {
  308. font-size:10px;
  309. padding: 5px;
  310. margin-bottom:70px;
  311. width: 500px;
  312. min-height:100px;
  313. color:{color:Body};
  314. text-align: left;
  315. overflow:hidden;
  316. }
  317.  
  318. #postinfo{
  319. margin-left:510px;
  320. position:absolute;
  321. text-align:left;
  322. width:100px;
  323. height:200px;
  324. transition-duration:0.3s;
  325. -moz-transition-duration:0.3s;
  326. -webkit-transition-duration:0.3s;
  327. -o-transition-duration:0.3s;
  328. }
  329.  
  330. #tags{
  331. border-bottom:1px solid #f1f1f1;
  332. }
  333.  
  334. #tags a{
  335. color:#aaa;
  336. display:inline-block;
  337. background:{color:Background};
  338. padding:2px;
  339.  
  340. }
  341.  
  342. #tags a:hover{
  343. background:{color:Title Border};
  344. color:{color:Background};
  345. }
  346.  
  347. #tags a .p{
  348. display:none;
  349. }
  350.  
  351. #tags a:last-child .c{
  352. display:none;
  353. }
  354.  
  355. #tags a:last-child .p{
  356. display:inline;
  357. }
  358.  
  359. #postinfo a{
  360. display:block;
  361. width:100px;
  362. opacity:0;
  363. font-family:'Trebuchet MS';
  364. text-transform:uppercase;
  365. line-height:20px;
  366. color:#aaa;
  367. font-size:10px;
  368. transition-duration:0.3s;
  369. -moz-transition-duration:0.3s;
  370. -webkit-transition-duration:0.3s;
  371. -o-transition-duration:0.3s;
  372. border:0px solid transparent;
  373. }
  374.  
  375. #postinfo a:hover{
  376. border-left:5px solid {color:Title Border};
  377. color:{color:Title Border};
  378. padding-left:10px;
  379. }
  380.  
  381. #post:hover #postinfo a{
  382. opacity:1;
  383. }
  384.  
  385. #info {
  386. padding: 5px;
  387. margin-top:10px;
  388. text-align:center;
  389. font-family:'Trebuchet MS';
  390. font-size:9px;
  391. text-transform:uppercase;
  392. background:#f1f1f1;
  393. letter-spacing:1px;
  394. color:#aaa;
  395. }
  396.  
  397. #info a{
  398. color:#aaa;
  399. }
  400.  
  401. #pagi{
  402. position:relative;
  403. background:blue;
  404. width:500px;
  405. padding:10px 5px;
  406. text-align:center;
  407. font-family:'Trebuchet MS';
  408. font-size:9px;
  409. text-transform:uppercase;
  410. background:#f1f1f1;
  411. letter-spacing:1px;
  412. color:#aaa;
  413. }
  414.  
  415. ol.notes {
  416. padding: 0px;
  417. margin: 10px 10px;
  418. list-style-type:upper-roman;
  419. text-align:left;
  420. position: relative;
  421. z-index: 2;
  422. text-transform: uppercase;
  423. font-size: 9px;
  424. letter-spacing:1px;
  425. clear:both;}
  426.  
  427. ol.notes a {color: {color:Link};}
  428.  
  429. ol.notes li.note {padding: 10px;}
  430.  
  431. ol.notes li.note img.avatar {
  432. vertical-align: -4px;
  433. margin-right: 10px;
  434. width: 16px;
  435. height: 16px;}
  436.  
  437. ol.notes li.note span.action {font-weight: normal;}
  438.  
  439. ol.notes li.note .answer_content {font-weight: normal;}
  440.  
  441. ol.notes li.note blockquote {
  442. border-color: #eee;
  443. padding: 4px 10px;
  444. margin: 10px 0px 0px 25px;}
  445.  
  446. ol.notes li.note blockquote a {text-decoration: none;}
  447.  
  448. /* --- AUDIO ----*/
  449. .mus {height: 70px; padding: 20px; background-color: #f1f1; display: table; position: relative;
  450. width: 460px;}
  451.  
  452.  
  453. .mus img {height: 50px; position: absolute; border: 10px solid #ccc;}
  454.  
  455. .musiclabel {
  456. padding-left: 80px;
  457. text-align: left;
  458. display: table-cell;
  459. vertical-align: middle;
  460. font-family: calibri}
  461.  
  462. .mlabel {
  463. color: #000;
  464. font-style:italic;
  465. font-size:12px;}
  466.  
  467. .newplayerbutton {
  468. position: relative;
  469. width: 28px;
  470. height: 27px;
  471. overflow: hidden;}
  472.  
  473. .playerbuttonhug {
  474. position: absolute;
  475. top: -8px;
  476. left: -12px;}
  477.  
  478.  
  479. .tumblr_audio_player {
  480. border: none;
  481. padding: 0px;
  482. margin: 0px;
  483. margin-left:15px;
  484. height: 43px;
  485. width: 300px;}
  486.  
  487. .playerbuttonbg {
  488. position: absolute;
  489. left: 30px;
  490. top: 30px;
  491. width: 30px;
  492. height: 30px;
  493. background:white;
  494. padding: 10px;
  495. opacity: 0.3;
  496. transition-duration: 0.6s;
  497. -moz-transition-duration: 0.6s;
  498. -webkit-transition-duration: 0.6s;
  499. -o-transition-duration: 0.6s;
  500. z-index: 1000;}
  501.  
  502. .playerbuttonbg:hover {
  503. opacity: 0.8;
  504. transition-duration: 0.6s;
  505. -moz-transition-duration: 0.6s;
  506. -webkit-transition-duration: 0.6s;
  507. -o-transition-duration: 0.6s;}
  508.  
  509.  
  510. #question img{
  511. float:left;
  512. position:relative;
  513. margin-top:10px;
  514. }
  515.  
  516. .question {
  517. margin-left:40px;
  518. min-height:10px;
  519. border-left:1px solid #ccc;
  520. padding: 20px 5px;
  521. background:#f1f1f1;}
  522.  
  523. #question {
  524. border-bottom:1px solid #ccc;
  525. padding:10px;
  526. }
  527.  
  528. .question span{
  529. font-family:'Playfair Display';
  530. font-size:15px;
  531. color:#333;
  532. font-weight:700;
  533. }
  534.  
  535. .question a{
  536. color:#333;
  537. font-style:italic;
  538. }
  539.  
  540.  
  541.  
  542. #credit a{
  543. position:fixed;
  544. right:15px;
  545. bottom:15px;
  546. padding:7px;
  547. background:white;
  548. font-size:11px;
  549. color:black;
  550. -moz-transition-duration:0.8s;
  551. -webkit-transition-duration:0.8s;
  552. -o-transition-duration:0.8s;
  553. }
  554.  
  555. #credit a:hover {
  556. opacity:1;
  557. color:white;
  558. background:black;
  559. -moz-transition-duration:0.8s;
  560. -webkit-transition-duration:0.8s;
  561. -o-transition-duration:0.8s;
  562. }
  563.  
  564.  
  565. </style>
  566. <style type="text/css">{CustomCSS}</style>
  567. </head>
  568.  
  569. <body>
  570.  
  571. <div id="sidebar">
  572. </div>
  573. <div id="topheader">
  574. <div class="svg-wrapper">
  575. <svg height="60" width="400" xmlns="http://www.w3.org/2000/svg">
  576. <rect class="shape" height="60" width="400" />
  577. <div class="text"><a href="/">{Title}</a></div>
  578. </svg>
  579. </div>
  580. <div id="desc">{Description}
  581. <div id="links">
  582. <a href="{text:Link1 URL}"><span>01. </span>{text:Link1}</a>
  583. <a href="{text:Link2 URL}"><span>02. </span>{text:Link2}</a>
  584. <a href="{text:Link3 URL}"><span>03. </span>{text:Link3}</a>
  585. <a href="{text:Link4 URL}"><span>04. </span>{text:Link4}</a>
  586. <a href="{text:Link5 URL}"><span>05. </span>{text:Link5}</a>
  587. </div></div>
  588. </div>
  589.  
  590.  
  591. <div id="container">
  592. <div id="entries">
  593.  
  594. <div id="navibar">
  595. <div id="numbers">
  596. <a href="{text:Link1 URL}">{text:Link1} <span>01. </span></a>
  597. <a href="{text:Link2 URL}">{text:Link2} <span>02. </span></a>
  598. <a href="{text:Link3 URL}">{text:Link3} <span>03. </span></a>
  599. <a href="{text:Link4 URL}">{text:Link4} <span>04. </span></a>
  600. <a href="{text:Link5 URL}">{text:Link5} <span>05. </span></a>
  601. </div>
  602. </div>
  603. {block:Posts}
  604.  
  605. <div id="post">
  606.  
  607. <div id="postinfo">
  608. <a href="{Permalink}">{TimeAgo}</a>
  609. {block:RebloggedFrom} <a href="{ReblogParentURL}">reblogged from</a><a href="{ReblogRootURL}">source</a>{/block:RebloggedFrom}
  610. <a href="{ReblogURL}">reblog</a>
  611. </div>
  612. {block:Text}<h1>{title}</h1>{Body}{/block:Text}
  613.  
  614. {block:Quote}<h3>“{Quote}” </h3>
  615. <div style="text-align:right; padding-bottom:5px;">— {Source}</div>{/block:Quote}
  616.  
  617. {block:Link}<a href="{URL}" class="link" {Target}> <h2>{Name}</h2></a>
  618. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  619.  
  620. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  621. {block:Photoset}<center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  622.  
  623. {block:Chat}{block:Title}<h1>{Title}</h1><br>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  624. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  625.  
  626.  
  627.  
  628.  
  629. {block:Audio}
  630. {block:AudioPlayer}
  631.  
  632. <div class="mus">
  633. <div class="playerbuttonbg">
  634. <div class="newplayerbutton">
  635. <div class="playerbuttonhug">
  636.  
  637. {AudioPlayerWhite}
  638.  
  639. </div>
  640. </div>
  641. </div>
  642. {/block:AudioPlayer}
  643. <img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg" alt="default album art"/>
  644. {block:AlbumArt}
  645. <img class="cover" src="{AlbumArtURL}" />
  646. {/block:AlbumArt}
  647. <div class="musiclabel">
  648. {block:TrackName}<span class="mlabel">{TrackName}</span>{/block:TrackName}<br>
  649. {block:Artist}{Artist}{/block:Artist} {block:Album}· {Album}{/block:Album}<br>
  650. {block:Playcount}{Playcount} Plays{/block:Playcount}
  651. </div></div>
  652.  
  653. {block:Caption}{Caption}{/block:Caption}
  654. {/block:Audio}
  655.  
  656. {block:Answer}
  657. <div id="question">
  658. <img src="{AskerPortraitURL-30}">
  659. <div class="question">
  660. <span>{Asker}</span> asked:<br>
  661. {Question}</div>
  662. </div>
  663. {Answer}{/block:Answer}
  664.  
  665.  
  666.  
  667. <div id="info">
  668. {block:Date}<a href="{Permalink}">{12Hour}:{Minutes} {AmPm} ⋆ {DayOfMonth}/{MonthNumber}/{ShortYear} {block:NoteCount}⋆ {NoteCountWithLabel}{/block:NoteCount}{/block:NoteCount}</a>{/block:Date}
  669. </div>
  670. <div id="tags">
  671. {block:HasTags}<span class="tagged">tagged:</span> {block:Tags}<a href="{TagURL}">{Tag}<span class="c">,</span><span class="p">.</span></a> {/block:Tags}{/block:HasTags}
  672. </div>
  673.  
  674. </div>
  675. {/block:Posts}
  676.  
  677. {block:PostNotes}{PostNotes}{/block:PostNotes}
  678.  
  679. <div id="pagi">
  680.  
  681. <em>{block:Pagination}{block:PreviousPage}
  682. <a href="{PreviousPage}">⇠</a>
  683. {/block:PreviousPage}</em>
  684. [ {block:JumpPagination length="5"}{block:CurrentPage}
  685. <span class="current_page">{PageNumber}</span>
  686. {/block:CurrentPage}{block:JumpPage}
  687. <a href="{URL}">{PageNumber}</a>
  688. {/block:JumpPage}{/block:JumpPagination} ]
  689. <em>{block:NextPage}
  690. <a href="{NextPage}">⇢</a>
  691. {/block:NextPage}{/block:Pagination}
  692. </em>
  693. </div>
  694.  
  695.  
  696. <div id="credit"><a href="http://hardziam.tumblr.com">✿</a></div>
  697. </body>
  698. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement