Advertisement
maxeirons

THEME 5

Jun 13th, 2015
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.84 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2. <head>
  3.  
  4.  
  5.  
  6. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  7.  
  8. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  9.  
  10. <script>
  11.  
  12. (function($){
  13.  
  14. $(document).ready(function(){
  15.  
  16. $("a[title]").style_my_tooltips({
  17.  
  18. tip_follows_cursor:true,
  19.  
  20. tip_delay_time:90,
  21.  
  22. tip_fade_speed:600,
  23.  
  24. attribute:"title"
  25.  
  26. });
  27.  
  28. });
  29.  
  30. })(jQuery);
  31.  
  32. </script>
  33. <!--basic tooltip from tutorial-baby! Enjoy-->
  34.  
  35.  
  36. <title>{Title}</title>
  37. <link rel="shortcut icon" href="{Favicon}">
  38. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  39. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  40.  
  41. <!---
  42.  
  43. THEME 5 BY VANGCGHS
  44.  
  45. PLEASE DO NOT REMOVE THE CREDIT OR MOVE IT TO A SECONDARY PAGE. IF YOU HAVE ANY QUESTIONS, PLEASE SEND THEM IN HERE HTTP://VANGCGHS.TUMBLR.COM/ASK
  46.  
  47. --->
  48.  
  49.  
  50. <!---META TAGS--->
  51. <!--color related tags-->
  52.  
  53. <meta name="color:accent" content="##e3e7e0"/>
  54. <meta name="color:accent2" content="#dfdfdf"/>
  55. <meta name="color:background" content="#ffffff"/>
  56. <meta name="color:blockquote" content="#cecece"/>
  57. <meta name="color:border" content="#d7d7d7"/>
  58. <meta name="color:description" content="#ffffff"/>
  59. <meta name="color:hover" content="#b8c3a0"/>
  60. <meta name="color:link" content="#cecece"/>
  61. <meta name="color:post info" content="#c3c3c3"/>
  62. <meta name="color:selection" content="#edf5f3"/>
  63. <meta name="color:sidebar link" content="#b3b3b3"/>
  64. <meta name="color:tag hover" content="#ffffff"/>
  65. <meta name="color:text" content="#414141"/>
  66. <meta name="color:title" content="#898989"/>
  67. <meta name="color:title hover" content="#dcdcdc"/>
  68.  
  69.  
  70.  
  71.  
  72. <!---Sidebar link related tags--->
  73. <meta name="text:link1" content="link1"/>
  74. <meta name="text:link1url" content="/"/>
  75. <meta name="text:link2" content="link2"/>
  76. <meta name="text:link2url" content="/"/>
  77. <meta name="text:link3" content="link3"/>
  78. <meta name="text:link3url" content="/"/>
  79.  
  80. <!---sidebar image related tags-->
  81. <meta name="image:sidebar image" />
  82. <meta name="text:sidebar image URL" content="url here"/>
  83.  
  84. <!---post related if blocks--->
  85. <meta name="if:only render captions on permalink page" content="0"/>
  86. <meta name="if:Show Reblog Button" content="1"/>
  87.  
  88.  
  89.  
  90.  
  91.  
  92. <style type="text/css">
  93.  
  94. .tooltip{
  95. display: inline;
  96. position: relative;
  97. }
  98. #s-m-t-tooltip {
  99. max-width:300px; /*how big the tooltip can be at most*/
  100. border-radius: 0px; /*change your border radius*/
  101. padding:3px 4px 5px 4px; /*padding inside tooltip*/
  102. margin:20px 7px -2px 20px; /*distance from word*/
  103. background-color:{color:background}; /*background color*/
  104. border:1px helvetica; /*tooltip font*/
  105. font-size:9px; /*tooltip font size*/
  106. letter-spacing:1px; /*tooltip letter spacing*/
  107. text-transform:uppercase; /*makes the tooltip title uppercase*/
  108. color:{color:link}; /*tooltip font color*/
  109. z-index:999999999999999999999999999999999999;
  110. }
  111.  
  112.  
  113. /*--OVERALL STYLING---*/
  114.  
  115. body {
  116. background-color:{color:background};
  117. font-family:helvetica;
  118. font-size:10px;
  119. color:{color:text};
  120. }
  121.  
  122. a {
  123. color:{color:link};
  124. text-decoration:none;
  125. -webkit-transition-duration:.3s;
  126. -moz-transition-duration:.3s;
  127. -o-transition-duration:.3s;
  128. }
  129.  
  130. a:hover {
  131. color:{color:accent2};
  132.  
  133. }
  134.  
  135. h1 {
  136. font-size:17px;
  137. font-weight:lighter;
  138. text-transform:uppercase;
  139. letter-spacing:2px;
  140. color:{color:text};
  141. padding-bottom:10px;
  142. border-bottom:1px solid {color:border};
  143. text-align:left;
  144. }
  145.  
  146. h2 {
  147. font-weight:normal;
  148. font-size:15px;
  149. letter-spacing:2px;
  150. }
  151.  
  152. blockquote {
  153. border-left:1px solid {color:blockquote};
  154. padding-left:20px;
  155. margin:5px 0 5px 0px;
  156. }
  157.  
  158. ::selection {
  159. background-color:{color:selection};
  160. }
  161.  
  162.  
  163. ::-webkit-scrollbar {
  164. width:5px;
  165. background-color:{color:accent};
  166. border:5px solid {color:background};}
  167.  
  168. ::-webkit-scrollbar-thumb {
  169. background-color:{color:accent};
  170. border-width:3px;}
  171.  
  172.  
  173.  
  174.  
  175. /*---SIDEBAR---*/
  176.  
  177. #sidebar {
  178. width: 120px;
  179. margin-top:100px;
  180. margin-left:180px;
  181. color:{color:sidetext};
  182. position: fixed;
  183. padding:10px;
  184. background-size:cover;
  185. text-align:left;
  186. background-position:center bottom;
  187. }
  188.  
  189.  
  190. #sidebarim {
  191. margin-left:0px;
  192. margin-top:0px;
  193. overflow:hidden;
  194. position:fixed;
  195. width:120px;
  196. z-index:1;
  197. }
  198.  
  199. #sidebarim img {
  200. width:120px
  201. }
  202.  
  203.  
  204. #fresh {
  205. padding-top:5px;
  206. font-family:helvetica;
  207. font-style:italic;
  208. text-transform:none;
  209. margin-top:130px;
  210. margin-bottom:0px;
  211. text-align:left;
  212. background:none;
  213. width:120;
  214. font-size:18px;
  215. color:{color:title};
  216. letter-spacing:0px;
  217. font-weight:bold;
  218. font-style:none;
  219. z-index:100;
  220. -webkit-transition-duration:1s;
  221. -moz-transition-duration:1s;
  222. -o-transition-duration:1s;
  223.  
  224. }
  225.  
  226. #fresh a {
  227. color:{color:title};
  228. margin-bottom:0px;
  229. background:none;
  230. -webkit-transition-duration:1s;
  231. -moz-transition-duration:1s;
  232. -o-transition-duration:1s;
  233.  
  234. }
  235.  
  236. #fresh a:hover {
  237. background:none;
  238. color:{color:title hover};
  239. -webkit-transition-duration:1s;
  240. -moz-transition-duration:1s;
  241. -o-transition-duration:1s;
  242. }
  243.  
  244.  
  245.  
  246.  
  247.  
  248. #desc {
  249. width:100%;
  250. margin-top:10px;
  251. margin-bottom:10px;
  252. color:{color:description};
  253. text-align:left;
  254. font-family:helvetica;
  255. font-size:10px;
  256. font-weight:normal;
  257. line-height:150%;
  258. }
  259.  
  260.  
  261. #links {
  262. width:100%;
  263. word-spacing:2px;
  264. padding-top:-2px;
  265. border-bottom:1px solid {color:accent2};
  266. padding-bottom:0px;
  267. display:inline-block;
  268. font-family:helvetica;
  269. text-align:left;
  270. font-size:8px;
  271. text-transform:uppercase;
  272. margin-top:10px;
  273. color:{color:link};
  274. margin-left:-2px;
  275. letter-spacing:1px;
  276.  
  277. }
  278.  
  279.  
  280. #links a {
  281. color:{color:sidebar link};
  282. padding:3px;
  283. display:inline-block;
  284. }
  285.  
  286.  
  287. #links a:hover {
  288. color:{color:hover};;
  289. letter-spacing:2px;
  290. }
  291.  
  292.  
  293. /*--- PAGE NAVIGATION ---*/
  294. #pagi {
  295. padding:10px 0px;
  296. width:120;
  297. text-align:center;
  298. z-index:9;
  299. }
  300.  
  301. #previous {
  302. font-size:10px;
  303. letter-spacing:0px;
  304. }
  305.  
  306. #next {
  307. font-size:10px;
  308. letter-spacing:0px;
  309. }
  310.  
  311. #previous a, #next a {
  312. color:{color:navi};
  313. -moz-transition:0.5s ease-in-out;
  314. -webkit-transition:0.5s ease-in-out;
  315. -o-transition:0.5s ease-in-out;
  316. }
  317.  
  318. #previous a:hover, #next a:hover {
  319. color:{color:links};
  320. -moz-transition:0.5s ease-in-out;
  321. -webkit-transition:0.5s ease-in-out;
  322. -o-transition:0.5s ease-in-out;
  323. }
  324.  
  325.  
  326. /*---POSTS---*/
  327.  
  328. #postcontainer {
  329. margin-left:450px;
  330. width:400px;
  331. margin-bottom:40px;
  332. position:absolute;
  333. }
  334.  
  335. #post {
  336. line-height:150%;
  337. width:400px
  338. position:left;
  339. margin-top:70px;
  340. margin-bottom:150px;
  341. letter-spacing:1px;}
  342.  
  343.  
  344. #post ul {list-style:circle;letter-spacing:1px;text-align:left;}
  345.  
  346. #post ol {letter-spacing:1px;text-align:left;}
  347.  
  348. /*---MESSAGE POSTS---*/
  349.  
  350.  
  351. .ask_block {
  352. width:380px;
  353. background-color:{color:accent2};
  354. padding:10px;
  355. }
  356.  
  357. .answer {
  358. color:{color:text};
  359. padding:10px;
  360. padding-top:5px;
  361. letter-spacing:1px;
  362. }
  363.  
  364. .asker {
  365. font-size:9px;
  366. color:{color:text};
  367. text-transform:uppercase;
  368. font-weight:normal;
  369. margin-top:-10px;
  370. letter-spacing:2px;
  371. }
  372.  
  373. .asker a:hover {
  374. color:{color:hover};
  375. }
  376.  
  377.  
  378.  
  379. /*---POST INFORMATION---*/
  380. #info {
  381. margin-top:5px;
  382. font-size:9px;
  383. color:{color:text};
  384. padding-top:7px;
  385. padding-bottom:7px;
  386. text-align:left;
  387. width:400;
  388. opacity:0;
  389. margin-left:10px;
  390. -webkit-transition-duration:.7s;
  391. -moz-transition-duration:.7s;
  392. -o-transition-duration:.7s;
  393. -ms-transition-duration:.7s;
  394.  
  395. }
  396.  
  397. #info a {
  398. color:{color:post info};
  399. font-size:9px;
  400. letter-spacing:1px;
  401. display:inline-block;
  402. margin-left:0px;
  403. }
  404.  
  405. #info a:hover {
  406. color:{color:hover};
  407. }
  408.  
  409.  
  410. .tags a {
  411. margin:5px;
  412. background:{color:Tags};
  413. padding:3px;
  414. color:{color:Text};
  415. -webkit-transition: all 0.3s ease-in-out;
  416. -moz-transition: all 0.3s ease-in-out;
  417. -o-transition: all 0.3s ease-in-out;
  418. -ms-transition: all 0.3s ease-in-out;
  419. transition: all 0.3s ease-in-out;
  420. }
  421.  
  422. .tags a:hover {
  423. color:{color:hover};
  424. -webkit-transition: all 0.3s ease-in-out;
  425. -moz-transition: all 0.3s ease-in-out;
  426. -o-transition: all 0.3s ease-in-out;
  427. -ms-transition: all 0.3s ease-in-out;
  428. transition: all 0.3s ease-in-out;
  429. }
  430.  
  431.  
  432. .tags {
  433. text-transform:uppercase;
  434. letter-spacing:1px;
  435. font-size:7px;
  436. }
  437.  
  438. #info {
  439. opacity:1;
  440. }
  441.  
  442.  
  443. .captoin {
  444. color:{color:text};
  445. padding:0px;
  446. letter-spacing:1px;
  447. display:block;
  448. margin-top:10px;
  449. width:380px;
  450. font-family:helvetica;
  451. }
  452.  
  453. #postnotes {
  454. display:{color:text};
  455. margin-top:-120px;
  456. margin-left:-10px;
  457. color:{color:text};
  458. width:400px;
  459. font-family:aria;l
  460. }
  461.  
  462. #postnotes ol {
  463. line-height:110%;
  464. color:{color:text};
  465. list-style-type: none;
  466. font-family:helvetica;
  467.  
  468. }
  469.  
  470. #postnotes li {
  471. padding:5px;
  472. letter-spacing:0px;
  473. display:{color:text};
  474. margin-top:5px;
  475. color:{color:text};
  476. font-family:helvetica;
  477. -webkit-transition-duration:.4s;
  478. -moz-transition-duration:.4s;
  479. -o-transition-duration:.4s;
  480. -ms-transition-duration:.4s;
  481. }
  482.  
  483. #postnotes li:hover {
  484. color:{color:text};
  485.  
  486. }
  487.  
  488. #postnotes li:hover a {
  489. color:{color:link};
  490. }
  491.  
  492. #postnotes img {
  493. padding-right:5px;
  494. }
  495.  
  496.  
  497. .convo li {list-style: none;}
  498.  
  499. .convo .label {text-transform: uppercase;}
  500.  
  501. .line_odd .label {color: {color:text};}
  502. .line_even .label {color: {color:text};}
  503.  
  504. .album_art {
  505. display: block;
  506. float: left;
  507. margin-top: 1px;
  508. width: 72px;
  509. }
  510.  
  511.  
  512. .player {
  513. width:20px;
  514. overflow:hidden;
  515. height:20px;
  516. padding:0px;
  517. padding-left:5px;
  518. padding-top:3px;
  519. position:absolute;
  520. left:50%;
  521. top:50%;
  522. margin-bottom:-5px;
  523. margin-top:-17px;
  524. margin-left:-17px;
  525.  
  526. }
  527. .cover {
  528. display: block;
  529. float: left;
  530. width: 96px;
  531. height: 76px;
  532. margin-left: -74px;
  533. background-image: url('http://static.tumblr.com/imovwvl/i1Hl4rcp8/vinyl.png');
  534. z-index: 1;
  535. margin-right: 20px;
  536. }
  537.  
  538. .album {
  539. margin-left: 1px;
  540. }
  541. .info {
  542. float: left;
  543. margin-top:-4px;
  544. }
  545. #infscr-loading {
  546. position: fixed;
  547. bottom: 30px;
  548. left: 48%;
  549. width: 32px;
  550. padding: 10px;
  551. font-size: 15px;
  552. z-index: 99999;
  553. background: white;
  554. background: hsla( 0, 0%, 100%, 0.9 );
  555. text-align: left;
  556. }
  557.  
  558. .qtation {
  559. color:{color:text};
  560. font-family:helvetica;
  561. text-align:left;
  562. font-size:14px;
  563. letter-spacing:0px;
  564. font-weight:lighter;
  565. }
  566.  
  567. .src {
  568. padding:8px;
  569. color:{color:text};
  570. text-align:left;
  571. margin-top:10px;
  572. margin-bottom:0;
  573. }
  574.  
  575. #dano {
  576. float: right;
  577. margin-top: -6px;
  578. margin-right: 15px;
  579. font-family: calibri;
  580. font-size: 8px;
  581. text-transform: uppercase;
  582. text-align: right;
  583. }
  584.  
  585. #dano a {
  586. background-color: {color:background};
  587. }
  588.  
  589.  
  590. .credit {
  591. font-size:8px;
  592. position:fixed;
  593. font-weight:bold;
  594. bottom:15px;
  595. right:15px;
  596. z-index:10;
  597. text-align:right;
  598. letter-spacing:1px;
  599. padding:2px;
  600. }
  601.  
  602. .credit a {
  603. color:{color:title};
  604. text-decoration:none;
  605. }
  606.  
  607. .credit a:hover {
  608. color:{color:title hover};
  609. text-decoration:none;
  610. }
  611.  
  612. {CustomCSS}
  613. </style>
  614.  
  615.  
  616.  
  617.  
  618.  
  619. </head>
  620. <body>
  621.  
  622.  
  623. <div id="sidebar">
  624.  
  625.  
  626. <div id="sidebarim"><img src="{image:Sidebar Image}"></div>
  627.  
  628. <div id="fresh"><a href="/">{Title}</a></div>
  629.  
  630.  
  631. <div id="links"><a href="/">index</a></div>
  632. <div id="links"><a href="/ask">contact</a></div>
  633. <div id="links"><a href="{text:link1url}">{text:link1}</a></div>
  634. <div id="links"><a href="{text:link2url}">{text:link2}</a></div>
  635. <div id="links"><a href="{text:link3url}">{text:link3}</a></div>
  636.  
  637.  
  638. <div>
  639. </div>
  640. <div id="desc">{Description}</div>
  641. {block:Pagination}
  642. <div id="pagi">
  643. {block:Pagination}
  644. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&laquo;</a>{/block:PreviousPage}
  645. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  646. {block:NextPage}<a href="{NextPage}" class="jump_page">&raquo;</a>{/block:NextPage}
  647. {/block:Pagination}
  648. </div>
  649.  
  650.  
  651.  
  652.  
  653. </div>
  654.  
  655.  
  656. <div id="postcontainer">
  657. {block:Posts}
  658. <div id="post">
  659.  
  660.  
  661.  
  662.  
  663.  
  664. {block:Text}
  665. {block:Title}<h1>{Title}</h1>
  666. {/block:Title}{Body}
  667. {/block:Text}
  668.  
  669.  
  670.  
  671. {block:Photo}
  672. {LinkOpenTag}<center><img src="{PhotoURL-400}" width="400px"></center>
  673. {block:IfOnlyRenderCaptionsOnPermalinkPage}
  674. {block:PermalinkPage}{block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:IfOnlyRenderCaptionsOnPermalinkPage}
  675. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  676. {block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  677. {/block:Photo}
  678.  
  679. {block:Photoset}
  680. <div class="photoset">{Photoset-400}</div>{block:IfOnlyRenderCaptionsOnPermalinkPage}
  681. {block:PermalinkPage}{block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:IfOnlyRenderCaptionsOnPermalinkPage}
  682. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  683. {block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  684. {/block:Photoset}
  685.  
  686.  
  687. {block:Video}
  688. {Video-400}{block:IfOnlyRenderCaptionsOnPermalinkPage}
  689. {block:PermalinkPage}{block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:PermalinkPage}{/block:IfOnlyRenderCaptionsOnPermalinkPage}
  690. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  691. {block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  692. {/block:Video}
  693.  
  694.  
  695. {block:Audio}
  696. {block:AlbumArt}<div class="album">
  697. <img src="{AlbumArtURL}" class="album_art" alt="" />
  698. <span class="cover"></span>
  699. </div>{/block:AlbumArt}
  700. <div class="info"{block:AlbumArt} style="margin-top: 2px;"{/block:AlbumArt}></div>
  701. <div class="audio_box" id="{PostID}">
  702. {AudioPlayerWhite}
  703. </div>
  704. <div style="margin-top: 5px;">
  705. {block:TrackName}<span><strong>Title</strong>: {TrackName}</span>{/block:TrackName}<br>
  706. {block:Artist}<span><strong>Artist:</strong> {Artist}</span>{/block:Artist}<br>
  707. <span>{PlayCountWithLabel}</span><br>
  708. </div>
  709. {block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  710. {block:Caption}<div class="captoin">{Caption}</div>{/block:Caption}{/block:IfNotOnlyRenderCaptionsOnPermalinkPage}
  711. {/block:Audio}
  712.  
  713.  
  714. {block:Quote}
  715. <div class="qtation"><span>“</span>{Quote}<span>”</span></div>{block:Source}<div class="src">-- {Source}</div>{/block:Source}
  716. {/block:Quote}
  717.  
  718.  
  719. {block:Link}
  720. <h1><a href="{URL}" {Target}>{Name}</h1></a>{block:Description}{Description}{/block:Description}
  721. {/block:Link}
  722.  
  723. {block:Answer}
  724. <div class="question">
  725. <div class="ask_block">
  726. <table>
  727. <tr>
  728. <td style="vertical-align:top;padding-right:10px;"><img src="{PortraitURL-32}"></td>
  729. <td style="vertical-align:left;"><i>{Asker}</i> ASKED: {Question}</td>
  730. </tr>
  731. </table></div>
  732. <div class="answer">{Answer}</div>
  733. </div>
  734. {/block:Answer}
  735.  
  736.  
  737. {block:Chat}
  738. {block:Title}<h2>{Title}</h2>{/block:Title}
  739. <ul class="convo">{block:Lines}<li class="line_{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}
  740. {Line}</li>{/block:Lines}</ul>
  741. {/block:Chat}
  742. <div><div></div>
  743.  
  744.  
  745. <div id="info">
  746. <!---POST INFO--->
  747. <a href="{Permalink}">{ShortMonth} {DayOfMonth} – {NoteCountwithLabel}</a>
  748. <br></div>
  749. <div class="tags">{block:Tags}<a href="{TagURL}">#{Tag} </a> {/block:Tags}</div>
  750. {/block:Posts}</div>
  751. </div><div id="postnotes">{block:PostNotes}{PostNotes-16}{/block:PostNotes}</div>
  752.  
  753.  
  754.  
  755. <div class="credit">
  756. <a title="vangcghs" href="http://vangcghs.tumblr.com/" target="_blank">THM</a></div>
  757.  
  758.  
  759.  
  760.  
  761.  
  762.  
  763.  
  764. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement