Advertisement
themesbygeorgia

Theme #17

May 27th, 2014
1,077
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.60 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 #17 by wonderfullythemes --->
  6.  
  7. <title>{Title}</title>
  8. <link rel="shortcut icon" href="{Favicon}">
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10.  
  11. <!--SCRIPT FOR TOOLTIPS-->
  12. <stsss>
  13. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  14. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  15. <script>
  16. (function($){
  17. $(document).ready(function(){
  18. $("a[title]").style_my_tooltips({
  19. tip_follows_cursor:true,
  20. tip_delay_time:0,
  21. tip_fade_speed:0,
  22. attribute:"title"
  23. });
  24. });
  25. })(jQuery);
  26. </script>
  27.  
  28. <!--SCRIPT FOR LIKE BUTTONS-->
  29. <script>
  30. window.onload = function () {
  31. document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
  32. document.addEventListener( 'click', function ( event ) {
  33. var myLike = event.target;
  34. if( myLike.className.indexOf( 'my-like' ) > -1 ) {
  35. var frame = document.getElementById( 'my-like-frame' ),
  36. liked = ( myLike.className == 'my-liked' ),
  37. command = liked ? 'unlike' : 'like',
  38. reblog = myLike.getAttribute( 'data-reblog' ),
  39. id = myLike.getAttribute( 'data-id' ),
  40. oauth = reblog.slice( -8 );
  41. frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
  42. liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
  43. };
  44. }, false );
  45. };
  46. </script>
  47.  
  48. <!--SCRIPT FOR SLIDING DROPDOWN MENU-->
  49. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  50. <script type="text/javascript">
  51. $(document).ready(function(){
  52. $(".links_body").hide();
  53. $(".links_head").click(function(){
  54. $(this).next(".links_body").slideToggle('average');
  55. }); }); </script>
  56.  
  57. <meta name="color:Background" content="#ffffff"/>
  58. <meta name="color:Text" content="#838282"/>
  59. <meta name="color:Link" content="#e2bfde"/>
  60. <meta name="color:Hover" content="#e0e0e0"/>
  61. <meta name="color:Scrollbar" content="#000" />
  62. <meta name="color:Scrollbar Bg" content="#fff" />
  63.  
  64. <meta name="image:Sidebar" content=""/>
  65. <meta name="image:Sidebar2" content=""/>
  66.  
  67. <meta name="text:Update Text" content="write your updates here (like i've laid out)" />
  68.  
  69. <meta name="text:Link1" content="/" />
  70. <meta name="text:Link1 Text" content="Link 1" />
  71. <meta name="text:Link2" content="/" />
  72. <meta name="text:Link2 Text" content="Link 2" />
  73. <meta name="text:Link3" content="/" />
  74. <meta name="text:Link3 Text" content="Link 3" />
  75. <meta name="text:Link4" content="/" />
  76. <meta name="text:Link4 Text" content="Link 4" />
  77. <meta name="text:Link5" content="/" />
  78. <meta name="text:Link5 Text" content="Link 5" />
  79. <meta name="text:Link6" content="/" />
  80. <meta name="text:Link6 Text" content="Link 6" />
  81. <meta name="text:Link7" content="/" />
  82. <meta name="text:Link7 Text" content="Link 7" />
  83. <meta name="text:Link8" content="/" />
  84. <meta name="text:Link8 Text" content="Link 8" />
  85.  
  86. <style type="text/css">
  87.  
  88. ::-webkit-scrollbar-thumb {
  89. height:auto;
  90. background-color:{color:Text};
  91. }
  92.  
  93. ::-webkit-scrollbar {
  94. height:4px;
  95. width:3px;
  96. padding-right:2px;
  97. background-color:white;
  98. }
  99.  
  100. #s-m-t-tooltip {
  101. max-width:200px;
  102. font-family:'pt sans';
  103. font-size:8px;
  104. background-color:#000;
  105. color:#fff;
  106. line-height:9px;
  107. display:none;
  108. position:absolute;
  109. letter-spacing:1px;
  110. text-transform:uppercase;
  111. padding:3px;
  112. margin:15px 0px 0px 15px;
  113. z-index:99999999999999;
  114. }
  115.  
  116. body {
  117. background:{color:Background};
  118. margin:0px;
  119. color:{color:Text};
  120. font-family:arial;
  121. font-size:10px;
  122. line-height:12px;
  123. font-style: none;
  124. }
  125.  
  126. a:link, a:visited, a:active {
  127. color:{color:Link};
  128. text-decoration:none;
  129. text-decoration:none;
  130. -moz-transition-duration:0.7s;
  131. -webkit-transition-duration:0.7s;
  132. -o-transition-duration:0.7s;
  133. }
  134.  
  135. a:hover {
  136. color:{color:Hover};
  137. text-decoration: none;
  138. text-decoration:none;
  139. -moz-transition-duration:0.7s;
  140. -webkit-transition-duration:0.7s;
  141. -o-transition-duration:0.7s;
  142. }
  143.  
  144. blockquote {
  145. padding-left:5px;
  146. border-left:2px solid;
  147. }
  148.  
  149. #entries {
  150. position:relative;
  151. float:left;
  152. width:522px;
  153. top:5px;
  154. text-align:justify;
  155. left:530px;
  156. padding:40px;
  157. }
  158.  
  159. #post {
  160. margin-bottom:45px;
  161. width:500px;
  162. padding:0px;
  163. background-color: {color:Background};
  164. }
  165.  
  166. #pagination {
  167. text-align:center;
  168. font-size:20px;
  169. margin-bottom:2px;
  170. text-transform:none;
  171. font-style:none;
  172. text-transform: lowercase;
  173. }
  174.  
  175. #sidebar {
  176. width:245px;
  177. height:100%;
  178. position:fixed;
  179. margin-left:220px;
  180. margin-top:-10px;
  181. padding:10px;
  182. border-right:1px solid {color:Text};
  183. }
  184.  
  185. #title2 {
  186. color:{color:Text};
  187. letter-spacing:1px;
  188. text-align:center;
  189. font-size:17px;
  190. margin-top:200px;
  191. margin-left:-10px;
  192. padding:2px 7px 7px 30px;
  193. width:220px;
  194. font-family:'tudor text';
  195. border-bottom:1px solid {color:Text};
  196. z-index:100;
  197. position:fixed;
  198. }
  199.  
  200. #spectrum {
  201. width:175px;
  202. height:105px;
  203. position:fixed;
  204. margin-left:60px;
  205. margin-top:230px;
  206. }
  207.  
  208. #spectrum:hover #sidebarimage1 {
  209. opacity:0;
  210. -webkit-transform: rotateY(360deg); /* Chrome, Safari, Opera */
  211. transform: rotateY(360deg);
  212. -moz-transition-duration:1s;
  213. -webkit-transition-duration:1s;
  214. -o-transition-duration:1s;
  215. }
  216.  
  217. #sidebarimage1 {
  218. width:auto;
  219. height:auto;
  220. opacity:1;
  221. -webkit-transform: rotateY(0deg); /* Chrome, Safari, Opera */
  222. transform: rotateY(0deg);
  223. -moz-transition-duration:1s;
  224. -webkit-transition-duration:1s;
  225. -o-transition-duration:1s;
  226. }
  227.  
  228. #sidebarimage1 img {
  229. width:175px;
  230. height:105px;
  231. }
  232.  
  233. #spectrum:hover .desc {
  234. opacity:1;
  235. -webkit-transform: rotateY(360deg); /* Chrome, Safari, Opera */
  236. transform: rotateY(360deg);
  237. -moz-transition-duration:1s;
  238. -webkit-transition-duration:1s;
  239. -o-transition-duration:1s;
  240. }
  241.  
  242. .desc {
  243. width:160px;
  244. height:90px;
  245. text-align:justify;
  246. padding:5px;
  247. position:fixed;
  248. border-bottom:1px solid {color:Text};
  249. overflow:scroll;
  250. margin-top:-105px;
  251. opacity:0;
  252. -webkit-transform: rotateY(0deg); /* Chrome, Safari, Opera */
  253. transform: rotateY(0deg);
  254. -moz-transition-duration:1s;
  255. -webkit-transition-duration:1s;
  256. -o-transition-duration:1s;
  257. }
  258.  
  259. #bowtie {
  260. width:175px;
  261. height:105px;
  262. position:fixed;
  263. margin-left:60px;
  264. margin-top:340px;
  265. }
  266.  
  267. #bowtie:hover #sidebarimage2 {
  268. opacity:0;
  269. -webkit-transform: rotateY(360deg); /* Chrome, Safari, Opera */
  270. transform: rotateY(360deg);
  271. -moz-transition-duration:1s;
  272. -webkit-transition-duration:1s;
  273. -o-transition-duration:1s;
  274. }
  275.  
  276. #sidebarimage2 {
  277. width:auto;
  278. height:auto;
  279. opacity:1;
  280. -webkit-transform: rotateY(0deg); /* Chrome, Safari, Opera */
  281. transform: rotateY(0deg);
  282. -moz-transition-duration:1s;
  283. -webkit-transition-duration:1s;
  284. -o-transition-duration:1s;
  285. }
  286.  
  287. #sidebarimage2 img {
  288. width:175px;
  289. height:105px;
  290. }
  291.  
  292. #bowtie:hover .updts {
  293. opacity:1;
  294. -webkit-transform: rotateY(360deg); /* Chrome, Safari, Opera */
  295. transform: rotateY(360deg);
  296. -moz-transition-duration:1s;
  297. -webkit-transition-duration:1s;
  298. -o-transition-duration:1s;
  299. }
  300.  
  301. .updts {
  302. width:160px;
  303. height:95px;
  304. text-align:left;
  305. margin-top:-105px;
  306. padding:5px;
  307. position:fixed;
  308. overflow:scroll;
  309. opacity:0;
  310. -webkit-transform: rotateY(0deg); /* Chrome, Safari, Opera */
  311. transform: rotateY(0deg);
  312. -moz-transition-duration:1s;
  313. -webkit-transition-duration:1s;
  314. -o-transition-duration:1s;
  315. }
  316.  
  317. #links {
  318. height:auto;
  319. width:200px;
  320. position:fixed;
  321. text-align:right;
  322. padding-top:35px;
  323. padding-right:5px;
  324. margin-top:190px;
  325. margin-left:-155px;
  326. border-right:1px solid {color:Text};
  327. }
  328.  
  329. #links a {
  330. color:{color:Link};
  331. line-height:25px;
  332. padding:3px;
  333. width:auto;
  334. text-transform:lowercase;
  335. letter-spacing:1px;
  336. -moz-transition-duration:0.7s;
  337. -webkit-transition-duration:0.7s;
  338. -o-transition-duration:0.7s;
  339. }
  340.  
  341. #links a:hover {
  342. background-color:{color:Text};
  343. color:white;
  344. padding:3px 3px 3px 30px;
  345. -moz-transition-duration:0.7s;
  346. -webkit-transition-duration:0.7s;
  347. -o-transition-duration:0.7s;
  348. }
  349.  
  350. #info {
  351. text-transform:none;
  352. font-style:none;
  353. font-size: 9px;
  354. width:500px;
  355. color:{color:Text};
  356. text-align:left;
  357. padding:5px;
  358. border-top:1px solid {color:Text};
  359. margin-top:5px;
  360. }
  361.  
  362. #info a:link {
  363. color:{color:Link};
  364. -moz-transition-duration:0.7s;
  365. -webkit-transition-duration:0.7s;
  366. -o-transition-duration:0.7s;
  367. }
  368.  
  369. #info a:hover {
  370. color:{color:Hover};
  371. -moz-transition-duration:0.7s;
  372. -webkit-transition-duration:0.7s;
  373. -o-transition-duration:0.7s;
  374. }
  375.  
  376. /*QUESTION*/
  377.  
  378. #asker {
  379. color:#fff;
  380. padding:12px;
  381. font-size:11px;
  382. letter-spacing:0.5px;
  383. text-align:left;
  384. margin-top:0px;
  385. text-transform:none;
  386. line-height:14px;
  387. background-color:{color:Text};
  388. }
  389.  
  390. #post:hover .like_and_reblog_buttons {
  391. margin-left:530px;
  392. opacity:1;
  393. -moz-transition-duration:0.7s;
  394. -webkit-transition-duration:0.7s;
  395. -o-transition-duration:0.7s;
  396. }
  397.  
  398. .like_and_reblog_buttons {
  399. list-style: none;
  400. position:absolute;
  401. width:20px;
  402. float:right;
  403. margin-left:500px;
  404. opacity:0;
  405. -moz-transition-duration:0.7s;
  406. -webkit-transition-duration:0.7s;
  407. -o-transition-duration:0.7s;
  408. }
  409.  
  410. .like_and_reblog_buttons li {
  411. float:right;
  412. margin-top:2px;
  413. margin-left:500px;
  414. padding:0px 20px 5px 0px;
  415. height:15px;
  416. -moz-transition-duration:0.7s;
  417. -webkit-transition-duration:0.7s;
  418. -o-transition-duration:0.7s;
  419. }
  420.  
  421. /*CREDIT*/
  422.  
  423. #cred {
  424. position:fixed;
  425. font-family:'Calibri';
  426. text-transform:uppercase;
  427. font-size:8px;
  428. right:9px;
  429. bottom:9px;
  430. padding:4px;
  431. color:{color:Link};
  432. letter-spacing:1px;
  433. }
  434.  
  435. {CustomCSS}</style></head><body>
  436.  
  437. <div id="sidebar">
  438.  
  439. <div id="title2">{Title}</div>
  440.  
  441. <div id="spectrum">
  442. <div id="sidebarimage1"><img src="{image:Sidebar}"></div>
  443.  
  444. <div class="desc">{Description}</div>
  445.  
  446. </div>
  447.  
  448. <div id="bowtie">
  449. <div id="sidebarimage2"><img src="{image:Sidebar2}"></div>
  450.  
  451. <div class="updts">
  452. <div style="background-color:{color:Text};color:white;padding:5px;">UPDATES</div><p>
  453. {text:Update Text}
  454. </div>
  455. </div>
  456.  
  457. <div id="pagination"></div>
  458.  
  459. <div id="links">
  460. <a href="{text:Link1}">{text:Link1 Text}</a><br>
  461. <a href="{text:Link2}">{text:Link2 Text}</a><br>
  462. <a href="{text:Link3}">{text:Link3 Text}</a><br>
  463. <a href="{text:Link4}">{text:Link4 Text}</a><br>
  464. <a href="{text:Link5}">{text:Link5 Text}</a><br>
  465. <a href="{text:Link6}">{text:Link6 Text}</a><br>
  466. <a href="{text:Link7}">{text:Link7 Text}</a><br>
  467. <a href="{text:Link8}">{text:Link8 Text}</a><br>
  468. {block:Pagination}{block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}<br>{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage}{/block:Pagination}
  469. </div>
  470.  
  471. </div>
  472.  
  473.  
  474.  
  475. </div>
  476.  
  477. <div id="entries">{block:Posts}<div id="post">
  478.  
  479. <div class="like_and_reblog_buttons">
  480. <li>{ReblogButton}</li><li>{LikeButton}</li>
  481. </div>
  482.  
  483. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  484.  
  485. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  486.  
  487. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  488.  
  489. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  490.  
  491. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  492.  
  493. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  494.  
  495. {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  496.  
  497. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  498.  
  499. {block:Answer}<div id="asker"><span style="text-align:lowercase; color:#fcfcfc;font-style:italic; "><b><i>{Asker} asked:</i></b> </span>{Question}<br> </div><left><div style="padding:4px;margin-top:3px;font-size:11px;"><font face="arial">{Answer}</font></div>{/block:Answer}
  500.  
  501.  
  502. <div id="info">{block:Date}<a href="{Permalink}">{TimeAgo} -- {DayOfMonth} {Month} {Year}</a> {block:NoteCount}| <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {/block:Date}{block:RebloggedFrom}| <a href="{ReblogParentURL}">Via</a> {/block:RebloggedFrom}
  503. {block:ContentSource}| <a href="{SourceURL}">Source</a>{/block:ContentSource} <br>
  504. {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}&nbsp;</a> {/block:Tags}{/block:HasTags}
  505.  
  506. </div>
  507.  
  508.  
  509.  
  510. </div>
  511. {block:PostNotes}{PostNotes}{/block:PostNotes}
  512.  
  513.  
  514.  
  515. {/block:Posts}
  516.  
  517. <div id="cred">
  518. <a href="http://wonderfullythemes.tumblr.com/">theme</a>
  519. </div>
  520.  
  521. </div>
  522.  
  523. </body>
  524.  
  525. </html>``
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement