Advertisement
vassilias

Theme 02. Chiasmus

Nov 29th, 2014
1,762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.43 KB | None | 0 0
  1. <!--Theme by Wren @ vassilias-->
  2.  
  3. <!DOCTYPE html>
  4. <head>
  5.  
  6.  
  7. <title>{Title}</title>
  8.  
  9. <link rel="shortcut icon" href="{Favicon}">
  10. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  11. {block:Description}<mseta name="description" content="{MetaDescription}" />{/block:Description}
  12.  
  13. <!--Default Variables-->
  14.  
  15. <meta name="color:Background" content="#ffffff"/>
  16. <meta name="color:Text" content="#000000"/>
  17. <meta name="color:Primary Accent Color" content="#fafafa"/>
  18. <meta name="color:Secondary Accent Color" content="#f0f0f0"/>
  19. <meta name="color:Links Color" content="#000000"/>
  20. <meta name="color:Links Hover Color" content="#222222"/>
  21. <meta name="color:Nav Bar Links Color" content="#000000"/>
  22. <meta name="color:Nav Bar Links Hover Color" content="#fafafa"/>
  23. <meta name="color:Nav Bar Background Color" content="#fafafa"/>
  24. <meta name="color:Nav Bar Bottom Border Color" content="#f0f0f0"/>
  25. <meta name="color:Scrollbar" content="#f0f0f0" />
  26. <meta name="color:Scrollbar background" content="#fafafa" />
  27.  
  28.  
  29. <meta name="text:Link 1 URL" content="/" />
  30. <meta name="text:Link 1" content="HOME" />
  31. <meta name="text:Link 2 URL" content="/ask" />
  32. <meta name="text:Link 2" content="ASK" />
  33. <meta name="text:Link 3 URL" content="/" />
  34. <meta name="text:Link 3" content="ARCHIVE" />
  35. <meta name="text:Link 4 URL" content="" />
  36. <meta name="text:Link 4" content="" />
  37. <meta name="text:Link 5 URL" content="" />
  38. <meta name="text:Link 5" content="" />
  39. <meta name="text:Link 6 URL" content="" />
  40. <meta name="text:Link 6" content="" />
  41.  
  42. <meta name="if:500px Width" content="1"/>
  43. <meta name="if:400px Width" content="0"/>
  44.  
  45.  
  46.  
  47. <!-- jquery for tooltips-->
  48. <link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=courier' rel='stylesheet' type='text/css'>
  50.  
  51. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  52.  
  53. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  54.  
  55. <script>
  56.  
  57. (function($){
  58.  
  59. $(document).ready(function(){
  60.  
  61. $("a[title]").style_my_tooltips({
  62.  
  63. tip_follows_cursor:true,
  64.  
  65. tip_delay_time:30,
  66.  
  67. tip_fade_speed:300,
  68.  
  69. attribute:"title"
  70.  
  71. });
  72.  
  73. });
  74.  
  75. })(jQuery);
  76.  
  77. </script>
  78.  
  79.  
  80.  
  81. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  82.  
  83.  
  84. <!--CSS customization here. -->
  85.  
  86. <style type="text/css">
  87.  
  88. #s-m-t-tooltip{
  89. position:absolute;
  90. margin-top: 15px;
  91. z-index:9999;
  92. background:#fff;
  93. }
  94.  
  95. ::-webkit-scrollbar {
  96. height: 8px;
  97. width: 8px;
  98. background: {color:Scrollbar background};
  99. }
  100.  
  101. ::-webkit-scrollbar-thumb {
  102. background: {color:Scrollbar};
  103. }
  104.  
  105. /*Basic Formatting*/
  106. body {
  107. background:{color:Background};
  108. color:{color:text};
  109. font-family:courier;
  110. font-size:9px;
  111. margin:0px;
  112. text-align:justify;
  113. line-height:20px;}
  114.  
  115. blockquote {
  116. padding: 15px;
  117. border-left:solid 1px {color:Secondary Accent Color};
  118. margin-left:20px;
  119. }
  120.  
  121. a {
  122. color: {color:Links Color};
  123. -webkit-transition: all 0.3s ease-out;
  124. -moz-transition: all 0.3s ease-out;
  125. -o-transition: all 0.3s ease-out;
  126. text-decoration: none;
  127. font-size: 9px;
  128. }
  129. a:hover {
  130. text-decoration: none;
  131. color: {color:Links Hover Color};
  132. -webkit-transition: all 0.3s ease-out;
  133. -moz-transition: all 0.3s ease-out;
  134. -o-transition: all 0.3s ease-out;
  135. }
  136. img{
  137. opacity:1;
  138. border:none;
  139. text-decoration:none
  140. }
  141. small {
  142. font-size:8px;
  143. }
  144. big {
  145. font-size:12px;
  146. }
  147.  
  148.  
  149. /*Pagination*/
  150.  
  151. #pagination {
  152. margin:30px 0;
  153. text-transform:uppercase;
  154. font-family: courier;
  155. font-size: 7px;
  156. letter-spacing: 3px;
  157. font-weight:bold;
  158. text-align: center;
  159. padding-bottom: 150px;
  160. }
  161. #pagination a {
  162. padding: 5px;
  163. font-weight: none;
  164. text-transform:uppercase;
  165. font-size: 6px;
  166. letter-spacing: 3px;
  167. }
  168.  
  169. /*Cotainer*/
  170.  
  171. #con {
  172. left:50%;
  173. position:absolute;
  174. margin-left:-260px;
  175. }
  176.  
  177. /*Posts*/
  178.  
  179. #entries {
  180. {block:if500pxWidth}
  181. width:500px;
  182. margin-top:100px;
  183. margin-left:15px;
  184. {/block:if500pxWidth}
  185. {block:if400pxWidth}
  186. width:400px;
  187. margin-top:100px;
  188. margin-left: 65px;
  189. {/block:if400pxWidth}
  190. }
  191.  
  192. #posts {
  193. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  194. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  195. {block:IndexPage}
  196. margin-bottom:150px;
  197. {/block:IndexPage}
  198. {block:PermalinkPage}
  199. margin-bottom:100px;
  200. {/block:PermalinkPage}
  201. }
  202.  
  203. #posts img {
  204. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  205. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  206. }
  207.  
  208. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  209.  
  210. .caption {
  211. margin-top:5px;
  212. padding: 20px;
  213. background: {color:Primary Accent Color};
  214. }
  215.  
  216.  
  217. /*Quote*/
  218.  
  219. #titlequote{
  220. text-align:left;
  221. font-size:9px;
  222. font-style:italic;
  223. line-height:20px;
  224. font-weight:none;
  225. padding: 20px;
  226. background: {color:Primary Accent Color};
  227. }
  228.  
  229. #source {
  230. margin-top:10px;
  231. background: {color:Primary Accent Color};
  232. padding: 20px;
  233. }
  234.  
  235. /*Audio*/
  236.  
  237. .player {
  238. width:25px;
  239. margin-top:20px;
  240. background:#fff;
  241. height:25px;
  242. overflow:hidden;
  243. margin-left:10px;
  244. position:absolute;
  245. }
  246.  
  247. .audioinfo {
  248. margin-left:50px;
  249. padding: 20px;
  250. background:{color:Primary Accent Color};
  251. margin-bottom:10px;
  252. }
  253.  
  254. .song {
  255. font-weight:bold;
  256. }
  257.  
  258. /*Asks*/
  259.  
  260. .q {
  261. margin-bottom:10px;
  262. background:{color:Primary Accent Color};
  263. padding: 20px;
  264. }
  265.  
  266. .as {
  267. font-weight:bold;
  268. text-transform:uppercase;
  269. font-size: 7px;
  270. }
  271.  
  272. .as a {
  273. font-size: 7px;
  274. }
  275.  
  276. .a {
  277. margin-top:10px;
  278. background:{color:Primary Accent Color};
  279. padding: 20px;
  280. }
  281.  
  282.  
  283. /*Chat*/
  284.  
  285. .chat ol {
  286. padding:0;
  287. list-style:none;
  288. }
  289. .line {padding:5px 0;}
  290.  
  291. .label {font-weight:bold;
  292. }
  293.  
  294.  
  295. /* TOPBAR */
  296. .topbar {
  297. position: fixed;
  298. text-align:center;
  299. width: 100%;
  300. z-index:9999999;
  301. top:0px;
  302. background:{color:Nav Bar Background Color};
  303. border-bottom: solid 1px {color:Nav Bar Bottom Border Color};
  304. padding:10px;
  305. height:20px;
  306. }
  307.  
  308. .topbar a {
  309. text-align:left;
  310. font-size: 6px;
  311. text-transform:uppercase;
  312. letter-spacing: 3px;
  313. font-family:courier;
  314. padding-left:20px;
  315. padding-right:20px;
  316. margin-right:20px;
  317. color:{color:Nav Bar Links Color};
  318. }
  319.  
  320. .topbar a:hover{
  321. color:{color:Nav Bar Links Hover Color};
  322. }
  323. /*header*/
  324.  
  325. #header {
  326. font-family: courier;
  327. margin-top: 100px;
  328. }
  329.  
  330. #blogt {
  331. font-family: courier;
  332. text-transform: uppercase;
  333. width: 310px;
  334. color:{color:Text};
  335. text-align:center;
  336. padding: 40px 20px 20px 20px;
  337. }
  338. #blogt a {
  339. color: {color:Links Color};
  340. font-family: courier;
  341. font-weight:bold;
  342. text-align:center;
  343. font-size: 15px;
  344. line-height:20px;
  345. letter-spacing: 10px;
  346. }
  347. #blogt a:hover {
  348. color: {color:Links Hover Color};
  349. text-decoration: none;
  350. }
  351.  
  352. #description {
  353. text-align: justify;
  354. background:{color:Primary Accent Color};
  355. color: {color:Text};
  356. margin: 20px;
  357. padding: 50px;
  358. width:250px;
  359. }
  360.  
  361. /*Permalink and Notes*/
  362.  
  363. #permalink {
  364. {block:IndexPage}
  365. opacity:0;
  366. {/block:IndexPage}
  367. margin-top:13px;
  368. padding-top: 10px;
  369. border-top: solid 1px #f6f6f6;
  370. font-size:6px;
  371. letter-spacing: 2px;
  372. text-align:center;
  373. text-transform:uppercase;
  374. -webkit-transition:all 1.0s;
  375. -moz-transition:all 1.0s;
  376. -ms-transition:all 1.0s;
  377. -o-transition:all 1.0s;
  378. transition:all 1.0s;
  379. }
  380.  
  381. #permalink a {
  382. display:inline-block;
  383. margin-right:5px;
  384. font-size:6px;
  385. letter-spacing: 2px;
  386. }
  387.  
  388. #posts:hover #permalink {
  389. opacity:1;-webkit-transition:all 1.0s;
  390. -moz-transition:all 1.0s;
  391. -ms-transition:all 1.0s;
  392. -o-transition:all 1.0s;
  393. transition:all 1.0s;
  394. }
  395.  
  396. .tags {
  397. {block:IndexPage}
  398. opacity:0;
  399. {/block:IndexPage}
  400. word-break:break-all;
  401. font-size:7px;
  402. text-transform: uppercase;
  403. margin-top:12px;
  404. padding-top: 10px;
  405. border-top: solid 1px {color:Primary Accent Color};
  406. -webkit-transition:all 1.0s;
  407. -moz-transition:all 1.0s;
  408. -ms-transition:all 1.0s;
  409. -o-transition:all 1.0s;
  410. transition:all 1.0s;
  411. }
  412.  
  413. #posts:hover .tags {
  414. opacity:1;-webkit-transition:all 1.0s;
  415. -moz-transition:all 1.0s;
  416. -ms-transition:all 1.0s;
  417. -o-transition:all 1.0s;
  418. transition:all 1.0s;
  419. }
  420.  
  421. .pagenotes {
  422. {block:IndexPage}
  423. display: none!important;
  424. {/block:IndexPage}
  425. {block:if500pxWidth}width:460px;{/block:if500pxWidth}
  426. {block:if400pxWidth}width:360px;{/block:if400pxWidth}
  427. text-align:left;
  428. font-size: 6px;
  429. letter-spacing: 1px;
  430. text-transform:uppercase;
  431. overflow-y:auto;
  432. height: 200px;
  433. padding: 20px;
  434. background: {color:Primary Accent Color};
  435. margin-bottom: 100px;
  436. }
  437. .pagenotes a {
  438. font-size: 6px;
  439. letter-spacing: 1px;
  440. text-transform:uppercase;
  441. font-weight: bold;
  442. }
  443. .pagenotes img {
  444. display:none!important;
  445. }
  446. .pagenotes li {
  447. list-style-type:none;
  448. padding:5px 0px;
  449. text-align:left;
  450. margin:0 0 0 -40px;
  451. }
  452.  
  453. /*Credit - DO NOT REMOVE */
  454.  
  455. .credit a {
  456. position: fixed;
  457. bottom: 0;
  458. right: 0;
  459. color: #000;
  460. padding: 15px;
  461. font-family: arial;
  462. font-size: 7px;
  463. letter-spacing: 1;
  464.  
  465. }
  466. .credit a:hover {
  467. text-decoration: none;
  468. }
  469.  
  470.  
  471. {CustomCSS}
  472.  
  473.  
  474. </style>
  475.  
  476.  
  477.  
  478. </head>
  479.  
  480. <body>
  481. <div class="credit"><a href="http://vassilias.tumblr.com">&copy;</div></a>
  482.  
  483. <div class="topbar">
  484. <a href="{text:Link 1 URL}">{text:Link 1}</a>
  485. <a href="{text:Link 2 URL}">{text:Link 2}</a>
  486. <a href="{text:Link 3 URL}">{text:Link 3}</a>
  487. <a href="{text:Link 4 URL}">{text:Link 4}</a>
  488. <a href="{text:Link 5 URL}">{text:Link 5}</a>
  489. <a href="{text:Link 6 URL}">{text:Link 6}</a>
  490. </div>
  491.  
  492. <div id="header">
  493. <center>
  494. <div id="blogt">
  495. <a href="/">{Title}</a>
  496. </div> </center>
  497. <center>
  498. <div id="description">{Description}</div>
  499. </center>
  500. </div>
  501.  
  502.  
  503. <div id="con">
  504. <div id="entries">
  505.  
  506. {block:Posts}
  507. <div id="posts">
  508.  
  509.  
  510. {block:Quote}
  511.  
  512.  
  513. <div id="titlequote">{Quote}</div>
  514. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  515. {/block:Quote}
  516.  
  517.  
  518.  
  519. {block:Text}
  520.  
  521. {block:Title}
  522. <div id="title">{Title}</div>{/block:Title}
  523. {Body}
  524. {/block:Text}
  525.  
  526. {block:Link}
  527. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  528. {/block:Link}
  529.  
  530. {block:Chat}
  531. {block:Title}
  532. <h1>{Title}</h1>
  533. {/block:Title}
  534. <div class="chat">
  535. <ol>{block:Lines}
  536. <li class="line {Alt}">
  537. {block:Label}
  538. <span class="label">
  539. {Label}</span>
  540. {/block:Label}{Line}</li>
  541. {/block:Lines}
  542. </ol></div>
  543. {/block:Chat}
  544.  
  545. {block:Photo}
  546. {LinkOpenTag}<img src="{block:if500pxWidth}{PhotoURL-500}{/block:if500pxWidth}{block:if400pxWidth}{PhotoURL-400}{/block:if400pxWidth}" alt="{PhotoAlt}"/>{LinkCloseTag}
  547. {/block:Photo}
  548.  
  549. {block:Photoset}
  550. {block:if500pxWidth}{Photoset-500}{/block:if500pxWidth}{block:if400pxWidth}{Photoset-400}{/block:if400pxWidth}
  551. {/block:Photoset}
  552.  
  553. {block:Video}
  554. {block:if500pxWidth}{Video-500}{/block:if500pxWidth}{block:if400pxWidth}{Video-400}{/block:if400pxWidth}
  555. {/block:Video}
  556.  
  557. {block:Audio}
  558. <div class="player">{AudioPlayer}</div>
  559. <div class="audioinfo">
  560. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  561. </div>
  562. {/block:Audio}
  563.  
  564. {block:Answer}
  565. <div class="q">
  566. <div class="as">{Asker} ASKED: </div>
  567. {Question}</div>
  568. <div class="a">{Answer}</div>
  569. {/block:Answer}
  570.  
  571. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  572.  
  573. {block:Date}
  574. <div id="permalink">
  575. <a href="{Permalink}" >{DayOfMonth}{DayOfMonthSuffix} of {Month}, {Year}</a>{block:NoteCount}<a href="{Permalink}">with {NoteCountwithLabel}</a>{/block:NoteCount}{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}<a href="{ReblogURL}" target="_blank" style="color:{color:links}">reblog</a>
  576. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">■&nbsp;{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  577. </div>
  578. {/block:Date}
  579.  
  580.  
  581.  
  582. </div>
  583.  
  584.  
  585. {block:PostNotes}
  586. <div class="pagenotes">
  587. {PostNotes}
  588. </div>
  589. {/block:PostNotes}
  590.  
  591.  
  592. {/block:Posts}
  593.  
  594. {block:Pagination}
  595. <div id="pagination">
  596. {block:PreviousPage}
  597. <a href="{PreviousPage}">previous</a>
  598. {/block:PreviousPage}
  599.  
  600. {block:JumpPagination length="5"}
  601. {block:CurrentPage}
  602. <span class="current_page">{PageNumber}</span>
  603. {/block:CurrentPage}
  604.  
  605. {block:JumpPage}
  606. <a class="jump_page" href="{URL}">{PageNumber}</a>
  607. {/block:JumpPage}
  608. {/block:JumpPagination}
  609.  
  610. {block:NextPage}
  611. <a href="{NextPage}">next</a>
  612. {/block:NextPage}
  613. </div>
  614. {/block:Pagination}
  615.  
  616.  
  617.  
  618. </div>
  619.  
  620. </div>
  621.  
  622.  
  623. {block:ContentSource}
  624. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  625. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  626. {/block:SourceLogo}
  627. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  628. {/block:ContentSource}
  629.  
  630. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement