Advertisement
ValarMorghulis

Theme #11: Trophies

Oct 24th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.81 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <head>
  4.  
  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. <!--Default Variables-->
  13.  
  14. <meta name="color:Background" content="#ffffff"/>
  15. <meta name="color:Text" content="#aaaaaa"/>
  16. <meta name="color:Link" content="#000000"/>
  17. <meta name="color:header text" content="#000000"/>
  18. <meta name="color:pagination bar" content="#ffffff"/>
  19. <meta name="color:header background color" content="#ffffff"/>
  20.  
  21. <meta name="color:ask background" content="#eeeeee"/>
  22. <meta name="color:answer background" content="#ffffff"/>
  23. <meta name="color:post background" content="#f6f6f6"/>
  24.  
  25. <meta name="image:header background" content=""/>
  26. <meta name="image:avatar" content=""/>
  27.  
  28.  
  29. <meta name="text:Link 1" content="" />
  30. <meta name="text:Link 1 Text" content="" />
  31. <meta name="text:Link 2" content="" />
  32. <meta name="text:Link 2 Text" content="" />
  33. <meta name="text:Link 3" content="" />
  34. <meta name="text:Link 3 Text" content="" />
  35. <meta name="text:Link 4" content="" />
  36. <meta name="text:Link 4 Text" content="" />
  37. <meta name="text:Link 5" content="" />
  38. <meta name="text:Link 5 Text" content="" />
  39. <meta name="text:Link 6" content="" />
  40. <meta name="text:Link 6 Text" content="" />
  41.  
  42.  
  43. <!-- jquery for tooltips-->
  44. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
  45. <script type="text/javascript">
  46. $(function(){
  47. var stickyRibbonTop = $('#pagination').offset().top;
  48. $(window).scroll(function(){
  49. if( $(window).scrollTop() > stickyRibbonTop ) {
  50. $('#pagination').css({position: 'fixed', top: '0px'});
  51. } else {
  52. $('#pagination').css({position: 'static', top: '0px'});
  53. }
  54. });
  55. });
  56. </script>
  57.  
  58.  
  59.  
  60. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  61.  
  62. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  63.  
  64. <script>
  65.  
  66. (function($){
  67.  
  68. $(document).ready(function(){
  69.  
  70. $("a[title]").style_my_tooltips({
  71.  
  72. tip_follows_cursor:true,
  73.  
  74. tip_delay_time:30,
  75.  
  76. tip_fade_speed:300,
  77.  
  78. attribute:"title"
  79.  
  80. });
  81.  
  82. });
  83.  
  84. })(jQuery);
  85.  
  86. </script>
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93. <!--CSS customization here. -->
  94.  
  95. <style type="text/css">
  96.  
  97. #s-m-t-tooltip{
  98. position:absolute;
  99. margin-top: 15px;
  100. z-index:9999;
  101. background:{color:background};
  102. border:{color:link} 1px solid;
  103. padding:5px;
  104. }
  105.  
  106. /*basics*/
  107. body {
  108. background:{color:background};
  109. color:{color:text};
  110. font-family:arial;
  111. font-size:11px;
  112. text-align:justify;
  113. margin:0;
  114. line-height:16px;}
  115.  
  116.  
  117. a {
  118. color:{color:link};
  119. text-decoration:none;
  120. }
  121.  
  122. a:hover {
  123. text-decoration:underline;}
  124.  
  125. img{opacity:1;
  126. border:none;
  127. text-decoration:none}
  128.  
  129.  
  130. small {
  131. font-size:9px;}
  132.  
  133. big {
  134. font-size:10px;}
  135.  
  136.  
  137. #title {
  138. font-size:10px;
  139. line-height:18px;
  140. font-weight:bold;
  141. margin-bottom:10px;
  142. text-transform:uppercase;
  143. text-align:center;}
  144.  
  145.  
  146. /*sidebar*/
  147. #sidebar {text-align:left;
  148. position:fixed;
  149. margin-left:-225px;
  150. margin-top:100px;
  151. width:125px;
  152. }
  153.  
  154.  
  155. #headerim {
  156. margin-left:-190px;
  157. background: url({image:header background}){color:header background color};
  158. width:900px;
  159. height:255px;
  160. background-position: center;
  161. background-repeat:repeat;
  162. position: relative;
  163. }
  164.  
  165. #avatar{
  166. position:absolute;
  167. top:27px;
  168. margin-left:150px;
  169. }
  170. #avatar img{
  171. height:200px;
  172. width:200px;
  173. border-radius:100%;
  174. }
  175.  
  176. #whole{
  177. margin-left:-130px;
  178. margin-top:-130px;
  179. position:absolute;
  180. }
  181.  
  182. #description {
  183. width:255px;
  184. font-family:arial;
  185. font-size:14px;
  186. top:100px;
  187. left:400px;
  188. position:absolute;
  189. color:{color:header text};
  190. }
  191.  
  192. #line{
  193. margin-left:-29px;
  194. margin-top:-21px;
  195. border-bottom:5px {color:header text} solid;
  196. width:255px;
  197. }
  198.  
  199. #links{
  200. color:red;
  201. }
  202.  
  203. #links a {
  204. margin-right:15px;
  205. display:inline-block;
  206. margin-bottom:5px;
  207. background:{color:header text};
  208. width:10px;
  209. height:10px;
  210. text-align:center;
  211. padding:4px;
  212. -webkit-transition: all 0.7s ease;
  213. -moz-transition: all 0.7s ease;
  214. -o-transition: all 0.7s ease;
  215. }
  216.  
  217. #links a:hover {
  218. border-radius:100%;
  219. -moz-border-radius:100%;
  220. -webkit-transition: all 0.5s ease;
  221. -moz-transition: all 0.5s ease;
  222. -o-transition: all 0.5s ease;
  223. }
  224.  
  225. #description {
  226. margin:20px 0;
  227. }
  228.  
  229.  
  230. /*pagination*/
  231. #pagination {
  232. margin-left:-190px;
  233. text-transform:lowercase;
  234. font-weight:bold;
  235. background:{color:pagination bar};
  236. width:890px;
  237. padding:5px;
  238. text-align:center;
  239. z-index:9999;
  240. }
  241. #pagination a {
  242. }
  243.  
  244. /*container*/
  245. #con {
  246. left:50%;
  247. margin-left:-250px;
  248. position:absolute;
  249. }
  250.  
  251.  
  252.  
  253. /*posts*/
  254.  
  255. #entries {
  256. margin-top:75px;
  257. width:500px;
  258. }
  259.  
  260.  
  261.  
  262. #posts {
  263. width:500px;
  264. {block:IndexPage}
  265. margin-bottom:75px;
  266. {/block:IndexPage}
  267. {block:PermalinkPage}
  268. margin-bottom:50px;
  269. {/block:PermalinkPage}
  270. background:{color:post background};
  271. padding:15px;
  272. }
  273. #posts img {
  274. max-width:500px;
  275. }
  276.  
  277. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  278. .caption {width:100%;
  279. margin-top:10px;
  280.  
  281. }
  282.  
  283. /*quote*/
  284.  
  285. #titlequote{
  286. text-align:left;
  287. font-size:14px;
  288. line-height:18px;
  289. }
  290.  
  291. /*audio*/
  292. .player {
  293. width:30px;
  294. height:30px;
  295. margin:35px;
  296. overflow:hidden;
  297. position:absolute;
  298. background:white;
  299. -moz-border-radius: 30px;
  300. -webkit-border-radius: 30px;
  301. border-radius: 30px;
  302. }
  303.  
  304. .audioinfo {
  305. margin-bottom:40px;
  306. margin-top:-70px;
  307. margin-left:110px;
  308. }
  309. /*asks*/
  310. .q {
  311. padding:10px;
  312. background-color:{color:ask background};
  313. text-align:center;
  314. }
  315. .as {
  316. text-align:center;
  317. font-weight:bold;
  318. }
  319.  
  320. .a {
  321. text-align:center;
  322. margin-top:-1px;
  323. padding:10px;
  324. background-color:{color:answer background};
  325. }
  326.  
  327. /*chat*/
  328. .chat ol {
  329. padding:0;
  330. list-style:none;
  331. }
  332. .line {padding:5px 0;}
  333.  
  334. .label {font-weight:bold;
  335. }
  336.  
  337.  
  338.  
  339.  
  340.  
  341. /*permalink and notes*/
  342.  
  343. #permalink {
  344. margin-top:15px;
  345. font-size:9px;
  346. text-transform:lowercase;
  347. text-align:right;
  348. }
  349.  
  350. #permalink a {margin-right:10px;
  351. }
  352.  
  353.  
  354. .tags {
  355. word-break:break-all;
  356. font-size:9px;
  357. }
  358.  
  359. .pagenotes {
  360. {block:IndexPage}
  361. display: none!important;
  362. {/block:IndexPage}
  363. width:400px;
  364. text-align:left;
  365.  
  366. }
  367. .pagenotes img {
  368. display:none!important;}
  369. .pagenotes li {
  370. list-style-type:none;
  371. padding:5px 0px;
  372. text-align:left;
  373. margin:0 0 0 -40px;
  374. }
  375.  
  376. #leave {
  377. position:fixed;
  378. right:25px;
  379. bottom:17px;
  380. border:{color:link} 1px solid;
  381. background:{color:background};
  382. padding:1px;
  383. width:5px;
  384. height:5px;
  385. }
  386. #leave:hover {
  387. background:{color:link};
  388. -webkit-transition: all 0.7s ease;
  389. -moz-transition: all 0.7s ease;
  390. -o-transition: all 0.7s ease;
  391. }
  392.  
  393.  
  394.  
  395.  
  396. {CustomCSS}
  397.  
  398.  
  399. </style>
  400.  
  401.  
  402.  
  403. </head>
  404.  
  405. <body>
  406.  
  407. <div id="con">
  408. <div id="headerim"></div>
  409.  
  410. <div id="avatar"><img src="{image:avatar}"></div>
  411.  
  412.  
  413. <div id="whole">
  414.  
  415. <div id="links">
  416. <a href="{text:Link 1}" title="{text:Link 1 Text}"></a>
  417. <a href="{text:Link 2}" title="{text:Link 2 Text}"></a>
  418. <a href="{text:Link 3}" title="{text:Link 3 Text}"></a>
  419. <a href="{text:Link 4}" title="{text:Link 4 Text}"></a>
  420. <a href="{text:Link 5}" title="{text:Link 5 Text}"></a>
  421. <a href="{text:Link 6}" title="{text:Link 6 Text}"></a>
  422. </div>
  423.  
  424. <div id="line"></div>
  425. </div>
  426. <div id="description">{Description}</div>
  427.  
  428. <div id="pagination">
  429. {block:Pagination}
  430. {block:PreviousPage}
  431. <a href="{PreviousPage}">-</a>
  432. {/block:PreviousPage}
  433. {CurrentPage} of {TotalPages}
  434. {block:NextPage}
  435. <a href="{NextPage}">+</a>
  436. {/block:NextPage}
  437. {/block:Pagination}
  438. </div>
  439.  
  440. <div id="leave"><a href="http://hbbits.tumblr.com" title="theme"></a></div>
  441.  
  442.  
  443. <div id="entries">
  444.  
  445. {block:Posts}
  446. <div id="posts">
  447.  
  448.  
  449. {block:Quote}
  450. <div id="titlequote"><b><i>“{Quote}”</i></b> - {Source}</div>
  451. {/block:Quote}
  452.  
  453.  
  454.  
  455. {block:Text}
  456.  
  457. {block:Title}
  458. <div id="title">{Title}</div>{/block:Title}
  459. {Body}
  460. {/block:Text}
  461.  
  462. {block:Link}
  463. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  464. {/block:Link}
  465.  
  466. {block:Chat}
  467. {block:Title}
  468. <h1>{Title}</h1>
  469. {/block:Title}
  470. <div class="chat">
  471. <ol>{block:Lines}
  472. <li class="line {Alt}">
  473. {block:Label}
  474. <span class="label">
  475. {Label}</span>
  476. {/block:Label}{Line}</li>
  477. {/block:Lines}
  478. </ol></div>
  479. {/block:Chat}
  480.  
  481. {block:Photo}
  482. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  483. {/block:Photo}
  484.  
  485. {block:Photoset}
  486. {Photoset-500}
  487. {/block:Photoset}
  488.  
  489. {block:Video}
  490. {Video-500}
  491. {/block:Video}
  492.  
  493. {block:Audio}
  494. <div class="player">{AudioPlayerWhite}</div>
  495. {block:AlbumArt}
  496. <img src="{AlbumArtURL}" width="100">
  497. {/block:AlbumArt}
  498. <div class="audioinfo">
  499. {block:TrackName}Track Name: {TrackName}{/block:TrackName}{block:Artist}<br>Artist: {Artist}{/block:Artist}
  500. </div>
  501. {/block:Audio}
  502.  
  503. {block:Answer}
  504. <div class="q">
  505. <div class="as">{Asker}: </div>
  506. {Question}</div>
  507. <div class="a">{Answer}</div>
  508. {/block:Answer}
  509.  
  510. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  511.  
  512. {block:Date}
  513. <div id="permalink">
  514. <a href="{Permalink}" >{timeago}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  515. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  516. </div>
  517. {/block:Date}
  518.  
  519.  
  520.  
  521. </div>
  522.  
  523.  
  524. {block:PostNotes}
  525. <div class="pagenotes">
  526. {PostNotes}
  527. </div>
  528. {/block:PostNotes}
  529.  
  530.  
  531. {/block:Posts}
  532.  
  533.  
  534.  
  535. </div>
  536.  
  537. </div>
  538.  
  539.  
  540. {block:ContentSource}
  541. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  542. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  543. {/block:SourceLogo}
  544. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  545. {/block:ContentSource}
  546.  
  547. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement