Advertisement
vassilias

Theme 11. Nomenclature

Aug 30th, 2015
4,960
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.  
  3. <head>
  4.  
  5.  
  6. <title>{Title}</title>
  7.  
  8. <link rel="shortcut icon" href="{Favicon}">
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  11.  
  12.  
  13. <!--- Theme 11. Nomenclature by vassilias
  14. Please do not redistribute the theme as your own, use it as a base code, or remove the credit.
  15. Feel free to edit the theme to your needs and don’t hesitate to message for help if you may need it.--->
  16.  
  17.  
  18.  
  19. <!--Default Variables-->
  20.  
  21. <meta name="if:500px Width" content="1"/>
  22. <meta name="if:400px Width" content="0"/>
  23. <meta name="if:Hide Captions" content="0"/>
  24. <meta name="if:Hide Description" content="0"/>
  25.  
  26.  
  27. <meta name="color:Border Color" content="#f0f0f0" />
  28. <meta name="color:Text" content="#000000"/>
  29. <meta name="color:Background" content="#ffffff"/>
  30. <meta name="color:Links" content="#000000"/>
  31. <meta name="color:Links Hover Color" content="#dddddd"/>
  32. <meta name="color:Tags Color" content="#000000"/>
  33. <meta name="color:Tags Hover Color" content="#dddddd"/>
  34. <meta name="color:Sidebar Links Color" content="#000000"/>
  35. <meta name="color:Blog Title Color" content="#000000"/>
  36. <meta name="color:Blog Title Hover Color" content="#000000"/>
  37. <meta name="color:Scrollbar" content="#f0f0f0" />
  38. <meta name="color:Scrollbar Background" content="#fafafa" />
  39.  
  40. <meta name="text:Link 1 URL" content="" />
  41. <meta name="text:Link 1" content="" />
  42. <meta name="text:Link 2 URL" content="" />
  43. <meta name="text:Link 2" content="" />
  44. <meta name="text:Link 3 URL" content="" />
  45. <meta name="text:Link 3" content="" />
  46. <meta name="text:Link 4 URL" content="" />
  47. <meta name="text:Link 4" content="" />
  48. <meta name="text:Link 5 URL" content="" />
  49. <meta name="text:Link 5" content="" />
  50.  
  51. <!-- jquery for tooltips-->
  52.  
  53. <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
  54.  
  55. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  56.  
  57. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  58.  
  59. <!--CSS customization here. -->
  60.  
  61. <style type="text/css">
  62.  
  63. #s-m-t-tooltip{
  64. position:absolute;
  65. margin-top: 15px;
  66. z-index:9999;
  67. font-family: helvetica;
  68. font-weight: lighter;
  69. font-size: 6px;
  70. letter-spacing: 1px;
  71. padding: 3px 6px 3px 6px;
  72. text-transform: uppercase;
  73. color:#fff;
  74. background:{color:Text};
  75. }
  76.  
  77. ::-webkit-scrollbar {
  78. height: 8px;
  79. width: 8px;
  80. background: {color:Scrollbar Background};
  81. }
  82.  
  83. ::-webkit-scrollbar-thumb {
  84. background: {color:Scrollbar};
  85. }
  86.  
  87. iframe#tumblr_controls {
  88. white-space:nowrap!important;
  89. -webkit-filter:invert(100%)!important;
  90. -moz-filter:invert(100%)!important;
  91. -ms-filter:invert(100%)!important;
  92. -o-filter:invert(100%)!important;
  93. filter:invert(100%)!important;
  94. top:5px!important;
  95. right:5px!important;
  96. position:fixed!important;
  97. opacity:.3!Important;
  98. }
  99.  
  100.  
  101.  
  102.  
  103. /*basics*/
  104.  
  105. body {
  106. background:{color:Background};
  107. color:{color:Text};
  108. font-family:helvetica;
  109. font-weight: lighter;
  110. font-size:10px;
  111. text-align:justify;
  112. margin:0;
  113. line-height:16px;
  114. }
  115.  
  116. a {
  117. color:{color:Links};
  118. text-decoration:none;
  119. padding: 0px;
  120. -webkit-transition: all 0.3s ease-out;
  121. -moz-transition: all 0.3s ease-out;
  122. -o-transition: all 0.3s ease-out;
  123. }
  124.  
  125. a:hover {
  126. text-decoration:none;
  127. color:{color:Links Hover Color};
  128. -webkit-transition: all 0.3s ease-out;
  129. -moz-transition: all 0.3s ease-out;
  130. -o-transition: all 0.3s ease-out;
  131. }
  132.  
  133. img{
  134. opacity:1;
  135. border:none;
  136. text-decoration:none;
  137. }
  138.  
  139. small {
  140. font-size:9px;
  141. }
  142.  
  143. big {
  144. font-size:10px;
  145. }
  146.  
  147. #title {
  148. border-bottom:solid 1px {color:Border Color};
  149. padding:15px;
  150. font-size:10px;
  151. margin-bottom:15px;
  152. font-weight:bold;
  153. }
  154.  
  155. /*sidebar*/
  156.  
  157. #sidebar {
  158. text-align:right;
  159. position:fixed;
  160. margin-left:-350px;
  161. top: 100px;
  162. color:{color:Text};
  163. height: 100%;
  164. }
  165.  
  166.  
  167. #blogt {
  168. margin-left:50px;
  169. border-right: solid 1px {color:Border Color};
  170. border-bottom: solid 1px {color:Border Color};
  171. font-weight:bolder;
  172. max-width:90px;
  173. display: inline-block;
  174. font-size: 10px;
  175. text-transform: uppercase;
  176. text-align: right;
  177. padding:20px;
  178. }
  179.  
  180. #blogt a {
  181. color:{color:Blog Title Color};
  182. font-weight:bolder;
  183. }
  184.  
  185. #blogt a:hover {
  186. color:{color:Blog Title Hover Color};
  187. }
  188.  
  189. #links {
  190. width: 80px;
  191. margin-left:50px;
  192. padding:30px;
  193. border-right: solid 1px {color:Border Color};
  194. text-transform:uppercase;
  195. font-weight:lighter;
  196. text-align: right;
  197. color: {color:Sidebar Links Color};
  198. {block:ifhidedescription}border-bottom: solid 1px {color:Border Color};{/block:ifhidedescription}
  199. }
  200.  
  201. #links a {
  202. display:inline-block;
  203. padding: 3px 0px 3px 5px;
  204. font-size: 7px;
  205. font-family: helvetica;
  206. letter-spacing: 1px;
  207. color:{color:Sidebar Links Color};
  208. }
  209.  
  210. #links a:hover {
  211. margin-right:10px;
  212. }
  213.  
  214. #description {
  215. margin-left:50px;
  216. line-height:15px;
  217. padding:30px;
  218. width: 80px;
  219. font-size: 10px;
  220. text-align: justify;
  221. border-top: solid 1px {color:Border Color};
  222. border-right: solid 1px {color:Border Color};
  223. color: {color:Text};
  224. {block:ifhidedescription}display:none;{/block:ifhidedescription}
  225. }
  226.  
  227. /*pagination*/
  228.  
  229. .pagination {
  230. border-top: solid 1px {color:Border Color};
  231. padding: 15px;
  232. text-align:right;
  233. text-transform:lowercase;
  234. font-size:10px;
  235. word-spacing:10px;
  236. margin-top:60px;
  237. z-index:999999;
  238. }
  239.  
  240. .pagination a {
  241. word-spacing:10px;
  242. padding: 5px;
  243. }
  244.  
  245. /*container*/
  246.  
  247. #con {
  248. left:50%;
  249. margin-left:-230px;
  250. position:absolute;
  251. }
  252.  
  253. /*posts*/
  254.  
  255. #entries {
  256. margin-left:-30px;
  257. height:100%;
  258. margin-top:100px;
  259. padding-bottom:140px;
  260. {block:if500pxWidth}
  261. width:500px;
  262. {/block:if500pxWidth}
  263. {block:if400pxWidth}
  264. width:400px;
  265. {/block:if400pxWidth}
  266. }
  267.  
  268. #posts {
  269. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  270. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  271. margin-bottom:100px;
  272. }
  273.  
  274. #posts img {
  275. margin-left:0px;
  276. {block:if500pxWidth}width:500px;{/block:if500pxWidth}
  277. {block:if400pxWidth}width:400px;{/block:if400pxWidth}
  278. }
  279.  
  280.  
  281. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  282.  
  283. .caption {
  284. padding: 10px;
  285. font-size: 10px;
  286. {block:ifhidecaptions}
  287. {block:indexpage}
  288. display:none;
  289. {/block:indexpage}
  290. {/block:ifhidecaptions}
  291. }
  292.  
  293. blockquote {
  294. font-size:10px;
  295. padding-left:20px;
  296. margin-left:3px;
  297. border-left:1px solid {color:Border Color};
  298. }
  299.  
  300. .bor {
  301. border: solid 1px {color:Border Color};
  302. padding:10px 30px 10px 30px;
  303. }
  304.  
  305. .bor2 {
  306. border: solid 1px {color:Border Color}; padding: 30px;
  307. }
  308. /*permalink and notes*/
  309.  
  310. #permalink {
  311. margin-top:5px;
  312. padding:5px;
  313. font-size:9px;
  314. letter-spacing: 1px;
  315. text-align: left;
  316. text-transform:none;
  317. }
  318.  
  319. #permalink a {
  320. text-transform:none;
  321. }
  322.  
  323. #posts .tags {
  324. {block:IndexPage}
  325. opacity:0;
  326. -webkit-transition: all 0.4s ease-out;
  327. -moz-transition: all 0.4s ease-out;
  328. -o-transition: all 0.4s ease-out;
  329. {/block:IndexPage}
  330. }
  331.  
  332. #posts:hover .tags {
  333. {block:IndexPage}
  334. opacity: 1;
  335. -webkit-transition: all 0.4s ease-out;
  336. -moz-transition: all 0.4s ease-out;
  337. -o-transition: all 0.4s ease-out;
  338. {/block:IndexPage}
  339. }
  340.  
  341. .tags {
  342. font-size:9px;
  343. text-transform:none;
  344. }
  345.  
  346. .tags a {
  347. color:{color:Tags Color};
  348. }
  349.  
  350. .tags a:hover {
  351. color:{color:Tags Hover Color};
  352. }
  353.  
  354. .pagenotes {
  355. {block:IndexPage}
  356. display: none!important;
  357. {/block:IndexPage}
  358. text-align:left;
  359. font-size: 9px;
  360. text-transform:lowercase;
  361. }
  362.  
  363. .pagenotes img {
  364. display:none!important;
  365. }
  366.  
  367. .pagenotes li {
  368. list-style-type:none;
  369. padding:7px 5px 7px 5px;
  370. }
  371.  
  372. .pagenotes a {
  373. font-weight:bold;
  374. }
  375.  
  376. /*quote*/
  377.  
  378. #quote {
  379. font-size:10px;
  380. text-align:left;
  381. margin-bottom:10px;
  382. }
  383.  
  384. #source {
  385. text-align:right;
  386. font-size:10px;
  387. font-weight:bold;
  388. }
  389.  
  390.  
  391. /*audio*/
  392.  
  393. .player {
  394. width:25px;
  395. height:25px;
  396. overflow:hidden;
  397. position:absolute;
  398. background:{color:Background};
  399. margin-top: 25px;
  400. }
  401.  
  402. .audioinfo {
  403. margin-left:50px;
  404. padding: 20px;
  405. margin-bottom: 10px;
  406. }
  407.  
  408.  
  409. /*asks*/
  410.  
  411. .q {
  412. padding: 15px 15px 0px 15px;
  413. }
  414.  
  415. .as {
  416. margin-top:10px;
  417. text-align:right;
  418. font-style:italic;
  419. font-weight:normal;
  420. font-size:10px;
  421. text-transform: none;
  422. }
  423.  
  424. .as a {
  425. font-size: 10px;
  426. }
  427.  
  428. .a {
  429. border-top: solid 1px {color:Border Color};
  430. padding: 10px 15px 15px 15px;
  431. margin-top:20px;
  432. }
  433.  
  434.  
  435. /*chat*/
  436.  
  437. .chat ol {
  438. padding:30px;
  439. list-style:none;
  440. border: solid 1px {color:Border Color};
  441. }
  442.  
  443. .line {
  444. padding:5px 0px 5px 0px;
  445. }
  446.  
  447. .label {
  448. font-weight:bold;
  449. text-transform:none;
  450. }
  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: Helvetica;
  462. font-size: 7px;
  463. letter-spacing: 1;
  464. }
  465.  
  466. .credit a:hover {
  467. text-decoration: none;
  468. }
  469.  
  470. {CustomCSS}
  471.  
  472.  
  473. </style>
  474.  
  475. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  476. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  477. <script type="text/javascript" charset="utf-8">
  478. var $j = jQuery.noConflict();
  479. $j(function() {
  480. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  481. $j("img").lazyload({
  482. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  483. effect: "fadeIn",
  484. });
  485. });
  486. </script>
  487.  
  488. <script language="javascript">
  489. function toggle() {
  490. var ele = document.getElementById("toggleText");
  491. var text = document.getElementById("displayText");
  492. if(ele.style.display == "block") {
  493. ele.style.display = "none";
  494. text.innerHTML = "SHOW NOTES";
  495. }
  496. else {
  497. ele.style.display = "block";
  498. text.innerHTML = "HIDE NOTES";
  499. }
  500. }
  501. </script>
  502. </head>
  503.  
  504.  
  505.  
  506.  
  507. <body>
  508.  
  509. <div class="credit"><a title="vassilias" href="http://vassilias.tumblr.com">&copy;</div></a>
  510.  
  511.  
  512. <div id="con">
  513.  
  514.  
  515. <div id="sidebar"><div id="blogt"><a href="/">{Title}</div></a>
  516. <div id="links">
  517. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}<br>
  518. {block:ifLink2}<a href="{text:Link 2 URL}" >{text:Link 2}</a>{/block:ifLink2}<br>
  519. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}<br>
  520. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a> {/block:ifLink4}<br>
  521. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a> {/block:ifLink5}
  522. </div><div id="description">{Description}</div></div>
  523.  
  524.  
  525.  
  526.  
  527. <div id="entries">
  528. {block:Posts}
  529. <div id="posts">
  530.  
  531. {block:Quote}<div class="bor2"><div id="quote">{Quote}</div><div id="source">{Source}</div></div>{/block:Quote}
  532.  
  533.  
  534. {block:Text}{block:Title}<div id="title">{Title}</div>{/block:Title}
  535. {Body}{/block:Text}
  536.  
  537. {block:Link}<div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  538.  
  539. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}<div class="chat">
  540. <ol>{block:Lines}<li class="line {Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}{Line}</li>{/block:Lines}</ol></div>{/block:Chat}
  541.  
  542. {block:Photo}
  543. {LinkOpenTag}<img src="{block:if500pxWidth}{PhotoURL-500}{/block:if500pxWidth}{block:if400pxWidth}{PhotoURL-400}{/block:if400pxWidth}" alt="{PhotoAlt}"/>{LinkCloseTag}{/block:Photo}{block:Photoset}{block:if500pxWidth}{Photoset-500}{/block:if500pxWidth}{block:if400pxWidth}{Photoset-400}{/block:if400pxWidth}{/block:Photoset}
  544.  
  545. {block:Video}{block:if500pxWidth}{Video-500}{/block:if500pxWidth}{block:if400pxWidth}{Video-400}{/block:if400pxWidth}{/block:Video}
  546.  
  547.  
  548. {block:Audio}<div class="bor"><div class="player">{AudioPlayerWhite}</div>
  549. <div class="audioinfo"><span style="font-weight:bold">{block:TrackName}{TrackName}{/block:TrackName}</span>{block:Artist}<br>{Artist}{/block:Artist}
  550. </div></div>{/block:Audio}
  551.  
  552.  
  553. {block:Answer}<div class="bor2"><div class="q">{Question}<div class="as">asked by {Asker}</div></div><div class="a">{Answer}</div></div>{/block:Answer}
  554.  
  555.  
  556. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  557.  
  558.  
  559. {block:Date}
  560. <div id="permalink">{block:IndexPage}<a href="{Permalink}" style="font-weight:normal;">{MonthNumber}.{DayOfMonthWithZero}.{ShortYear}</a>{block:NoteCount}&nbsp;&nbsp;&middot;&nbsp;&nbsp;<a href="{Permalink}" style="font-weight:normal;">{NoteCount} N</a>{/block:NoteCount}
  561. {/block:IndexPage}
  562. {block:PermalinkPage}<a href="{Permalink}">Posted on {DayOfMonth}{DayOfMonthSuffix} {Month}, {Year} {block:NoteCount}with {NoteCountwithLabel}</a>{/block:NoteCount}&nbsp;&nbsp;&middot;&nbsp;&nbsp;<a href="{ReblogURL}">Reblog</a><p>{block:RebloggedFrom}Via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{block:ContentSource}&nbsp;&nbsp;&middot;&nbsp;&nbsp;Source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:ContentSource}{/block:RebloggedFrom}{/block:PermalinkPage}
  563. {block:IndexPage}{block:HasTags}<span class="tags">&nbsp;&nbsp;&nbsp;&nbsp;{block:Tags}<a href="{TagUrl}" style="font-size: 9px;">{Tag}</a>&nbsp;&nbsp;&nbsp;&nbsp;{/block:Tags}</span>{/block:HasTags}{/block:IndexPage}
  564. {block:PermalinkPage}{block:HasTags}<p>Filed As:&nbsp;&nbsp;&nbsp;<span class="tags">{block:Tags}<a href="{TagUrl}" style="font-size: 10px;">{Tag}</a>&nbsp;&nbsp;&nbsp;{/block:Tags}</span>{/block:HasTags}
  565. {/block:PermalinkPage}
  566. </div>
  567. {/block:Date}
  568. </div>
  569.  
  570. {block:PostNotes}<center><a id="displayText" href="javascript:toggle();" style="font-size:9px; letter-spacing:1px; margin-bottom:30px;">SHOW NOTES</a></center><div id="toggleText" style="display: none"><div class="pagenotes">{PostNotes}</div></div>{/block:PostNotes}
  571.  
  572. {/block:Posts}
  573.  
  574. {block:Pagination}
  575. <div class="pagination">
  576. {block:PreviousPage}
  577. <a href="{PreviousPage}">previous</a>
  578. {/block:PreviousPage}
  579. {block:JumpPagination}
  580. {block:CurrentPage}
  581. <span class="current_page">{PageNumber}</span>
  582. {/block:CurrentPage}
  583. {block:JumpPage}
  584. <a class="jump_page" href="{URL}">{PageNumber}</a>
  585. {/block:JumpPage}
  586. {/block:JumpPagination}
  587. {block:NextPage}
  588. <a href="{NextPage}">next</a>
  589. </div>
  590. {/block:NextPage}
  591.  
  592. {block:ContentSource}
  593. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  594. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  595. {/block:SourceLogo}
  596. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  597. {/block:ContentSource}
  598.  
  599. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement