Advertisement
themesbygeorgia

Theme #39

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