Advertisement
vassilias

Theme 13. Throes

Feb 16th, 2016
1,992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.79 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. THEME 13 : Throes by vassilias
  11.  
  12. Please do not:
  13. - redistribute the theme as your own
  14. - use it as a base code
  15. - or remove the credit.
  16.  
  17. Feel free to edit the theme to your needs and don’t hesitate to message for help if you may need it.
  18.  
  19. Enjoy and follow for new themes! :)
  20.  
  21. - --->
  22.  
  23. <meta name="select:post width" content="300" title="300px"/>
  24. <meta name="select:post width" content="350" title="350px"/>
  25. <meta name="select:post width" content="400" title="400px"/>
  26. <meta name="select:post width" content="450" title="450px"/>
  27. <meta name="select:post width" content="500" title="500px"/>
  28. <meta name="select:post width" content="550" title="550px"/>
  29. <meta name="select:post width" content="600" title="600px"/>
  30. <meta name="select:post width" content="650" title="650px"/>
  31. <meta name="select:post width" content="700" title="700px"/>
  32. <meta name="if:Hide Captions" content="0"/>
  33. <meta name="color:Text" content="#616161"/>
  34. <meta name="color:Borders" content="#f0f0f0"/>
  35. <meta name="color:Links" content="#616161"/>
  36. <meta name="color:Links Hover Color" content="#000000"/>
  37. <meta name="color:Blog Title Color" content="#4b4b4b"/>
  38. <meta name="color:Blog Title Hover Color" content="#000000"/>
  39. <meta name="color:Header Links Color" content="#4b4b4b"/>
  40. <meta name="color:Header Links Hover Color" content="#000000"/>
  41. <meta name="color:Scrollbar" content="#f0f0f0" />
  42. <meta name="color:Scrollbar Background" content="#fafafa" />
  43. <meta name="text:Link 1 URL" content="" />
  44. <meta name="text:Link 1" content="" />
  45. <meta name="text:Link 2 URL" content="" />
  46. <meta name="text:Link 2" content="" />
  47. <meta name="text:Link 3 URL" content="" />
  48. <meta name="text:Link 3" content="" />
  49. <meta name="text:Link 4 URL" content="" />
  50. <meta name="text:Link 4" content="" />
  51. <meta name="text:Link 5 URL" content="" />
  52. <meta name="text:Link 5" content="" />
  53.  
  54. <link href='https://fonts.googleapis.com/css?family=Karla:400,400italic,700' rel='stylesheet' type='text/css'>
  55. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  56. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  57.  
  58. <script>
  59. (function($){
  60. $(document).ready(function(){
  61. $("a[title]").style_my_tooltips({
  62. tip_follows_cursor:true,
  63. tip_delay_time:30,
  64. tip_fade_speed:300,
  65. attribute:"title"
  66. });
  67. });
  68. })(jQuery);
  69. </script>
  70.  
  71. <script type="text/javascript">
  72. /* Photoset Resize Code by Kevin - EXCOLO.TUMBLR.COM */
  73. $(document).ready(function() {
  74. function photosetResize() {
  75. $('iframe.photoset').each(function(){
  76. var newSize = {select:post width};
  77. var newSrc = $(this).attr('src').replace('500',newSize);
  78. $(this).attr('src', newSrc).width(newSize);
  79. var high = $(this).css('height');
  80. var calculate = parseInt(high, 10)* newSize/500;
  81. $(this).css('height', calculate);
  82. });
  83. }
  84. photosetResize();
  85. });
  86. </script>
  87.  
  88.  
  89. <style type="text/css">
  90.  
  91. #s-m-t-tooltip{
  92. position:absolute;
  93. margin-top: 15px;
  94. z-index:9999;
  95. border: solid 1px {color:Borders};
  96. background:#fefefe;
  97. font-family:karla;
  98. font-size: 9px;
  99. letter-spacing: 1px;
  100. padding: 8px 12px 8px 12px;
  101. text-transform: lowercase;
  102. color:{color:Text};
  103. }
  104.  
  105. ::-webkit-scrollbar {height: 8px; width: 8px; background: {color:Scrollbar Background};}
  106. ::-webkit-scrollbar-thumb {background: {color:Scrollbar};}
  107.  
  108. iframe#tumblr_controls {
  109. top:10px!important;
  110. right:5px!important;
  111. position:fixed!important;
  112. }
  113.  
  114. /* body */
  115.  
  116. body {
  117. background: #fefefe;
  118. font-family:karla;
  119. font-size:11px;
  120. text-align:justify;
  121. margin:0px 0px 100px 0px;
  122. line-height:23px;
  123. color:{color:Text};
  124. }
  125.  
  126. a {
  127. color: {color:Links};
  128. text-decoration:none;
  129. padding: 0px;
  130. -webkit-transition: all 0.3s ease-out;
  131. -moz-transition: all 0.3s ease-out;
  132. -o-transition: all 0.3s ease-out;
  133. }
  134.  
  135. a:hover {
  136. text-decoration:none;
  137. color: {color:Links Hover Color};
  138. -webkit-transition: all 0.3s ease-out;
  139. -moz-transition: all 0.3s ease-out;
  140. -o-transition: all 0.3s ease-out;
  141. }
  142.  
  143. img{
  144. opacity:1;
  145. border:none;
  146. text-decoration:none;
  147. }
  148.  
  149. small {
  150. font-size:9px;
  151. }
  152.  
  153. big {
  154. font-size:11px;
  155. }
  156.  
  157. #title {
  158. padding:20px;
  159. font-size:12px;
  160. border: solid 1px {color:Borders};
  161. margin-bottom:15px;
  162. }
  163.  
  164. /* container */
  165.  
  166. #container {
  167. margin: 150px auto auto auto;
  168. width:{select:post width}px;
  169. }
  170.  
  171. /* posts */
  172.  
  173. #entries {
  174. width:{select:post width}px;
  175. {block:IndexPage}
  176. margin-bottom:160px;
  177. {/block:IndexPage}
  178. {block:PermalinkPage}
  179. margin-bottom:100px;
  180. {/block:PermalinkPage}
  181. }
  182.  
  183. #entries img {
  184. margin-left:0px;
  185. width:{select:post width}px;
  186. }
  187.  
  188. #entries img, #entries li, #entries blockquote {max-width: 100%;}
  189.  
  190. .caption {
  191. {block:ifhidecaptions}
  192. {block:indexpage}
  193. display:none;
  194. {/block:indexpage}
  195. {/block:ifhidecaptions}
  196. border: solid 1px {color:Borders};
  197. text-align:center;
  198. margin-top:5px;
  199. padding: 20px;
  200. }
  201.  
  202. blockquote {
  203. padding:5px 10px 5px 10px;
  204. }
  205.  
  206. /* header */
  207.  
  208. #header {
  209. padding:80px 70px 80px 70px;
  210. border: solid 1px {color:Borders};
  211. text-align:center;
  212. margin: 180px auto 200px -5px;
  213. }
  214.  
  215. .blogt {
  216. display: inline-block;
  217. font-size:16px;
  218. padding-top:10px;
  219. font-weight:none;
  220. }
  221.  
  222. .blogt a {
  223. font-size:30px;
  224. text-transform:lowercase;
  225. font-weight:bold;
  226. color:{color:Blog Title Color};
  227. }
  228.  
  229. .blogt a:hover {
  230. color:{color:Blog Title Hover Color};
  231. }
  232.  
  233. .nav {
  234. font-size: 12px;
  235. font-weight: none;
  236. margin-top:15px;
  237. }
  238.  
  239. .nav a {
  240. margin-right:10px;
  241. text-transform:lowercase;
  242. color:{color:Header Links Color};
  243. }
  244.  
  245. .nav a:hover {
  246. color:{color:Header Links Hover Color};
  247. }
  248.  
  249. #description {
  250. max-width:200px;
  251. font-size:11px;
  252. margin-top:25px;
  253. margin-bottom:25px;
  254. }
  255.  
  256. /* pagination */
  257.  
  258. .pagination {
  259. padding-top:50px 15px 15px 15px;
  260. text-align:right;
  261. text-transform:lowercase;
  262. font-size:12px;
  263. word-spacing:10px;
  264. margin-top:100px;
  265. z-index:999999;
  266. }
  267.  
  268. .pagination a {
  269. word-spacing:10px;
  270. padding: 5px;
  271. }
  272.  
  273. /* quote */
  274.  
  275. #titlequote{
  276. text-align:justify;
  277. padding: 20px;
  278. }
  279.  
  280. #source {
  281. margin-top:10px;
  282. padding: 20px;
  283. text-align:right;
  284. border: solid 1px {color:Borders};
  285. }
  286.  
  287.  
  288. /* audio */
  289.  
  290. .tumblr_audio_player {
  291. height: 100px;
  292. width:{select:post width}px;
  293. color: {color:Text};
  294. }
  295.  
  296. /* video */
  297. .video iframe {
  298. width:{select:post width}px;
  299. }
  300.  
  301. /* question */
  302.  
  303. .q {
  304. padding: 20px;
  305. }
  306.  
  307. .as {
  308. margin-top:10px;
  309. text-align:right;
  310. font-style:italic;
  311. font-weight:normal;
  312. font-size:11px;
  313. text-transform: none;
  314. }
  315.  
  316. .as a {
  317. font-size:11px;
  318. }
  319.  
  320. .a {
  321. border: solid 1px {color:Borders};
  322. padding: 10px 20px 20px 20px;
  323. margin-top:20px;
  324. }
  325.  
  326.  
  327. /* chat */
  328.  
  329. .chat ol {
  330. padding:20px;
  331. list-style:none;
  332. }
  333.  
  334. .line {
  335. padding:5px 0;
  336. }
  337.  
  338. .label {
  339. font-weight:bold;
  340. }
  341.  
  342.  
  343. h1 {
  344. font-weight: lighter;
  345. }
  346.  
  347. /* permalink */
  348.  
  349. #permalink {
  350. margin-top:15px;
  351. font-size:12px;
  352. text-align:center;
  353. }
  354.  
  355. .tags {
  356. {block:IndexPage}
  357. display:none;
  358. {/block:IndexPage}
  359. margin-top:15px;
  360. word-break:break-all;
  361. font-size:12px;
  362. }
  363.  
  364. .tags a{
  365. text-transform:none;
  366. margin-right:10px;
  367. }
  368.  
  369. /* pagenotes */
  370.  
  371. .pagenotes {
  372. {block:IndexPage}
  373. display: none!important;
  374. {/block:IndexPage}
  375. width:{select:post width}px;
  376. text-align:left;
  377. font-size:11px;
  378. text-transform:lowercase;
  379. }
  380.  
  381. .pagenotes img {
  382. display:none!important;
  383. }
  384.  
  385. .pagenotes li {
  386. list-style-type:none;
  387. padding:10px 5px 10px 0px;
  388. }
  389.  
  390. .pagenotes a {
  391. font-weight:bold;
  392. }
  393.  
  394. /*Credit - DO NOT REMOVE */
  395.  
  396. .credit a {
  397. position: fixed;
  398. bottom: 0;
  399. right: 0;
  400. color: {color:Text};
  401. padding: 15px;
  402. font-size: 7px;
  403. letter-spacing: 1;
  404. }
  405.  
  406. .credit a:hover {
  407. text-decoration: none;
  408. }
  409.  
  410.  
  411. {CustomCSS}
  412.  
  413. </style>
  414.  
  415. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  416. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  417. <script type="text/javascript" charset="utf-8">
  418. var $j = jQuery.noConflict();
  419. $j(function() {
  420. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  421. $j("img").lazyload({
  422. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  423. effect: "fadeIn",
  424. });
  425. });
  426. </script>
  427.  
  428. <script language="javascript">
  429. function toggle() {
  430. var ele = document.getElementById("toggleText");
  431. var text = document.getElementById("displayText");
  432. if(ele.style.display == "block") {
  433. ele.style.display = "none";
  434. text.innerHTML = "SHOW NOTES";
  435. }
  436. else {
  437. ele.style.display = "block";
  438. text.innerHTML = "HIDE NOTES";
  439. }
  440. }
  441. </script>
  442. </head>
  443.  
  444. <body>
  445.  
  446. <div id="container">
  447. <div id="header">
  448. <div class="blogt"><a href="/">{Title}</a></div>
  449. <div style="padding-top:25px; padding-bottom:5px; font-size: 10px;">●&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;●&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;●</div>
  450. <center><div id="description">{Description}</div></center>
  451. <div class="nav">
  452. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  453. {block:ifLink2}<a href="{text:Link 2 URL}" >{text:Link 2}</a>{/block:ifLink2}
  454. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}<br>
  455. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a> {/block:ifLink4}
  456. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a> {/block:ifLink5}</div></div>
  457.  
  458.  
  459. {block:Posts}
  460. <div id="entries">
  461.  
  462. {block:Quote}<div style="padding:20px;"><div id="quote">{Quote}</div><div id="source">{Source}</div></div>{/block:Quote}
  463.  
  464. {block:Text}{block:Title}<div id="title">{Title}</div>{/block:Title}{Body}
  465. {/block:Text}
  466.  
  467. {block:Link}<div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  468.  
  469. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}<div class="chat">
  470. <ol>{block:Lines}<li class="line {Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}{Line}</li>{/block:Lines}</ol></div>{/block:Chat}
  471.  
  472. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{/block:Photo}
  473.  
  474. {block:Photoset}{Photoset-500}{/block:Photoset}
  475.  
  476. {block:Video}
  477. <div class="video">{Video-500}</div>
  478. {/block:Video}
  479.  
  480. {block:Audio}<div class="audio">{block:AudioEmbed}{AudioEmbed}{/block:AudioEmbed}</div>{/block:Audio}
  481.  
  482. {block:Answer}<div class="q">{Question}<div class="as">asked by {Asker}</div></div><div class="a">{Answer}</div>{/block:Answer}
  483.  
  484. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  485.  
  486. {block:Date}
  487. <div id="permalink">
  488. {block:IndexPage}<a href="{Permalink}" title="{NoteCountwithLabel}{/block:NoteCount}"><div style="font-size:9px;padding:10px;">x</div></a>{/block:IndexPage}
  489. {block:PermalinkPage}
  490. {block:NoteCount}{MonthNumber}.{DayOfMonthWithZero}.{ShortYear}&nbsp;&nbsp;&nbsp;{NoteCountWithLabel}{/block:NoteCount}
  491. {block:RebloggedFrom}&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;&nbsp;<a href="{ReblogParentURL}" title="{ReblogParentName}" style="border-bottom:none;">via</a>{block:ContentSource}&nbsp;&nbsp;&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}" style="border-bottom:none;">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  492. {/block:PermalinkPage}
  493. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  494. </div>
  495. {/block:Date}
  496. </div>
  497.  
  498. {block:PostNotes}<center><a id="displayText" href="javascript:toggle();" style="font-size:11px; letter-spacing:1px;">SHOW NOTES</a></center><div id="toggleText" style="display: none"><div class="pagenotes">{PostNotes}</div></div>{/block:PostNotes}
  499.  
  500. {/block:Posts}
  501.  
  502. {block:Pagination}
  503. <div class="pagination">
  504. {block:PreviousPage}
  505. <a href="{PreviousPage}">&lsaquo; back</a>
  506. {/block:PreviousPage}
  507. {block:JumpPagination length="5"}{block:CurrentPage}
  508. <span class="current_page">{PageNumber}</span>
  509. {/block:CurrentPage}{block:JumpPage}
  510. <a class="jump_page" href="{URL}">{PageNumber}</a>
  511. {/block:JumpPage}{/block:JumpPagination}{block:NextPage}
  512. <a href="{NextPage}">forth &rsaquo;</a>
  513. {/block:NextPage}</div>{/block:Pagination}
  514. </div>
  515.  
  516. <div class="credit"><a title="vassilias" href="http://vassilias.tumblr.com">&copy;</div></a>
  517. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement