Advertisement
themesbygeorgia

Theme #37

Sep 21st, 2014
780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.32 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <!--Theme #37 by wonderfullythemes
  6.  
  7. don't touch the credit pls but edits are fine-->
  8.  
  9. <title>{Title}</title>
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12.  
  13. <!--SCRIPT FOR TOOLTIPS-->
  14. <stsss>
  15. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  16. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  17. <script>
  18. (function($){
  19. $(document).ready(function(){
  20. $("a[title]").style_my_tooltips({
  21. tip_follows_cursor:true,
  22. tip_delay_time:200,
  23. tip_fade_speed:300,
  24. attribute:"title"
  25. });
  26. });
  27. })(jQuery);
  28. </script>
  29.  
  30. <!--SCRIPT FOR STICKY HEADER-->
  31. {block:IfNotFixedHeader}
  32. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  33.  
  34. <script>
  35. $(document).ready(function(){
  36.  
  37. var menu = document.querySelector('.menu');
  38. var origOffsetY = menu.offsetTop;
  39.  
  40. function scroll () {
  41. if ($(window).scrollTop() >= origOffsetY) {
  42. $('.links').addClass('rightlinks');
  43. } else {
  44. $('.links').removeClass('rightlinks');
  45. }
  46.  
  47.  
  48. }
  49.  
  50. document.onscroll = scroll;
  51.  
  52. });
  53. </script>
  54. {/block:IfNotFixedHeader}
  55.  
  56. <meta name="color:Background" content="#fff" />
  57. <meta name="color:Link" content="#1bcc5c" />
  58. <meta name="color:Hover" content="#444" />
  59. <meta name="color:Text" content="#444" />
  60. <meta name="color:Border" content="#ddd" />
  61. <meta name="color:Question Background" content="#ddd" />
  62. <meta name="color:Question Text" content="#444" />
  63. <meta name="color:Answer Background" content="#fff" />
  64. <meta name="color:Answer Text" content="#444" />
  65. <meta name="color:Chat Bg Odd" content="#ddd" />
  66. <meta name="color:Chat Bg Even" content="#fff" />
  67. <meta name="color:Tooltip Background" content="#fff" />
  68. <meta name="color:Tooltip Text" content="#444" />
  69. <meta name="color:Tooltip Shadow" content="#ddd" />
  70. <meta name="color:Tooltip Border" content="#ddd" />
  71.  
  72. <meta name="image:Sidebar" content="" />
  73.  
  74. <meta name="if:FixedHeader" content="1" />
  75. <meta name="if:CustomCursor" content="1" />
  76. <meta name="if:FadedPosts" content="0" />
  77.  
  78. <meta name="text:Link1" content="/" />
  79. <meta name="text:Link1 Text" content="Link 1" />
  80. <meta name="text:Link2" content="/" />
  81. <meta name="text:Link2 Text" content="Link 2" />
  82. <meta name="text:Link3" content="/" />
  83. <meta name="text:Link3 Text" content="Link 3" />
  84. <meta name="text:Link4" content="/" />
  85. <meta name="text:Link4 Text" content="Link 4" />
  86.  
  87.  
  88. <style type="text/css">
  89.  
  90. ::-webkit-scrollbar-thumb {
  91. height:auto;
  92. background-color:{color:Text};
  93. }
  94.  
  95. ::-webkit-scrollbar {
  96. height:4px;
  97. width:3px;
  98. padding-right:2px;
  99. background-color:white;
  100. }
  101.  
  102. #s-m-t-tooltip {
  103. max-width:200px;
  104. font-family:'calibri';
  105. font-size:8px;
  106. background-color:{color:Tooltip Background};
  107. color:{color:Tooltip Text};
  108. box-shadow:2px 2px 2px {color:Tooltip Shadow};
  109. border:1px solid {color:Tooltip Border};
  110. line-height:9px;
  111. display:none;
  112. position:absolute;
  113. letter-spacing:1px;
  114. text-transform:uppercase;
  115. padding:3px;
  116. margin:15px 0px 0px 15px;
  117. z-index:99999999999999;
  118. }
  119.  
  120. body {
  121. background:{color:Background};
  122. color:{color:Text};
  123. font-family:'calibri';
  124. font-size:12px;
  125. text-decoration:none;
  126. text-transform:none;
  127. margin:0px;
  128. {block:IfCustomCursor}
  129. cursor:crosshair;
  130. {/block:IfCustomCursor}
  131. }
  132.  
  133. a {
  134. color:{color:Link};
  135. text-decoration:none;
  136. -moz-transition-duration:0.7s;
  137. -webkit-transition-duration:0.7s;
  138. -o-transition-duration:0.7s;
  139. }
  140.  
  141. a:hover {
  142. {block:IfCustomCursor}
  143. cursor:crosshair;
  144. {/block:IfCustomCursor}
  145. color:{color:Hover};
  146. -moz-transition-duration:0.7s;
  147. -webkit-transition-duration:0.7s;
  148. -o-transition-duration:0.7s;
  149. }
  150.  
  151. h2 {
  152. color:{color:Text};
  153. }
  154.  
  155. h2 a {
  156. color:{color:Link};
  157. }
  158.  
  159. li {
  160. list-style:square;
  161. }
  162.  
  163. blockquote {
  164. border-left:2px solid {color:Text};
  165. padding-left:5px;
  166. }
  167.  
  168. img, blockquote, li, h2 {
  169. max-width:100%;
  170. }
  171.  
  172. {block:IfFadedPosts}
  173. img{
  174. -webkit-filter: grayscale(100%);
  175. -webkit-transition-duration: 0.8s;
  176. -moz-transition-duration: 0.8s;
  177. -o-transition-duration: 0.8s;
  178. -ms-transition-duration: 0.8s;
  179. }
  180.  
  181. img:hover{
  182. -webkit-filter: grayscale(0%);
  183. -webkit-transition-duration: 0.8s;
  184. -moz-transition-duration: 0.8s;
  185. -o-transition-duration: 0.8s;
  186. -ms-transition-duration: 0.8s;
  187. z-index: 2px;
  188. }
  189.  
  190. .html_photoset {
  191. -webkit-filter: grayscale(100%);
  192. -webkit-transition-duration: 0.8s;
  193. -moz-transition-duration: 0.8s;
  194. -o-transition-duration: 0.8s;
  195. -ms-transition-duration: 0.8s;
  196. }
  197.  
  198. .html_photoset:hover{
  199. -webkit-filter: grayscale(0%);
  200. -webkit-transition-duration: 0.8s;
  201. -moz-transition-duration: 0.8s;
  202. -o-transition-duration: 0.8s;
  203. -ms-transition-duration: 0.8s;
  204. z-index: 2px;
  205. }
  206. {/block:IfFadedPosts}
  207.  
  208. #entries {
  209. width:450px;
  210. margin:auto;
  211. position:relative;
  212. top:20px;
  213. left:490px;
  214. padding:40px;
  215. float:left;
  216. {block:IfFixedHeader}
  217. top:100px;
  218. {/block:IfFixedHeader}
  219. }
  220.  
  221. #post {
  222. width:400px;
  223. margin-bottom:100px;
  224. }
  225.  
  226. /*--HEADER--*/
  227.  
  228. .menu {
  229.  
  230. }
  231.  
  232. #header {
  233. background-color:{color:Background};
  234. width:100%;
  235. height:80px;
  236. position:static;
  237. border-bottom:1px solid {color:Border};
  238. z-index:2;
  239. {block:IfFixedHeader}
  240. position:fixed;
  241. {/block:IfFixedHeader}
  242. }
  243.  
  244. .headertext {
  245. left:450px;
  246. margin-top:60px;
  247. position:absolute;
  248. line-height:18px;
  249. }
  250.  
  251. .title {
  252. font-family:'French Script MT';
  253. letter-spacing:-1px;
  254. font-size:30px;
  255. line-height:10px;
  256. }
  257.  
  258. .links {
  259. font-size:10px;
  260. width:auto;
  261. height:auto;
  262. position:relative;
  263. font-style:none;
  264. text-decoration:none;
  265. text-align:center;
  266. margin-top:10px;
  267. letter-spacing:1px;
  268. text-transform:uppercase;
  269. -moz-transition-duration:.7s;
  270. -webkit-transition-duration:.7s;
  271. -o-transition-duration:.7s;
  272. }
  273.  
  274. .links a {
  275. padding:3px;
  276. color:{color:Link};
  277. }
  278.  
  279. .links a:hover {
  280. letter-spacing:4px;
  281. }
  282.  
  283. .rightlinks {
  284. padding:20px;
  285. border:1px solid {color:Border};
  286. position:fixed;
  287. right:120px;
  288. margin-top:200px;
  289. text-align:center;
  290. width:100px;
  291. -moz-transition-duration:.7s;
  292. -webkit-transition-duration:.7s;
  293. -o-transition-duration:.7s;
  294. }
  295.  
  296. .rightlinks a {
  297. display:block;
  298. }
  299.  
  300. /*--SIDEBAR--*/
  301.  
  302. #sidebar {
  303. top:0;
  304. width:225px;
  305. height:100%;
  306. position:fixed;
  307. margin-left:170px;
  308. padding-right:50px;
  309. border-right:1px solid {color:Border};
  310. z-index:3;
  311. }
  312.  
  313. .sidebarstuffs {
  314. margin-top:200px;
  315. height:340px;
  316. padding:20px;
  317. border:1px solid {color:Border};
  318. }
  319.  
  320. .sidebarpic {
  321. width:auto;
  322. height:auto;
  323. }
  324.  
  325. .sidebarpic img {
  326. width:180px;
  327. height:180px;
  328. }
  329.  
  330. .description {
  331. margin-top:10px;
  332. width:173px;
  333. height:140px;
  334. overflow-y:scroll;
  335. padding:3px;
  336. text-align:justify;
  337. }
  338.  
  339. /*--INFO--*/
  340.  
  341. #info {
  342. line-height:13px;
  343. position:absolute;
  344. text-transform:uppercase;
  345. font-style:none;
  346. font-size: 9px;
  347. width:100px;
  348. border-left:1px solid {color:Border};
  349. padding-left:10px;
  350. margin-left:410px;
  351. color:{color:Text};
  352. text-align:left;
  353. padding-top:5px;
  354. padding-bottom:5px;
  355. -moz-transition-duration:.7s;
  356. -webkit-transition-duration:.7s;
  357. -o-transition-duration:.7s;
  358. }
  359.  
  360. #info a:link {
  361. color:{color:Link};
  362. border-bottom:1px solid transparent;
  363. -moz-transition-duration:.7s;
  364. -webkit-transition-duration:.7s;
  365. -o-transition-duration:.7s;
  366. }
  367.  
  368. #info a:hover {
  369. color:{color:Hover};
  370. border-bottom:1px solid {color:Hover};
  371. -moz-transition-duration:.7s;
  372. -webkit-transition-duration:.7s;
  373. -o-transition-duration:.7s;
  374. }
  375.  
  376. /*--TAGS--*/
  377. #footer {
  378. text-transform:none;
  379. width:400px;
  380. text-align:left;
  381. font-size:10px;
  382. border-top:1px solid {color:Border};
  383. margin-top:10px;
  384. }
  385.  
  386. #footer a {
  387. color:{color:Link};
  388. border-bottom:1px solid transparent;
  389. }
  390.  
  391. #footer a:hover {
  392. color:{color:Hover};
  393. border-bottom:1px solid {color:Hover};
  394. }
  395.  
  396. /*--PAGINATION--*/
  397.  
  398. #pagination {
  399. font-size:10px;
  400. text-transform:uppercase;
  401. text-align:center;
  402. line-height:10px;
  403. z-index:300;
  404. width:400px;
  405. margin-top:-30px;
  406. float:center;
  407. position:absolute;
  408. }
  409.  
  410. #pagination a {
  411. text-decoration:none;
  412. color:{color:Link};
  413. border-bottom:1px solid transparent;
  414. }
  415.  
  416. #pagination a:hover {
  417. color:{color:Hover};
  418. border-bottom:1px solid {color:Hover};
  419. }
  420.  
  421. /*--POST TYPES--*/
  422. .question {
  423. background-color:{color:Question Background};
  424. color:{color:Question Text};
  425. padding:3px;
  426. }
  427.  
  428. .answer {
  429. background-color:{color:Answer Background};
  430. color:{color:Answer Text};
  431. }
  432.  
  433. .quote {
  434. font-size:8px;
  435. text-transform:uppercase;
  436. }
  437.  
  438. .chat li {
  439. list-style:none;
  440. }
  441.  
  442. .line_odd {
  443. background-color:{color:Chat Bg Odd};
  444. }
  445.  
  446. .line_even {
  447. background-color:{color:Chat Bg Even};
  448. }
  449.  
  450. .playerbuttonbg {
  451. position: absolute;
  452. left: 20px;
  453. top: 20px;
  454. width: 19px;
  455. height: 19px;
  456. background-color: #fff;
  457. padding: 10px;
  458. opacity: .4;
  459. filter: alpha(opacity=40);
  460. -moz-opacity: 0.4;
  461. -khtml-opacity: 0.4;
  462. transition: opacity .7s ease-in-out;
  463. -moz-transition: opacity .7s ease-in-out;
  464. -webkit-transition: opacity .7s ease-in-out;
  465. }
  466.  
  467. .playerbuttonbg:hover {
  468. opacity: 1;
  469. filter: alpha(opacity=100);
  470. -moz-opacity: 1;
  471. -khtml-opacity: 1;
  472. }
  473.  
  474. .newplayerbutton {
  475. position: relative;
  476. width: 19px;
  477. height: 19px;
  478. overflow: hidden;
  479. }
  480.  
  481. .playerbuttonhug {
  482. position: absolute;
  483. top: -18px;
  484. left: -7px;
  485. }
  486.  
  487. .tumblr_audio_player {
  488. height: 90px;
  489. width: 270px;
  490. -moz-transform: scale(0.60, 0.60);
  491. -webkit-transform: scale(0.60, 0.60);
  492. -o-transform: scale(0.60, 0.60);
  493. -ms-transform: scale(0.60, 0.60);
  494. transform: scale(0.60, 0.60);
  495. -moz-transform-origin: top left;
  496. -webkit-transform-origin: top left;
  497. -o-transform-origin: top left;
  498. -ms-transform-origin: top left;
  499. transform-origin: top left;
  500. }
  501.  
  502. .audioimgwrapper {
  503. position: absolute;
  504. left: 0px;
  505. top: 0px;
  506. overflow: hidden;
  507. width: 79px;
  508. height: 79px;
  509. }
  510.  
  511. .audioimgwrapper img {
  512. width: 100%;
  513. height: auto;
  514. }
  515.  
  516. .trackdetails {
  517. width: auto;
  518. display:inline-block;
  519. margin-left: 90px;
  520. min-height: 85px;
  521. }
  522.  
  523. .audiowrapper {
  524. position: relative;
  525. display:inline-block;
  526. }
  527.  
  528.  
  529. /*--CREDIT--*/
  530. #spectrum {
  531. bottom:9px;
  532. right:7px;
  533. font-size:8px;
  534. font-family:'calibri';
  535. letter-spacing:1px;
  536. text-transform:uppercase;
  537. position:fixed;
  538. }
  539.  
  540. {CustomCSS}</style></head><body>
  541.  
  542. <div class="menu">
  543. <div id="header">
  544. <div class="headertext">
  545.  
  546. <span class="title"><a href="/" title="home">{Title}</a></span>
  547.  
  548. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; &nbsp;&nbsp;&nbsp;
  549.  
  550. <span class="links">
  551. <a href="{text:Link1}">{text:Link1 Text}</a> &#9472;
  552. <a href="{text:Link2}">{text:Link2 Text}</a> &#9472;
  553. <a href="{text:Link3}">{text:Link3 Text}</a> &#9472;
  554. <a href="{text:Link4}">{text:Link4 Text}</a>
  555. </span></div>
  556. </div>
  557. </div>
  558.  
  559. <div id="sidebar">
  560.  
  561. <div class="sidebarstuffs">
  562. <div class="sidebarpic"><img src="{image:Sidebar}" /></div>
  563. <div class="description">{Description}</div>
  564. </div>
  565.  
  566. </div>
  567. </div>
  568.  
  569.  
  570. <div id="entries">{block:Posts}<div id="post">
  571.  
  572. <div id="info">
  573. {block:Date}<a href="{Permalink}">{ShortMonth} {DayOfMonthWithZero} {Year}</a>
  574. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {/block:Date}
  575. {block:RebloggedFrom}<br> <a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> {/block:RebloggedFrom}
  576. {block:RebloggedFrom}&nbsp;-&nbsp;&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}">src</a>{/block:RebloggedFrom}
  577.  
  578. </div>
  579.  
  580. {block:Text}
  581. {block:Title}<h2>{Title}</h2>{/block:Title}
  582. {Body}
  583. {/block:Text}
  584.  
  585. {block:Answer}
  586. <div class="question"><span style="text-transform:uppercase;font-size:9px">{Asker} asked:</span> {Question}</div>
  587. <div class="answer">{Answer}</div>
  588. {/block:Answer}
  589.  
  590. {block:Quote}
  591. <span class="quote">"{Quote}"</span>
  592. {block:Source} -{Source}{/block:Source}
  593. {/block:Quote}
  594.  
  595. {block:Link}
  596. <h2><a href="{URL}">{Name}</a></h2>
  597. {block:Description}{Description}{/block:Description}
  598. {/block:Link}
  599.  
  600. {block:Chat}
  601. {block:Title}{Title}{/block:Title}
  602. {block:Lines}<span class="chat">
  603. <li class="line_{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li></span>
  604. {/block:Lines}
  605. {/block:Chat}
  606.  
  607. {block:Photo}
  608. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}">{LinkCloseTag}
  609. {block:Caption}{Caption}{/block:Caption}
  610. {/block:Photo}
  611.  
  612. {block:Photoset}
  613. {Photoset-400}
  614. {block:Caption}{Caption}{/block:Caption}
  615. {/block:Photoset}
  616.  
  617. {block:Audio}
  618. {block:AudioPlayer}
  619. <div class="audiowrapper">
  620. {block:AlbumArt}
  621. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  622. {/block:AlbumArt}
  623.  
  624. <div class="playerbuttonbg">
  625. <div class="newplayerbutton">
  626. <div class="playerbuttonhug">
  627.  
  628. {AudioPlayerWhite}
  629.  
  630. </div>
  631. </div>
  632. </div>
  633.  
  634. <div class="trackdetails">
  635.  
  636. {block:TrackName}{TrackName}</a><br>{/block:TrackName}
  637. {block:Artist}Artist: {Artist}<br>{/block:Artist}
  638. {block:Album}Album: {Album}<br>{/block:Album}
  639. {PlayCountWithLabel}
  640.  
  641. </div>
  642. </div>
  643. {/block:AudioPlayer}
  644.  
  645. {block:Caption}{Caption}{/block:Caption}
  646. {/block:Audio}
  647.  
  648. {block:Video}
  649. {Video-400}
  650. {block:Caption}{Caption}{/block:Caption}
  651. {/block:Video}
  652.  
  653. <div id="footer">
  654. {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}
  655. {/block:Date}</div>
  656.  
  657. </div>{/block:Posts}
  658.  
  659. <div id="pagination">
  660. {block:Pagination}
  661. {block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage} &nbsp;-&nbsp;
  662. {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  663. {/block:Pagination}
  664. </div>
  665.  
  666. <div id="spectrum">
  667. <a href="http://wonderfullythemes.tumblr.com">theme</a>
  668. </div>
  669.  
  670. </div>
  671.  
  672.  
  673.  
  674.  
  675. </body>
  676. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement