Advertisement
vassilias

Theme 10. Taniec

Aug 19th, 2015
4,228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4.  
  5. <title>{Title}</title>
  6.  
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11.  
  12. <!--- Theme 10. Taniec by vassilias
  13. Please do not redistribute the theme as your own, use it as a base code, or remove the credit.
  14. Feel free to edit the theme to your needs and don’t hesitate to message for help if you may need it.--->
  15.  
  16.  
  17.  
  18. <!--Default Variables-->
  19.  
  20. <meta name="if:500px Width" content="1"/>
  21. <meta name="if:400px Width" content="0"/>
  22. <meta name="if:Hide Captions" content="0"/>
  23. <meta name="if:Hide Description" content="0"/>
  24.  
  25.  
  26. <meta name="color:Text" content="#000000"/>
  27. <meta name="color:Links" content="#727272"/>
  28. <meta name="color:Links Hover Color" content="#000000"/>
  29. <meta name="color:Primary Accent Color" content="#fafafa"/>
  30. <meta name="color:Header Links Color" content="#000000"/>
  31. <meta name="color:Header Links Hover Color" content="#000000"/>
  32. <meta name="color:Blog Title Color" content="#000000"/>
  33. <meta name="color:Blog Title Hover Color" content="#000000"/>
  34. <meta name="color:Scrollbar" content="#f0f0f0" />
  35. <meta name="color:Scrollbar Background" content="#fafafa" />
  36.  
  37.  
  38. <meta name="text:Link 1 URL" content="" />
  39. <meta name="text:Link 1" content="" />
  40. <meta name="text:Link 2 URL" content="" />
  41. <meta name="text:Link 2" content="" />
  42. <meta name="text:Link 3 URL" content="" />
  43. <meta name="text:Link 3" content="" />
  44. <meta name="text:Link 4 URL" content="" />
  45. <meta name="text:Link 4" content="" />
  46. <meta name="text:Link 5 URL" content="" />
  47. <meta name="text:Link 5" content="" />
  48.  
  49.  
  50. <!-- jquery for tooltips-->
  51.  
  52.  
  53. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  54.  
  55. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  56.  
  57. <script>
  58.  
  59. (function($){
  60.  
  61. $(document).ready(function(){
  62.  
  63. $("a[title]").style_my_tooltips({
  64.  
  65. tip_follows_cursor:true,
  66.  
  67. tip_delay_time:30,
  68.  
  69. tip_fade_speed:300,
  70.  
  71. attribute:"title"
  72.  
  73. });
  74.  
  75. });
  76.  
  77. })(jQuery);
  78.  
  79. </script>
  80.  
  81.  
  82. <!--CSS customization here. -->
  83.  
  84. <style type="text/css">
  85.  
  86. #s-m-t-tooltip{
  87. position:absolute;
  88. margin-top: 15px;
  89. z-index:9999;
  90. font-family: Helvetica;
  91. font-size: 6px;
  92. letter-spacing: 1px;
  93. padding: 3px 6px 3px 6px;
  94. text-transform: uppercase;
  95. color:#fff;
  96. background:{color:Text};
  97. }
  98.  
  99. ::-webkit-scrollbar {
  100. height: 8px;
  101. width: 8px;
  102. background: {color:Scrollbar Background};
  103. }
  104.  
  105. ::-webkit-scrollbar-thumb {
  106. background: {color:Scrollbar};
  107. }
  108.  
  109. /*basics*/
  110.  
  111. body {
  112. background: #fff;
  113. color:{color:Text};
  114. font-family:helvetica;
  115. font-size:11px;
  116. font-weight: lighter;
  117. text-align:justify;
  118. margin:0;
  119. line-height:23px;
  120. }
  121.  
  122.  
  123. a {
  124. color:{color:Links};
  125. text-decoration:none;
  126. padding: 0px;
  127. -webkit-transition: all 0.3s ease-out;
  128. -moz-transition: all 0.3s ease-out;
  129. -o-transition: all 0.3s ease-out;
  130. }
  131.  
  132. a:hover {
  133. text-decoration:none;
  134. color:{color:Links Hover Color};
  135. -webkit-transition: all 0.3s ease-out;
  136. -moz-transition: all 0.3s ease-out;
  137. -o-transition: all 0.3s ease-out;
  138. }
  139.  
  140. img{
  141. opacity:1;
  142. border:none;
  143. text-decoration:none;
  144. max-width:100%;
  145. }
  146.  
  147. small {
  148. font-size:9px;
  149. }
  150.  
  151. big {
  152. font-size:12px;
  153. }
  154.  
  155. #title {
  156. font-size:14px;
  157. font-weight:bold;
  158. margin-bottom: 30px;
  159. padding-top: 20px;
  160. padding-bottom:20px;
  161. padding-right:20px;
  162. border-bottom: dotted 1px #f0f0f0;
  163. }
  164.  
  165.  
  166. /****** header ******/
  167.  
  168. #header {
  169. text-align:left;
  170. position:justify;
  171. margin-top:130px;
  172. width:500px;
  173. }
  174.  
  175. #title1 {
  176. font-family: Helvetica;
  177. font-size:20px;
  178. font-weight:bold;
  179. text-transform:lowercase;
  180. }
  181.  
  182. #title1 a {
  183. padding: 5px;
  184. color:{color:Blog Title Color};
  185. }
  186.  
  187. #title1 a:hover {
  188. color:{color:Blog Title Hover Color};
  189. }
  190.  
  191. #links {
  192. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  193. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  194. text-transform: lowercase;
  195. font-size:10px;
  196. margin-bottom:10px;
  197. letter-spacing: 1px;
  198. }
  199.  
  200. #links a {
  201. margin-right:5px;
  202. display:inline-block;
  203. padding:5px;
  204. font-size: 10px;
  205. letter-spacing: 1px;
  206. color:{color:Header Links Color};
  207. }
  208.  
  209. #links a:hover {
  210. color:{color:Header Links Hover Color};
  211. }
  212.  
  213. #description {
  214. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  215. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  216. font-style: italic;
  217. padding: 15px;
  218. border-left: dotted 1px #ccc;
  219. text-align: justify;
  220. {block:ifhidedescription}display:none;{/block:ifhidedescription}
  221. }
  222.  
  223. /****** pagination ******/
  224.  
  225. .pagination {
  226. width:380px;
  227. padding:5px;
  228. text-align:left;
  229. text-transform:lowercase;
  230. font-size:10px;
  231. word-spacing:20px;
  232. margin-bottom: 100px;
  233. margin-top:-60px;
  234. z-index:999999;
  235. }
  236.  
  237. .pagination a {
  238. word-spacing:20px;
  239. padding: 5px;
  240. }
  241.  
  242. /****** container ******/
  243.  
  244. #con {
  245. left:20%;
  246. position:absolute;
  247. }
  248.  
  249. /****** posts ******/
  250.  
  251. #entries {
  252. margin-top: 150px;
  253. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  254. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  255. }
  256.  
  257. #posts {
  258. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  259. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  260. {block:IndexPage}
  261. margin-bottom:130px;
  262. {/block:IndexPage}
  263. {block:PermalinkPage}
  264. margin-bottom:100px;
  265. {/block:PermalinkPage}
  266. }
  267.  
  268. #posts img {
  269. margin-left:0px;
  270. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  271. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  272. }
  273.  
  274. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  275.  
  276.  
  277. .caption {
  278. {block:ifhidecaptions}
  279. {block:indexpage}
  280. display:none;
  281. {/block:indexpage}
  282. {/block:ifhidecaptions}
  283. margin-top:5px;
  284. padding: 20px;
  285. background: {color:Primary Accent Color};
  286. }
  287.  
  288. blockquote {
  289. padding-left:15px;
  290. padding-right: 5px;
  291. padding-top: 5px;
  292. padding-bottom: 5px;
  293. margin-left:20px;
  294. border-left:1px dotted {color:Text};
  295. }
  296.  
  297.  
  298. /* ------------------------- POST INFO ------------------------- */
  299.  
  300. #float {
  301. {block:if500pxWidth}margin-left:550px;{/block:if500pxWidth}
  302. {block:if400pxWidth}margin-left:450px;{/block:if400pxWidth}
  303. width: 120px;
  304. margin-bottom: -70px;
  305. text-align:justify;
  306. font-size: 9px;
  307. text-transform:uppercase;
  308. letter-spacing:1px;
  309. -webkit-transition: all .4s;
  310. -moz-transition: all .4s;
  311. -ms-transition: all .4s;
  312. -o-transition: all .4s;
  313. transition: all .4s;
  314. border
  315. }
  316.  
  317. .notecount{
  318. font-weight:bold;
  319. font-size:12px;
  320. }
  321.  
  322.  
  323. /*quote*/
  324.  
  325. #titlequote{
  326. text-align:justify;
  327. background: {color:Primary Accent Color};
  328. padding: 20px;
  329. }
  330.  
  331. #source {
  332. margin-top:10px;
  333. padding: 20px;
  334. text-align:right;
  335. background: {color:Primary Accent Color};
  336. }
  337.  
  338. /****** audio ******/
  339.  
  340. .audio{
  341. min-height:90px;
  342. text-align:left;
  343. background: {color:Primary Accent Color};
  344. }
  345.  
  346. .player {
  347. position:absolute;
  348. margin-left:30px;
  349. margin-top:30px;
  350. width:29px;
  351. height:30px;
  352. overflow:hidden;
  353. z-index:999999;
  354. }
  355.  
  356. .audioart{
  357. width:90px;
  358. height:90px;
  359. overflow:hidden;
  360. position:relative;
  361. float:left;
  362. }
  363.  
  364. .audioartimg{
  365. width:100%;
  366. height:100%;
  367. position:absolute;
  368. z-index:999;
  369. }
  370.  
  371. .audioinfo {
  372. position:relative;
  373. height:50px;
  374. padding:20px;
  375. text-align:center;
  376. }
  377.  
  378. .tracktitle{
  379. padding-top:2px;
  380. text-transform:uppercase;
  381. letter-spacing:2px;
  382. font-size: 10px;
  383. font-weight:lighter;
  384. }
  385.  
  386.  
  387.  
  388. /****** asks ******/
  389. .q {
  390. background: {color:Primary Accent Color};
  391. padding:20px;
  392. margin-bottom:10px;
  393. }
  394.  
  395. .as {
  396. text-transform:uppercase;
  397. font-weight:bold;
  398. }
  399.  
  400. .as a {
  401. font-size: 11px;
  402. padding:0px;
  403. }
  404.  
  405. .a {
  406. background:{color:Primary Accent Color};
  407. padding:20px;
  408. }
  409.  
  410. /*chat*/
  411.  
  412. .chat ol {
  413. padding:20px;
  414. list-style:none;
  415. background: {color:Primary Accent Color};
  416. }
  417.  
  418. .line {
  419. padding:5px 0;
  420. }
  421.  
  422. .label {
  423. font-weight:bold;
  424. }
  425.  
  426.  
  427. h1 {
  428. font-weight: lighter;
  429. }
  430.  
  431.  
  432. /****** permalink and notes ******/
  433.  
  434. #permalink {
  435. margin-top:10px;
  436. font-size:8px;
  437. letter-spacing:1px;
  438. text-align:left;
  439. text-transform:uppercase;
  440. -webkit-transition:all 1.0s;
  441. -moz-transition:all 1.0s;
  442. -ms-transition:all 1.0s;
  443. -o-transition:all 1.0s;
  444. transition:all 1.0s;
  445. }
  446.  
  447. #posts:hover #permalink {
  448. opacity:1;-webkit-transition:all 1.0s;
  449. -moz-transition:all 1.0s;
  450. -ms-transition:all 1.0s;
  451. -o-transition:all 1.0s;
  452. transition:all 1.0s;
  453. }
  454.  
  455. #permalink a {
  456. display:inline-block;
  457. margin-right:5px;
  458. }
  459.  
  460. .tags {
  461. border-top: dotted 1px #f0f0f0;
  462. word-break:break-all;
  463. font-size:9px;
  464. text-transform:none;
  465. }
  466.  
  467. .tags a {
  468. font-size: 9px;
  469. }
  470.  
  471. #posts .tags {
  472. {block:IndexPage}
  473. margin-top:5px;
  474. opacity:0;
  475. -webkit-transition: all 0.4s ease-out;
  476. -moz-transition: all 0.4s ease-out;
  477. -o-transition: all 0.4s ease-out;
  478. {/block:IndexPage}
  479. }
  480.  
  481. #posts:hover .tags {
  482. {block:IndexPage}
  483. margin-top: 5px;
  484. opacity: 1;
  485. -webkit-transition: all 0.4s ease-out;
  486. -moz-transition: all 0.4s ease-out;
  487. -o-transition: all 0.4s ease-out;
  488. {/block:IndexPage}
  489. }
  490.  
  491. .pagenotes {
  492. {block:IndexPage}
  493. display: none!important;
  494. {/block:IndexPage}
  495. text-align:right;
  496. font-size: 8px;
  497. letter-spacing: 1px;
  498. text-transform:uppercase;
  499. }
  500.  
  501. .pagenotes img {
  502. display:none!important;
  503. }
  504.  
  505. .pagenotes li {
  506. list-style-type:none;
  507. padding:5px 0px;
  508. text-align:right;
  509. margin:0 0 0 -40px;
  510. }
  511.  
  512. .pagenotes a {
  513. font-weight: none;
  514. text-align:right;
  515. }
  516.  
  517.  
  518. /*Credit - DO NOT REMOVE */
  519.  
  520. .credit a {
  521. position: fixed;
  522. bottom: 0;
  523. right: 0;
  524. color: #000;
  525. padding: 15px;
  526. font-family: Helvetica;
  527. font-size: 7px;
  528. letter-spacing: 1;
  529. }
  530.  
  531. .credit a:hover {
  532. text-decoration: none;
  533. }
  534.  
  535. {CustomCSS}
  536.  
  537.  
  538. </style>
  539.  
  540. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  541. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  542. <script type="text/javascript" charset="utf-8">
  543. var $j = jQuery.noConflict();
  544. $j(function() {
  545. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  546. $j("img").lazyload({
  547. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  548. effect: "fadeIn",
  549. });
  550. });
  551. </script>
  552.  
  553.  
  554. </head>
  555.  
  556. <body>
  557.  
  558. <div class="credit"><a title="vassilias" href="http://vassilias.tumblr.com">&copy;</div></a>
  559.  
  560.  
  561. <div id="con">
  562. <div id="header">
  563. <div id="title1"><a href="/">{Title}</a></div>
  564.  
  565. <div id="links">
  566. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  567. {block:ifLink2}<a href="{text:Link 2 URL}" >{text:Link 2}</a>{/block:ifLink2}
  568. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}
  569. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}
  570. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a>{/block:ifLink5}
  571. </div>
  572.  
  573. <div id="description">{Description}</div>
  574.  
  575. </div>
  576.  
  577.  
  578.  
  579. <div id="entries">
  580.  
  581. {block:Posts}
  582. <div id="posts">
  583.  
  584. <div id="float">
  585. {block:Date}
  586.  
  587. <a href="{Permalink}"><B>{NoteCount}</B></a>
  588.  
  589. <br>{MonthNumber}.{DayOfMonthWithZero}.{ShortYear} </a>
  590.  
  591. <br>{block:RebloggedFrom}
  592. <a href="{ReblogParentURL}">Via</a>&nbsp;
  593. {/block:RebloggedFrom}
  594. {block:ContentSource}
  595. <a href="{SourceURL}">Src</a>
  596. {/block:ContentSource}
  597.  
  598. {/block:Date}
  599. </div>
  600.  
  601.  
  602. {block:Quote}
  603.  
  604.  
  605. <div id="titlequote">β€œ{Quote}”</div>
  606. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  607. {/block:Quote}
  608.  
  609.  
  610.  
  611. {block:Text}
  612.  
  613. {block:Title}
  614. <div id="title">{Title}</div>{/block:Title}
  615. {Body}
  616. {/block:Text}
  617.  
  618. {block:Link}
  619. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  620. {/block:Link}
  621.  
  622. {block:Chat}
  623. {block:Title}
  624. <h1>{Title}</h1>
  625. {/block:Title}
  626. <div class="chat">
  627. <ol>{block:Lines}
  628. <li class="line {Alt}">
  629. {block:Label}
  630. <span class="label">
  631. {Label}</span>
  632. {/block:Label}{Line}</li>
  633. {/block:Lines}
  634. </ol></div>
  635. {/block:Chat}
  636.  
  637. {block:Photo}
  638. {LinkOpenTag}<img src="{block:if500pxWidth}{PhotoURL-500}{/block:if500pxWidth}{block:if400pxWidth}{PhotoURL-400}{/block:if400pxWidth}" alt="{PhotoAlt}"/>{LinkCloseTag}
  639. {/block:Photo}
  640.  
  641. {block:Photoset}
  642. {block:if500pxWidth}{Photoset-500}{/block:if500pxWidth}{block:if400pxWidth}{Photoset-400}{/block:if400pxWidth}
  643. {/block:Photoset}
  644.  
  645. {block:Video}
  646. {block:if500pxWidth}{Video-500}{/block:if500pxWidth}{block:if400pxWidth}{Video-400}{/block:if400pxWidth}
  647. {/block:Video}
  648.  
  649.  
  650. {block:Audio}
  651. <div class="audio">
  652. <div class="audioart">
  653. <div class="player">{AudioPlayerBlack}</div>
  654. <div class="audioartimg">
  655. {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}
  656. </div>
  657. </div>
  658. <div class="audioinfo">
  659. {block:TrackName}
  660. <div class="tracktitle">{TrackName}</div>
  661. {/block:TrackName}
  662. {block:Artist}{Artist}{/block:Artist}
  663. </div>
  664. </div>
  665. {/block:Audio}
  666.  
  667. {block:Answer}
  668. <div class="q">
  669. <div class="as">{Asker} wrote: </div>
  670. {Question}<p><div id="line">{Line}</p></div></div>
  671. <div class="a">{Answer}</div>
  672. {/block:Answer}
  673.  
  674. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  675.  
  676. {block:Date}
  677. <div id="permalink">
  678. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}" style="font-size: 10px;">{Tag}</a>&nbsp;&nbsp;&nbsp;{/block:Tags}</div>{/block:HasTags}
  679. </div>
  680. {/block:Date}
  681. </div>
  682.  
  683.  
  684. {block:PostNotes}
  685. <div class="pagenotes">
  686. {PostNotes}
  687. </div>
  688. {/block:PostNotes}
  689. {/block:Posts}
  690.  
  691.  
  692. {block:Pagination}
  693. <div class="pagination">
  694. {block:PreviousPage}
  695. <a href="{PreviousPage}">previous</a>
  696. {/block:PreviousPage}
  697. {block:JumpPagination}
  698. {block:CurrentPage}
  699. <span class="current_page">{PageNumber}</span>
  700. {/block:CurrentPage}
  701. {block:JumpPage}
  702. <a class="jump_page" href="{URL}">{PageNumber}</a>
  703. {/block:JumpPage}
  704. {/block:JumpPagination}
  705. {block:NextPage}
  706. <a href="{NextPage}">next</a>
  707. </div>
  708. {/block:NextPage}
  709. </div>
  710. </div>
  711.  
  712.  
  713. {block:ContentSource}
  714. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  715. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  716. {/block:SourceLogo}
  717. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  718. {/block:ContentSource}
  719.  
  720. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement