Advertisement
qutzalcoatl

LUX

Aug 19th, 2014
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.27 KB | None | 0 0
  1.  
  2. <!--theme by kovuhs (datiel)--> <!--base by farahmir-->
  3.  
  4. <!DOCTYPE html>
  5. <head>
  6.  
  7.  
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  13.  
  14. <!--Default Variables-->
  15. <meta name="color:Gradient one" content="#aaaaaa"/>
  16. <meta name="color:Gradient two" content="#000000"/>
  17. <meta name="color:Gradient three" content="#fff"/>
  18. <meta name="color:Title" content="#fff"/>
  19. <meta name="color:Description" content="#fff"/>
  20. <meta name="color:Background" content="#ffffff"/>
  21. <meta name="color:Caption Background" content="#fcfcfc"/>
  22. <meta name="color:Info Background" content="#fcfcfc"/>
  23.  
  24. <meta name="color:Side Link" content="#000000"/>
  25. <meta name="color:Text" content="#aaaaaa"/>
  26. <meta name="color:Link" content="#000000"/>
  27. <meta name="color:Borders" content="#ffffff"/>
  28. <meta name="color:Scrollbar" content="#ffffff"/>
  29.  
  30. <meta name="if:gradient background" content="1"/>
  31. <meta name="if:show captions" content="1"/>
  32. <meta name="if:show tags" content="1"/>
  33. <meta name="if:show sideimage" content="1"/>
  34. <meta name="if:show description" content="1"/>
  35.  
  36.  
  37. <meta name="image:Sidebar Image" content=""/>
  38. <meta name="image:Background" content=""/>
  39.  
  40. <meta name="text:opacity" content="0.9"/>
  41. <meta name="text:post width" content="250"/>
  42. <meta name="text:post spacing" content="50"/>
  43. <meta name="text:Navigation text" content="" />
  44. <meta name="text:Home text" content="" />
  45. <meta name="text:Ask text" content="" />
  46. <meta name="text:Link 1 URL" content="" />
  47. <meta name="text:Link 1" content="" />
  48. <meta name="text:Link 2 URL" content="" />
  49. <meta name="text:Link 2" content="" />
  50. <meta name="text:Link 3 URL" content="" />
  51. <meta name="text:Link 3" content="" />
  52.  
  53.  
  54. <!-- jquery for tooltips-->
  55.  
  56.  
  57. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  58.  
  59. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  60.  
  61. <script>
  62.  
  63. (function($){
  64.  
  65. $(document).ready(function(){
  66.  
  67. $("a[title]").style_my_tooltips({
  68.  
  69. tip_follows_cursor:true,
  70.  
  71. tip_delay_time:20,
  72.  
  73. tip_fade_speed:200,
  74.  
  75. attribute:"title"
  76.  
  77. });
  78.  
  79. });
  80.  
  81. })(jQuery);
  82.  
  83. </script>
  84.  
  85. <script>
  86. $(document).ready(function(){
  87. $("#navegation").click(function(){
  88. $("#links").slideToggle("slow");
  89. });
  90. });
  91. </script>
  92.  
  93.  
  94.  
  95. <!--CSS customization here. -->
  96.  
  97. <style type="text/css">
  98.  
  99. #tumblr_controls {position: fixed !important;-webkit-filter: invert(100%);opacity: 0.5;}
  100.  
  101. #s-m-t-tooltip{
  102. position:absolute;
  103. margin-top: 15px;
  104. z-index:9999;
  105. background:{color:background};
  106. }
  107.  
  108. ::-webkit-scrollbar {
  109. width:4px;
  110. height:4px;
  111. background-color:{color:background};
  112. }
  113. ::-webkit-scrollbar-track {
  114. background-color:{color:background};
  115. }
  116. ::-webkit-scrollbar-thumb {
  117. background-color:{color:scrollbar};
  118. }
  119.  
  120.  
  121. /*basics*/
  122. blockquote {padding:7px; background:{color:caption background};
  123. border:1px dotted {color:borders};
  124. margin-left:20px;
  125. }
  126.  
  127. body {
  128. background: linear-gradient(to bottom left, {color:gradient one} , {color:gradient two}, {color:gradient three}) fixed;
  129. {block:ifNotGradientBackground}background:{color:background};{/block:ifNotGradientBackground}
  130. color:{color:text};
  131. positon:fixed;
  132. font-family:arial;
  133. font-size:11px;
  134. text-align:justify;
  135. margin:0;
  136. line-height:16px;
  137. }
  138.  
  139.  
  140.  
  141. a {color:{color:link};
  142. text-decoration:none;text-transform:uppercase;font-size:9px;
  143. }
  144.  
  145.  
  146. img{opacity:1;
  147. border:none;
  148. text-decoration:none}
  149.  
  150.  
  151. small {
  152. font-size:9px;}
  153.  
  154. big {
  155. font-size:12px;}
  156.  
  157.  
  158. #title {font-size:12px;
  159. line-height:18px;
  160. font-weight:bold;
  161. margin-bottom:10px;
  162. text-transform:uppercase;
  163. text-align:justify;}
  164.  
  165. #credit {
  166. font-size:7px;
  167. position:fixed;
  168. bottom:5px;
  169. right:5px;
  170. letter-spacing:2px;padding:2px;
  171. opacity:0.7;
  172. color:{color:title};
  173. background-color:{color:background};
  174. }
  175.  
  176. /*sidebar*/
  177. #sidebar {text-align:left;
  178. position:fixed;
  179. margin-left:-225px;
  180. margin-top:20%;
  181. width:100px;
  182. }
  183.  
  184. #sidebarim {margin-bottom:20px; padding: 22%;}
  185.  
  186. #sidebarim img {width:50px;opacity: {text:opacity};{block:ifNotShowSideimage}display:none;{/block:ifNotShowSideimage}}
  187.  
  188. #blogt {font-size:18px;
  189. font-weight:bold;
  190. margin-bottom:10px;padding:8px;
  191. font-family: 'arial';
  192. text-transform:lowercase;
  193. text-align:center;
  194. color:{color:title};
  195. background-color:{color:background};
  196. }
  197.  
  198. #description {
  199. text-align:justify;font-size:9px;padding:5px;color:{color:description};
  200. {block:ifNotShowDescription}{block:IndexPage}display:none;{/block:IndexPage}{/block:ifNotShowDescription}}
  201.  
  202.  
  203. #links {
  204. width:100px;
  205. display:none;
  206. position:absolute;text-align:center;font-family: 'arial';
  207. text-transform:lowercase;
  208. font-size:7px;
  209. letter-spacing:1px;
  210. color:{color:background};
  211. }
  212. #links a {padding:4px ;color:{color:background};
  213. display:block;text-transform:lowercase;}
  214. #links a:last-of-type {border-bottom:0px;}
  215. #links a:hover {
  216. background-color:{color:background};color:{color:title};}
  217.  
  218. #navegation:after {margin-top:10px;position:absolute;
  219. font-size:14px;
  220. right:20px;
  221. margin-top:0px;}
  222.  
  223.  
  224.  
  225.  
  226. /*pagination*/
  227. #pagination {
  228. background-color:{color:background};
  229. text-align:center;
  230. line-height:22px;
  231. padding:0px;
  232. font-family:'calibri';
  233. font-size:8px;
  234. letter-spacing:1px;
  235. text-transform:uppercase;
  236. width:100px;
  237. }
  238.  
  239. /*container*/
  240. #con {padding:center;margin-left: 50%;
  241. position:absolute;
  242. }
  243.  
  244.  
  245.  
  246. /*posts*/
  247.  
  248. #entries {margin-left:50%;
  249. margin-top:0%;
  250. width:50%; height:100%; background: url('{image:background}') right center fixed repeat;padding: 10px; }
  251.  
  252.  
  253.  
  254. #posts {
  255. width:{text:post width}px;background:{color:caption background};padding: 10px;margin-left: 30px ; opacity: {text:opacity};margin-top:{text:post spacing}px;
  256. {block:IndexPage}
  257. margin-bottom:{text:post spacing}px;
  258. {/block:IndexPage}
  259. {block:PermalinkPage}
  260. margin-bottom:50px;
  261. {/block:PermalinkPage}
  262. }
  263. #posts img {
  264. max-width:700px;
  265. }
  266.  
  267. #posts img, #posts li, #posts blockquote {max-width:{text:post width}px;}
  268. .caption {width:{text:post width}px;
  269. padding:5px;
  270. background:{color:post background};{block:ifNotShowCaptions}{block:IndexPage}display:none;{/block:IndexPage}{/block:ifNotShowCaptions}
  271. }
  272.  
  273. /*quote*/
  274.  
  275. #titlequote{text-align:left;
  276. font-size:14px;
  277. line-height:18px;
  278. font-weight:bold;
  279. }
  280. #source {
  281. margin-top:15px;
  282. margin-left:15px;}
  283.  
  284. /*audio*/
  285.  
  286. .player {
  287. width:25px;
  288. height:25px;
  289. overflow:hidden;
  290. position:absolute;
  291. background:{color:info background};}
  292.  
  293. .audioinfo {
  294. margin-left:50px;font-size:9px;color:{color:text};
  295. padding:5px;
  296. letter-spacing:1px;background:{color:caption background};
  297. }
  298.  
  299.  
  300. /*asks*/
  301. .q {margin-bottom:10px;
  302. }
  303. .as {
  304. font-weight:bold;}
  305.  
  306. .a {
  307. margin-top:10px;
  308. }
  309.  
  310.  
  311. /*chat*/
  312.  
  313. .chat ol {
  314. padding:0;
  315. list-style:none;
  316. }
  317. .line {padding:5px 0;}
  318.  
  319. .label {font-weight:bold;
  320. }
  321.  
  322.  
  323.  
  324.  
  325.  
  326. /*permalink and notes*/
  327.  
  328. #permalink {
  329. margin-top:15px;
  330. text-transform:uppercase;
  331. font-size:7px;color:{color:info text};
  332. font-family:'calibri';
  333. letter-spacing:1px;width:{text:post width}px;
  334. }
  335. #permalink a {margin-right:10px;margin-top:10px;background:{color:info background};padding:2px;
  336. }
  337.  
  338.  
  339. .tags {
  340. word-break:break-all;
  341. text-transform:uppercase;
  342. font-size:7px;
  343. font-family:'calibri';
  344. letter-spacing:1px;
  345. {block:ifNotShowTags}{block:IndexPage}display:none;{/block:IndexInfo}{/block:ifNotShowTags}}
  346.  
  347. .info {
  348.  
  349. text-transform:uppercase;
  350. font-size:7px;
  351. font-family:'courier new', monospace;
  352. letter-spacing:1px;
  353. {block:ifNotShowTags}{block:IndexPage}display:none;{/block:IndexInfo}{/block:ifNotShowTags}}
  354.  
  355. .pagenotes {
  356. {block:IndexPage}
  357. display: none!important;
  358. {/block:IndexPage}
  359. width:{text:post width}px;
  360. text-align:left;
  361. {block:ifNotShowTags}{block:IndexPage}display:none;{/block:IndexPage}{/block:ifNotShowTags}
  362. }
  363. .pagenotes img {
  364. display:none!important;}
  365. .pagenotes li {
  366. list-style-type:none;
  367. padding:5px 0px;
  368. text-align:left;
  369. margin:0 0 0 -40px;
  370. }
  371.  
  372.  
  373.  
  374.  
  375. {CustomCSS}
  376.  
  377.  
  378. </style>
  379.  
  380.  
  381.  
  382. </head>
  383.  
  384. <body>
  385.  
  386. <div id="con">
  387.  
  388. <div id="sidebar">
  389. <div id="sidebarim"><img src="{image:Sidebar Image}"></div>
  390. <div id="blogt"><div id="navegation">{Title}</div></div>
  391.  
  392. <div id="description">{Description}</div>
  393.  
  394.  
  395. <div id="links">
  396. <a href="/">{text:Home text}</a>
  397. <a href="/ask">{text:Ask text}</a>
  398. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  399. {block:ifLink2}<a href="{text:Link 2 URL}" >{text:Link 2}</a>{/block:ifLink2}
  400. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a> {/block:ifLink3}
  401. </div></div>
  402.  
  403.  
  404.  
  405.  
  406. </div>
  407.  
  408.  
  409.  
  410.  
  411. <div id="entries">
  412.  
  413. {block:Posts}
  414. <div id="posts">
  415.  
  416.  
  417. {block:Quote}
  418.  
  419.  
  420. <div id="titlequote">“{Quote}”</div>
  421. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  422. {/block:Quote}
  423.  
  424.  
  425.  
  426. {block:Text}
  427.  
  428. {block:Title}
  429. <div id="title">{Title}</div>{/block:Title}
  430. {Body}
  431. {/block:Text}
  432.  
  433. {block:Link}
  434. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  435. {/block:Link}
  436.  
  437. {block:Chat}
  438. {block:Title}
  439. <h1>{Title}</h1>
  440. {/block:Title}
  441. <div class="chat">
  442. <ol>{block:Lines}
  443. <li class="line {Alt}">
  444. {block:Label}
  445. <span class="label">
  446. {Label}</span>
  447. {/block:Label}{Line}</li>
  448. {/block:Lines}
  449. </ol></div>
  450. {/block:Chat}
  451.  
  452. {block:Photo}
  453. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>{LinkCloseTag}
  454. {/block:Photo}
  455.  
  456. {block:Photoset}
  457. {Photoset}
  458. {/block:Photoset}
  459.  
  460. {block:Video}
  461. {Video-HighRes}
  462. {/block:Video}
  463.  
  464. {block:Audio}
  465. <div class="player">{AudioPlayerWhite}</div>
  466. <div class="audioinfo">
  467. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  468. </div>
  469. {/block:Audio}
  470.  
  471. {block:Answer}
  472. <div class="q">
  473. <div class="as">{Asker} said: </div>
  474. {Question}</div>
  475. <div class="a">{Answer}</div>
  476. {/block:Answer}
  477.  
  478. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  479.  
  480. {block:Date}
  481. <div id="permalink">
  482. <a href="{Permalink}" >{12Hour}:{Minutes} {AmPm}</a><div class="info">{block:NoteCount}<a href="{Permalink}">+{NoteCount}</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}</div>
  483. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  484. </div>
  485. {/block:Date}
  486.  
  487.  
  488.  
  489. </div>
  490.  
  491.  
  492. {block:PostNotes}
  493. <div class="pagenotes">
  494. {PostNotes}
  495. </div>
  496. {/block:PostNotes}
  497.  
  498.  
  499. {/block:Posts}
  500.  
  501. <div id="credit"><a href="http://kovuhs.tumblr.com/tagged/my-theme">datiel</a></div>
  502.  
  503. {block:Pagination}<div id="pagination">{block:PreviousPage}<a class="back" href="{PreviousPage}">⇠</a>{/block:PreviousPage}&nbsp;&nbsp;{block:JumpPagination length="3"}{block:CurrentPage}<span class="current">{PageNumber}</span>&nbsp;&nbsp;{/block:CurrentPage}{block:JumpPage}<a class="jump" href="{URL}">{PageNumber}</a>&nbsp;&nbsp;{/block:JumpPage}{/block:JumpPagination}{block:NextPage}<a class="next" href="{NextPage}">⇢</a>{/block:NextPage}</div>{/block:Pagination}
  504.  
  505.  
  506. </div>
  507.  
  508. </div>
  509.  
  510.  
  511. {block:ContentSource}
  512. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  513. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  514. {/block:SourceLogo}
  515. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  516. {/block:ContentSource}
  517.  
  518. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement