jcegers

MAZE

Jan 30th, 2015
1,836
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  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.  
  14.  
  15. jcegers' THEME #09: MAZE // Please don't remove the credit!
  16. if you have any questions, please feel free to ask. Enjoy :)
  17.  
  18.  
  19. -->
  20.  
  21. <!--Default Variables-->
  22.  
  23. <meta name="color:Background" content="#ffffff"/>
  24. <meta name="color:Title" content="#151515"/>
  25. <meta name="color:Text" content="#aaaaaa"/>
  26. <meta name="color:Link" content="#000000"/>
  27. <meta name="color:Hover" content="#000000"/>
  28. <meta name="color:Shadow" content="#f7f7f7"/>
  29. <meta name="color:Desc Text" content="#ffffff"/>
  30. <meta name="color:Desc Link" content="#ffffff"/>
  31. <meta name="color:Side Link" content="#fafafa"/>
  32. <meta name="color:Side Link Hover" content="#121212"/>
  33. <meta name="color:Side BG" content="#121212"/>
  34. <meta name="color:Side Link BG" content="#121212"/>
  35. <meta name="color:Side Link BG Hover" content="#ffffff"/>
  36. <meta name="color:Side Link Border" content="#ffffff"/>
  37. <meta name="color:Border" content="#eee"/>
  38.  
  39. <meta name="image:Sidebar Image" content=""/>
  40. <meta name="if:Show Border" content=""/>
  41. <meta name="if:Show Round Corner" content=""/>
  42. <meta name="if:Show Shadow" content=""/>
  43. <meta name="text:title" content="" />
  44.  
  45. <meta name="text:Link 1 URL" content="" />
  46. <meta name="text:Link 1" content="" />
  47. <meta name="text:Link 2 URL" content="" />
  48. <meta name="text:Link 2" content="" />
  49. <meta name="text:Link 3 URL" content="" />
  50. <meta name="text:Link 3" content="" />
  51.  
  52.  
  53. <!-- jquery for tooltips-->
  54.  
  55.  
  56. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  57.  
  58. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  59. <script>
  60. (function($){
  61. $(document).ready(function(){
  62. $("a[title]").style_my_tooltips({
  63. tip_follows_cursor:true,
  64. tip_delay_time:30,
  65. tip_fade_speed:300,
  66. attribute:"title"
  67. });
  68. });
  69. })(jQuery);
  70. </script>
  71.  
  72. <!--CSS customization here. -->
  73.  
  74. <style type="text/css">
  75.  
  76. #s-m-t-tooltip{
  77. position:absolute;
  78. margin-top: 15px;
  79. z-index:9999;
  80. padding:5px;
  81. text-align:center;
  82. font-family: arial;
  83. opacity: 0;
  84. color:{color:desc text};
  85. background-color:{color:side BG};
  86. {block:ifShowShadow}
  87. box-shadow:2px 2px {color:Shadow};
  88. {/block:ifShowShadow}
  89. {block:ifShowBorder}
  90. border: 1px solid {color:Border};
  91. {/block:ifShowBorder}
  92. {block:ifShowRoundCorner}
  93. border-radius:3px;
  94. {/block:ifShowRoundCorner}
  95.  
  96. }
  97.  
  98. ::-webkit-scrollbar-thumb:vertical {background-color:{color:border};}
  99. ::-webkit-scrollbar-button:horizontal {display:none;}
  100. ::-webkit-scrollbar {background-color:#fcfcfc; width:5px;}
  101.  
  102. /*basics*/
  103.  
  104.  
  105. blockquote {
  106. padding:0px 5px;
  107. min-width:380px;
  108. border-left:1px solid #b8b8b8;
  109. margin-left:2px;}
  110.  
  111. body {
  112. background:{color:background};
  113. color:{color:text};
  114. font-family:'calibri';
  115. font-size:10px;
  116. text-align:justify;
  117. margin:0;}
  118.  
  119. a {
  120. color:{color:link};
  121. text-decoration:none;
  122. -moz-transition-duration: 0.5s;
  123. -o-transition-duration: 0.5s;
  124. -webkit-transition-duration: 0.5s;
  125. transition-duration: 0.5s;}
  126.  
  127. a:hover {
  128. color:{color:hover};
  129. text-decoration:none;}
  130.  
  131. img{opacity:1;
  132. border:none;
  133. text-decoration:none}
  134.  
  135.  
  136. small {font-size:10px;}
  137. big {font-size:12px;}
  138.  
  139.  
  140. #title {
  141. font-size:12px;
  142. line-height:18px;
  143. font-weight:bold;
  144. margin-bottom:10px;
  145. text-transform:uppercase;
  146. text-align:left;}
  147.  
  148.  
  149. /*sidebar*/
  150.  
  151. #sidebar {
  152. text-align:left;
  153. position:fixed;
  154. margin-left:255px;
  155. margin-top:50px;
  156. width:160px;}
  157.  
  158. #sidebar:hover #links {
  159. opacity: 1.0;
  160. margin-top: 0px;
  161. margin-left:-105px;
  162. -moz-transition-duration: 1s;
  163. -webkit-transition-duration: 1s;
  164. -o-transition-duration: 1s;
  165. }
  166.  
  167. #sidebar:hover #description {
  168. opacity: 1.0;
  169. margin-top: 0px;
  170. margin-left:46px;
  171. -moz-transition-duration: 1s;
  172. -webkit-transition-duration: 1s;
  173. -o-transition-duration: 1s;
  174. }
  175.  
  176. #links {
  177. position: absolute;
  178. {block:ifShowBorder}
  179. border: 1px solid {color:Border};
  180. {/block:ifShowBorder}
  181. letter-spacing: 0px;
  182. position: fixed;
  183. font-family:'consolas';
  184. width: 140px;
  185. height:141px;
  186. opacity: 0;
  187. margin-top: 0px;
  188. margin-left: 46px;
  189. background-color:{color:side BG};
  190. {block:ifShowRoundCorner}
  191. border-radius:3px;
  192. {/block:ifShowRoundCorner}
  193. font-size: 10px;
  194. {block:ifShowShadow}
  195. box-shadow:2px 2px {color:Shadow};
  196. {/block:ifShowShadow}
  197. text-transform: lowercase;
  198. text-align: center;
  199. line-height: 180%;
  200. -moz-transition-duration: 1s;
  201. -webkit-transition-duration: 1s;
  202. -o-transition-duration: 1s;
  203. }
  204.  
  205. #links a {
  206. margin-left:10px;
  207. display:block;
  208. width:120px;
  209. color:{color:Side Link};
  210. margin-top:7px;
  211. {block:ifShowRoundCorner}
  212. border-radius:3px;
  213. {/block:ifShowRoundCorner}
  214. font-weight:bold;
  215. background:{color:side link BG};
  216. letter-spacing:1px;
  217. border:1px solid transparent;
  218. -moz-transition-duration: 0.5s;
  219. -o-transition-duration: 0.5s;
  220. -webkit-transition-duration: 0.5s;
  221. transition-duration: 0.5s;
  222. }
  223.  
  224.  
  225. #links a:hover {
  226. color:{color:Side link hover};
  227. background:{color:side Link BG Hover};
  228. {block:ifShowRoundCorner}
  229. border-radius:3px;
  230. {/block:ifShowRoundCorner}
  231. border:1px solid transparent;
  232. -moz-transition-duration: 0.5s;
  233. -o-transition-duration: 0.5s;
  234. -webkit-transition-duration: 0.5s;
  235. transition-duration: 0.5s;
  236. }
  237.  
  238. #sidebarim img {
  239. {block:ifShowRoundCorner}
  240. border-radius:3px;
  241. {/block:ifShowRoundCorner}
  242. margin:0px 46px;
  243. {block:ifShowBorder}
  244. border: 1px solid {color:Border};
  245. {/block:ifShowBorder}
  246. {block:ifShowShadow}
  247. box-shadow:2px 2px {color:Shadow};
  248. {/block:ifShowShadow}
  249. width:140px;
  250. }
  251.  
  252. #blogt {
  253. margin:4px 46px 5px;
  254. font-size:17px;
  255. font-family:'georgia';
  256. -webkit-font-smoothing: antialiased;
  257. text-transform:uppercase;
  258. color:{color:Title};
  259. letter-spacing:1px;
  260. text-align:left;
  261. width:140px;
  262. font-weight:none;}
  263.  
  264. #blogt a {
  265. color:{color:Title};
  266. }
  267.  
  268. #blogt a:hover {
  269. color:{color:Hover};
  270. }
  271.  
  272. #description {
  273. width:120px;
  274. max-height:140px;
  275. top:-117px;
  276. line-height:12px;
  277. text-align:center;
  278. {block:ifShowShadow}
  279. box-shadow:2px 2px {color:Shadow};
  280. {/block:ifShowShadow}
  281. padding:10px;
  282. font-family:'calibri';
  283. opacity:0;
  284. color:{color:desc text};
  285. background-color:{color:side BG};
  286. {block:ifShowBorder}
  287. border: 1px solid {color:Border};
  288. {/block:ifShowBorder}
  289. {block:ifShowRoundCorner}
  290. border-radius:3px;
  291. {/block:ifShowRoundCorner}
  292. font-size: 10px;
  293. -moz-transition-duration: 1s;
  294. -webkit-transition-duration: 1s;
  295. -o-transition-duration: 1s;
  296. }
  297.  
  298. #description a {
  299. color:{color:Desc Link};
  300. }
  301.  
  302. /*pagination*/
  303.  
  304. #pagination {
  305. margin:50px 0;
  306. text-align:center;
  307. text-transform:uppercase;
  308. font-weight:bold;}
  309.  
  310. #pagination a {
  311. padding:0 15px;
  312. {block:ifShowRoundCorner}
  313. border-radius:5px;
  314. {/block:ifShowRoundCorner}
  315. {block:ifShowShadow}
  316. box-shadow:2px 2px {color:Shadow};
  317. {/block:ifShowShadow}
  318. {block:ifShowBorder}
  319. border: 1px solid {color:Border};
  320. {/block:ifShowBorder}
  321. padding:2px 5px 2px 5px;
  322. }
  323.  
  324. /*posts*/
  325.  
  326. #entries {
  327. margin-top:75px;
  328. margin-left:550px;
  329. width:400px;}
  330.  
  331.  
  332. #posts {
  333. width:400px;
  334. {block:ifShowRoundCorner}
  335. border-radius:5px;
  336. {/block:ifShowRoundCorner}
  337. {block:ifShowShadow}
  338. box-shadow:2px 2px {color:Shadow};
  339. {/block:ifShowShadow}
  340. overflow:hidden;
  341. {block:ifShowBorder}
  342. border: 1px solid {color:Border};
  343. {/block:ifShowBorder}
  344. padding:15px;
  345. {block:IndexPage}
  346. margin-bottom:75px;
  347. {/block:IndexPage}
  348. {block:PermalinkPage}
  349. margin-bottom:50px;
  350. {/block:PermalinkPage}}
  351.  
  352. #posts img {
  353. max-width:400px;}
  354.  
  355. .caption {
  356. max-width:100%;
  357. padding:5px;
  358. margin-top:0px;
  359. }
  360.  
  361. /*quote*/
  362.  
  363. #titlequote{
  364. text-align:center;
  365. font-size:12px;
  366. line-height:18px;
  367. font-weight:bold;}
  368.  
  369. #source {
  370. margin-top:4px;
  371. text-align:right;
  372. margin-left:15px;}
  373.  
  374. /*audio*/
  375.  
  376. .music {
  377. width:400px;
  378. padding-bottom:0px;
  379. }
  380.  
  381. .albumart {
  382. float:left;
  383. }
  384.  
  385. .albumart img {
  386. width:50px;
  387. {block:ifShowRoundCorner}
  388. border-radius:5px;
  389. {/block:ifShowRoundCorner}
  390. margin:0px 10px 2px 5px;
  391. }
  392.  
  393. .playercontainer {
  394. text-align:left;
  395. padding-bottom:-3px;
  396. position:background;
  397. }
  398.  
  399. .musicinfo {
  400. padding:5px;
  401. margin-top:9px;
  402. line-height:14px;
  403. }
  404.  
  405. /*asks*/
  406.  
  407. .ask img {
  408. float: left;
  409. margin-top:4px;
  410. margin-left:5px;
  411. {block:ifShowRoundCorner}
  412. border-radius:3px;
  413. {/block:ifShowRoundCorner}
  414. margin-right:9px;
  415. }
  416.  
  417. .question {
  418. padding:5px 7px 5px 5px;
  419. width:390px;
  420. min-height:46px;
  421. background:{color:Side Link BG};
  422. color:{color:Side Link};
  423. {block:ifShowRoundCorner}
  424. border-radius:5px;
  425. {/block:ifShowRoundCorner}
  426. {block:ifShowShadow}
  427. box-shadow:2px 2px {color:Shadow};
  428. {/block:ifShowShadow}
  429. }
  430.  
  431. .asker {
  432. text-transform:none;
  433. color:{color:Side Link};
  434. }
  435.  
  436. .answer {
  437. padding:5px;
  438. margin-top:-5px;
  439. width:390px;
  440. }
  441.  
  442.  
  443. /*chat*/
  444.  
  445. .chat ol {padding:0;list-style:none;}
  446. .odd, .even {padding:2px;}
  447. .odd {background-color:#f4f4f4;}
  448. .line {padding:5px 5px;}
  449. .label {font-weight:bold;}
  450.  
  451. /*permalink and notes*/
  452.  
  453. #info {
  454. margin-top:0px;
  455. padding:12px 1px 5px 1px;
  456. text-align:left;
  457. width:400px;
  458. overflow:hidden;
  459. color:{color:Title};
  460. font-size:11px;
  461. text-transform:uppercase;
  462. letter-spacing:1px;
  463. border-top:1px solid {color:border};
  464. font-weight:bold;
  465. }
  466.  
  467. #info a {
  468. {block:ifShowRoundCorner}
  469. border-radius:3px;
  470. {/block:ifShowRoundCorner}
  471. padding:1px 5px 1px 5px;
  472. {block:ifShowShadow}
  473. box-shadow:2px 2px {color:Shadow};
  474. {/block:ifShowShadow}
  475. }
  476.  
  477. .via {
  478. text-align:right;
  479. font-weight:none;
  480. letter-spacing:1px;
  481. margin-top:-15px;
  482. }
  483.  
  484. #posts:hover .tags {
  485. opacity:1;
  486. -moz-transition-duration:1s;
  487. -webkit-transition-duration:1s;
  488. -o-transition-duration:1s;
  489. }
  490.  
  491. .tags{
  492. opacity:1;
  493. text-align:right;
  494. margin-right:0px;
  495. margin-top:0px;
  496. -moz-transition-duration:1s;
  497. -webkit-transition-duration:1s;
  498. -o-transition-duration:1s;}
  499.  
  500. .tags a {
  501. display:inline-block;
  502. text-align:center;
  503. {block:ifShowRoundCorner}
  504. border-radius:3px;
  505. {/block:ifShowRoundCorner}
  506. {block:ifShowShadow}
  507. box-shadow:2px 2px {color:Shadow};
  508. {/block:ifShowShadow}
  509. margin-right:5px;
  510. margin-top:5px;
  511. padding:1px 5px 1px 5px;
  512. color:{color:Side Link};
  513. font-weight:bold;
  514. background:{color:side link BG};
  515. letter-spacing:1px;
  516. -moz-transition-duration: 0.5s;
  517. -o-transition-duration: 0.5s;
  518. -webkit-transition-duration: 0.5s;
  519. transition-duration: 0.5s;
  520. }
  521.  
  522. .tags a:hover{
  523. color:{color:Side link hover};
  524. background:{color:side Link BG Hover};
  525. -moz-transition-duration: 0.5s;
  526. -o-transition-duration: 0.5s;
  527. -webkit-transition-duration: 0.5s;
  528. transition-duration: 0.5s;
  529. }
  530.  
  531.  
  532. .pagenotes {
  533. {block:IndexPage}
  534. display:none!important;
  535. {/block:IndexPage}
  536. width:400px;
  537. text-align:left;}
  538.  
  539. .pagenotes img {
  540. display:none!important;}
  541.  
  542. .pagenotes li {
  543. list-style-type:none;
  544. padding:5px 5px;
  545. text-align:left;
  546. margin:0 0 0 -20px;}
  547.  
  548. .credit {
  549. position:fixed;
  550. font-family:'calibri';
  551. font-size:10px;
  552. font-weight:bold;
  553. line-height:150%;
  554. right:7px;
  555. bottom:10px;
  556. text-align:center;}
  557.  
  558. .credit a {
  559. font-style:normal;
  560. padding:3px;
  561. padding:3px;
  562. {block:ifShowRoundCorner}
  563. border-radius:3px;
  564. {/block:ifShowRoundCorner}
  565. font-size:8px;
  566. text-align:center;
  567. {block:ifShowShadow}
  568. box-shadow:2px 2px {color:Shadow};
  569. {/block:ifShowShadow}
  570. font-family: 'consolas';
  571. color:{color:Link};
  572. background-color:{color:background};
  573. {block:ifShowBorder}
  574. border: 1px solid {color:Border};
  575. {/block:ifShowBorder}
  576. -moz-transition-duration:0.5s;
  577. -webkit-transition-duration:0.5s;
  578. -o-transition-duration:0.5s;}
  579.  
  580. .credit a:hover {
  581. color:{color:Hover};
  582. }
  583.  
  584.  
  585. {CustomCSS}
  586.  
  587.  
  588. </style>
  589.  
  590.  
  591.  
  592. </head>
  593.  
  594. <body>
  595.  
  596.  
  597. <div class="credit"><a href="http://jcegers.tumblr.com/" title="theme">JCE</a></div>
  598.  
  599.  
  600. <div id="sidebar">
  601. <div id="links">
  602. <a href="/">home</a>
  603. <a href="/ask">ask</a>
  604. <a href="{text:Link 1 URL}">{text:Link 1}</a>
  605. <a href="{text:Link 2 URL}">{text:Link 2}</a>
  606. <a href="{text:Link 3 URL}">{text:Link 3}</a>
  607. </div>
  608. <div id="sidebarim"><img src="{image:Sidebar Image}"></div>
  609. <div id="blogt"><a href="/" title="{Title}">{text:title}</a></div>
  610. <div id="description">{Description}</div>
  611. </div>
  612.  
  613.  
  614.  
  615.  
  616. <div id="entries">
  617.  
  618.  
  619. {block:Posts}
  620.  
  621. <div id="posts">
  622.  
  623.  
  624. {block:Quote}
  625.  
  626.  
  627. <div id="titlequote">“{Quote}”</div>
  628. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  629. {/block:Quote}
  630.  
  631.  
  632.  
  633. {block:Text}
  634.  
  635. {block:Title}
  636. <div id="title">{Title}</div>{/block:Title}
  637. {Body}
  638. {/block:Text}
  639.  
  640. {block:Link}
  641. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  642. {/block:Link}
  643.  
  644. {block:Chat}
  645. {block:Title}
  646. <h1>{Title}</h1>
  647. {/block:Title}
  648. <div class="chat">
  649. <ol>{block:Lines}
  650. <li class="line {Alt}">
  651. {block:Label}
  652. <span class="label">
  653. {Label}</span>
  654. {/block:Label}{Line}</li>
  655. {/block:Lines}
  656. </ol></div>
  657. {/block:Chat}
  658.  
  659. {block:Photo}
  660. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  661. {/block:Photo}
  662.  
  663. {block:Photoset}
  664. {Photoset-400}
  665. {/block:Photoset}
  666.  
  667. {block:Video}
  668. {Video-400}
  669. {/block:Video}
  670.  
  671. {block:Audio}
  672. <div class="music">{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
  673. <div class="musicinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  674. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  675. <br><div class="playercontainer">{AudioPlayerWhite}</div></div>
  676. {/block:Audio}
  677.  
  678. {block:Answer}
  679. <div class="ask"><img src="{AskerPortraitURL-48}"></div>
  680. <div class="question">
  681. <div class="asker"><b>{Asker}</b>:</div>
  682. {Question}</div>
  683. <div class="answer">
  684. {Answer}</div>
  685. {/block:Answer}
  686.  
  687. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  688.  
  689. <div id="info">
  690. {block:Date}<a href="{Permalink}" title="{timeago}">{DayOfMonthWithZero} {ShortMonth}</a>{/block:Date}
  691.  
  692. &nbsp;&nbsp;<a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a>
  693.  
  694. <div class="via">
  695. {block:RebloggedFrom}
  696. <a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>
  697. {block:ContentSource}&nbsp;
  698. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}" style="color:{color:links}"> src</a>
  699. {/block:ContentSource}
  700. {/block:RebloggedFrom}&nbsp;
  701.  
  702. {block:PermalinkPage}
  703. <a href="{ReblogURL}" target="_blank" style="color:{color:links}" title="reblog">↳↴</a>
  704. {/block:PermalinkPage}
  705. </div>
  706. </div>
  707.  
  708. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  709.  
  710. </div>
  711.  
  712.  
  713. {block:PostNotes}
  714. <div class="pagenotes">
  715. {PostNotes}
  716. </div>
  717. {/block:PostNotes}
  718.  
  719.  
  720. {/block:Posts}
  721.  
  722. <div id="pagination">
  723. {block:Pagination}
  724. {block:PreviousPage}
  725. <a href="{PreviousPage}">back</a>
  726. {/block:PreviousPage}
  727.  
  728.  
  729. {block:NextPage}
  730. <a href="{NextPage}">next</a>
  731. {/block:NextPage}
  732. {/block:Pagination}
  733. </div>
  734.  
  735.  
  736.  
  737. </div>
  738.  
  739.  
  740.  
  741. {block:ContentSource}
  742. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  743. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  744. {/block:SourceLogo}
  745. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  746. {/block:ContentSource}
  747.  
  748. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment