Advertisement
Guest User

theme 07: welcome home; by primrosetylers

a guest
Mar 7th, 2014
1,372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.49 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><title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8.  
  9. <!----
  10.  
  11. theme 07: welcome home;
  12.  
  13. ✿ coded by irma at primrosetylers.tumblr.com ✿
  14.  
  15. don't hesitate to ask if you have any problems!
  16.  
  17. please don't steal, redistribute, remove the credit, or use as a base. if you want a base, the one i used is by llermans.tumblr.com
  18.  
  19. --->
  20.  
  21. <meta name="color:background" content="#ffffff"/>
  22. <meta name="color:title" content="#000000" />
  23. <meta name="color:description" content="#000000" />
  24. <meta name="color:text" content="#000000"/>
  25. <meta name="color:sidebar" content="#e3e3e3"/>
  26. <meta name="color:image border" content="#000000"/>
  27. <meta name="color:link" content="#fff"/>
  28. <meta name="color:link border" content="#b9b9b9"/>
  29. <meta name="color:link hover" content="#fff"/>
  30. <meta name="color:tooltip text" content="#000"/>
  31. <meta name="color:tooltip" content="#b9b9b9"/>
  32. <meta name="color:body link" content="#b9b9b9"/>
  33.  
  34. <meta name="if:400px posts" content="1"/>
  35. <meta name="if:other font" content="0"/>
  36.  
  37. <meta name="font:other" content=""/>
  38.  
  39. <meta name="image:sidebar bg" content=""/>
  40. <meta name="image:sidebar" content=""/>
  41.  
  42. <meta name="text:link 3" content=""/>
  43. <meta name="text:link 3 url" content="/"/>
  44. <meta name="text:link 4" content=""/>
  45. <meta name="text:link 4 url" content="/"/>
  46. <meta name="text:link 5" content=""/>
  47. <meta name="text:link 5 url" content="/"/>
  48. <meta name="text:link 6" content=""/>
  49. <meta name="text:link 6 url" content="/"/>
  50. <meta name="text:link 7" content=""/>
  51. <meta name="text:link 7 url" content="/"/>
  52. <meta name="text:link 8" content=""/>
  53. <meta name="text:link 8 url" content="/"/>
  54.  
  55.  
  56. <!--- CSS --->
  57.  
  58. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  59.  
  60. <script type="text/javascript">
  61. $(document).ready(function() {
  62. // Tooltip only Text
  63. $('.masterTooltip').hover(function(){
  64. // Hover over code
  65. var title = $(this).attr('title');
  66. $(this).data('tipText', title).removeAttr('title');
  67. $('<p class="tooltip"></p>')
  68. .text(title)
  69. .appendTo('body')
  70. .fadeIn('slow');
  71. }, function() {
  72. // Hover out code
  73. $(this).attr('title', $(this).data('tipText'));
  74. $('.tooltip').remove();
  75. }).mousemove(function(e) {
  76. var mousex = e.pageX + 20; //Get X coordinates
  77. var mousey = e.pageY + 10; //Get Y coordinates
  78. $('.tooltip')
  79. .css({ top: mousey, left: mousex })
  80. });
  81. });
  82. </script>
  83.  
  84. <link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
  85. <link href='http://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
  86.  
  87. <style type="text/css">
  88.  
  89. html, body, h1, h2, h3, h4, h5, h6, p, ol, blockquote
  90. {margin:0;
  91. padding:0;
  92. list-style:none;}
  93.  
  94. body {
  95. font-size: 10px;
  96. color: {color:text};
  97. background-color: {color:background};
  98. line-height:5px;
  99. }
  100.  
  101. body a {
  102. color: {color:body link};
  103. text-decoration:none;
  104. }
  105.  
  106. body a:hover {
  107. color:{color:background};
  108. webkit-transition: all 0.7s ease;
  109. moz-transition: all 0.7s ease;
  110. transition: all 0.7s ease;
  111. }
  112.  
  113. b, strong {}
  114. i, em {}
  115. small {font-size:8px;}
  116. big {font-size:12px;}
  117. ul {list-style:square;text-align:justify;}
  118.  
  119. blockquote
  120. {padding: 3px 0 3px 13px;
  121. border-left: 1px solid {color:text};
  122. text-align:justify;
  123. }
  124.  
  125. blockquote p {display:block!important;}
  126.  
  127. blockquote img {max-width:220px!important;}
  128.  
  129. #entries {
  130. {block:IfNot400pxPosts}width:520px;{/block:IfNot400pxPosts}
  131. {block:If400pxPosts}width:420px;{/block:If400pxPosts}
  132. padding:20px;
  133. margin-left:450px;
  134. {block:IfNotOtherFont}font-family: 'Varela Round';{/block:IfNotOtherFont}
  135. {block:IfOtherFont}font-family: {font:other};{/block:IfOtherFont}
  136. }
  137.  
  138. .tooltip {
  139. display:none;
  140. position:absolute;
  141. background-color:{color:tooltip};
  142. border-radius:1px;
  143. color:{color:tooltip text};
  144. padding:5px;
  145. font-size:11px;
  146. {block:IfNotOtherFont}font-family:arial;{/block:IfNotOtherFont}
  147. {block:IfOtherFont}font-family:{font:other};{/block:IfOtherFont}
  148. }
  149.  
  150. /*sidebar*/
  151. #sidebar {
  152. position:fixed;
  153. overflow:hidden;
  154. height:100%;
  155. background-color: {color:sidebar};
  156. background-image: url('{image:sidebar bg}');
  157. background-repeat:no-repeat;
  158. height:652px;
  159. width:400px;
  160. opacity:1;
  161. }
  162.  
  163. #sidebartop {
  164. position:absolute;
  165. z-index:0.9;
  166. width:175px;
  167. height:auto;
  168. left:125px;
  169. top:160px;
  170. }
  171.  
  172. #sidebartop img {
  173. height:150px;
  174. width:150px;
  175. border-radius:100%;
  176. margin-top:2px;
  177. background-color:#fff;
  178. border-style: outset;
  179. border-color: {color:image border};
  180. }
  181.  
  182. #title {
  183. padding-top:45px;
  184. margin:auto;
  185. line-height:20px;
  186. text-align:center;
  187. font-size:30px;
  188. font-family: 'Allura';
  189. color: {color:title};
  190. }
  191.  
  192. #description {
  193. z-index:0.92;
  194. height:auto;
  195. line-height:11px;
  196. font-size:11px;
  197. position:relative;
  198. margin-top:10px;
  199. margin-left:auto;
  200. margin-right:auto;
  201. text-align:left;
  202. color: {color:description};
  203. {block:IfNotOtherFont}font-family:'Varela Round';{/block:IfNotOtherFont}
  204. {block:IfOtherFont}font-family:{font:other};{/block:IfOtherFont}
  205. }
  206.  
  207. #description a {
  208. color: {color:body link};
  209. }
  210.  
  211. #description a:hover {
  212. color: {color:description bg};
  213. -webkit-transition: all 0.5s ease;
  214. -moz-transition: all 0.5s ease;
  215. -o-transition: all 0.5s ease;
  216. }
  217.  
  218. #toplinks {
  219. z-index:0.91;
  220. margin-left:26px;
  221. padding-bottom:15px;
  222. width:175px;
  223. opacity:0.9;
  224. }
  225.  
  226. #one {
  227. margin-top:5px;
  228. position:absolute;
  229. }
  230.  
  231. #two {
  232. margin-top:-5px;
  233. margin-left:30px;
  234. position:absolute;
  235. }
  236.  
  237. #three {
  238. margin-top:-5px;
  239. margin-left:60px;
  240. position:absolute;
  241. }
  242.  
  243. #four {
  244. margin-top:5px;
  245. margin-left:90px;
  246. position:absolute;
  247. }
  248.  
  249. #five {
  250. margin-top:175px;
  251. position:absolute;
  252. }
  253.  
  254. #six {
  255. margin-top:180px;
  256. margin-left:30px;
  257. position:absolute;
  258. }
  259.  
  260. #seven {
  261. margin-top:180px;
  262. margin-left:60px;
  263. position:absolute;
  264. }
  265.  
  266. #eight {
  267. margin-top:175px;
  268. margin-left:90px;
  269. position:absolute;
  270. }
  271.  
  272. #previous {
  273. position:absolute;
  274. text-align:center;
  275. margin-left:60px;
  276. margin-top:-30px;
  277. font-size:20px;
  278. }
  279.  
  280. #next {
  281. margin-left:-5px;
  282. font-size:20px;
  283. margin-top:30px;
  284. text-align:center;
  285. }
  286.  
  287. .link {
  288. width:12px;
  289. height:12px;
  290. font-size:6px;
  291. border-radius:100%;
  292. background-color: {color:link};
  293. border: 1px solid {color:link border};
  294. -webkit-transition: all 0.3s ease;
  295. -moz-transition: all 0.3s ease;
  296. -o-transition: all 0.3s ease;
  297. transition: all 0.3s ease;
  298. }
  299.  
  300. .link:hover {
  301. background-color:{color:link hover};
  302. -webkit-transition: all 0.5s ease;
  303. -moz-transition: all 0.5s ease;
  304. -o-transition: all 0.5s ease;
  305. transition: all 0.5s ease;
  306. }
  307.  
  308.  
  309. /* posts */
  310. .post {line-height: 16px;
  311. clear: both;}
  312. .post h3 {font-size: 15px; text-align:center; margin-bottom:5px;}
  313. .caption blockquote {padding-left: 20px;}
  314.  
  315. /* kinds of posts */
  316. .post text {text-align: left;}
  317.  
  318. .post photo {margin-bottom: 5px; text-align: center;}
  319. .post photo img {border: 0;}
  320.  
  321. .post quote {
  322. text-align: left;
  323. font-size:12px;
  324. }
  325.  
  326. .quote {
  327. font-size:18px;
  328. font-style:italic;
  329. }
  330.  
  331. .source {
  332. font-size: 12px;
  333. padding-right:25px;
  334. text-align:right;
  335. }
  336.  
  337. .answer {
  338. text-align: left;
  339. margin-bottom:10px;
  340. line-height: 13px;
  341. font-size:11px;
  342. }
  343.  
  344. .postlink {
  345. line-height:15px;
  346. }
  347.  
  348. .post audio {text-align: left;}
  349.  
  350. #audioplayer {
  351. width:30px;
  352. height:30px;
  353. overflow:hidden;
  354. position:absolute;
  355. margin-top:35px;
  356. margin-left:35px;
  357. opacity:0.7;
  358. }
  359.  
  360. .post video {text-align: left;}
  361.  
  362. .post chat {text-align: left;}
  363. .post chat li {list-style-type: none;}
  364.  
  365. /* metadata */
  366.  
  367. #info {
  368. border-top:1px solid #e3e3e3;
  369. padding-bottom:60px;
  370. padding-top:10px;
  371. font-size: 10px;
  372. text-align:right;
  373. {block:IfNot400pxPosts}width:497px;{/block:IfNot400pxPosts}
  374. {block:If400pxPosts}width:397px;{/block:If400pxPosts}
  375. padding-right:3px;
  376. height:15px;
  377. line-height:150%;
  378. opacity:0.7;
  379. z-index:0.89;
  380. }
  381.  
  382. #info span {
  383. color:#000;
  384. background-color:#e3e3e3;
  385. padding-right:2px;
  386. padding-left:2px;
  387. text-transform:uppercase;
  388. -webkit-transition-duration:0.3s;
  389. -moz-transition-duration:0.3s;
  390. -o-transition-duration:0.3s;
  391. }
  392.  
  393. #info span:hover {
  394. background-color: {color:link hover};
  395. -webkit-transition-duration:0.6s;
  396. -moz-transition-duration:0.6s;
  397. -o-transition-duration:0.6s;
  398. }
  399.  
  400. .tags {
  401. clear:both;
  402. font-size:9px;
  403. -webkit-transition-duration:0.3s;
  404. -moz-transition-duration:0.3s;
  405. -o-transition-duration:0.3s;
  406. }
  407.  
  408. .tags a {
  409. text-decoration:none;
  410. color:{color:text};
  411. -webkit-transition-duration:0.3s;
  412. -moz-transition-duration:0.3s;
  413. -o-transition-duration:0.3s;
  414. }
  415.  
  416. ol.notes {display:block; text-align:left; margin-bottom:30px;}
  417. ol.notes li.note{padding:1%;}
  418.  
  419. .pagenotes {text-align:left;}
  420.  
  421.  
  422. /*custom css */
  423. .caption{padding-top:13px;padding-left:10px;padding-bottom:5px;margin-top:5px;text-align:left;font-size:10px;padding-right:10px;}
  424.  
  425. .post img{
  426. {block:IfNot400pxPosts}width:500px;{/block:IfNot400pxPosts}
  427. {block:If400pxPosts}width:400px;{/block:If400pxPosts}
  428. }
  429.  
  430. /*credit*/
  431. #credit {
  432. right:10px;
  433. bottom:10px;
  434. font-size:16px;
  435. color:#050505;
  436. position:fixed;
  437. opacity:0.8;
  438. padding-left:2px;
  439. padding-right:2px;
  440. padding-top:6px;
  441. padding-bottom:6px;
  442. -webkit-transition:0.5s;
  443. -moz-transition:0.5s;
  444. -o-transition:0.5s;
  445. -ms-transition:0.5s;
  446. border:1px solid #050505;
  447. }
  448.  
  449. #credit:hover {
  450. -webkit-transition: all 0.5s ease;
  451. -moz-transition: all 0.5s ease;
  452. -o-transition: all 0.5s ease;
  453. -ms-transition: all 0.5s ease;
  454. color:#fff;
  455. background-color: #050505;
  456. }
  457.  
  458. {CustomCSS}
  459.  
  460. </style>
  461.  
  462. </head>
  463.  
  464. <div id="content">
  465. <div id="sidebar">
  466.  
  467. <div id="sidebartop">
  468.  
  469. <div id="previous">
  470. {block:PreviousPage}<a href="{PreviousPage}">↚</a>{/block:PreviousPage}
  471. </div>
  472.  
  473. <div id="toplinks">
  474. <a class="masterTooltip" title="home" href="/"><div class="link" id="one"></div></a>
  475. <a class="masterTooltip" title="ask" href="/ask"><div class="link" id="two"></div></a>
  476. {block:iflink3}<a class="masterTooltip" title="{text:link 3}" href="{text:link 3 url}"><div class="link" id="three"></div></a>{/block:iflink3}
  477. {block:iflink4}<a class="masterTooltip" title="{text:link 4}" href="{text:link 4 url}"><div class="link" id="four"></div></a>{/block:iflink4}
  478. {block:iflink5}<a class="masterTooltip" title="{text:link 5}" href="{text:link 5 url}"><div class="link" id="five"></div></a>{/block:iflink5}
  479. {block:iflink6}<a class="masterTooltip" title="{text:link 6}" href="{text:link 6 url}"><div class="link" id="six"></div></a>{/block:iflink6}
  480. {block:iflink7}<a class="masterTooltip" title="{text:link 7}" href="{text:link 7 url}"><div class="link" id="seven"></div></a>{/block:iflink7}
  481. {block:iflink8}<a class="masterTooltip" title="{text:link 8}" href="{text:link 8 url}"><div class="link" id="eight"></div></a>{/block:iflink8}
  482. </div>
  483. <img src="{image:sidebar}"/>
  484.  
  485. <div id="title">{Title}</div>
  486.  
  487. <div id="description">{Description}</div>
  488.  
  489. <div id="next">
  490. {block:NextPage}<a href="{NextPage}">↛</a>{/block:NextPage}
  491. </div>
  492. </div>
  493.  
  494. </div>
  495.  
  496. </div>
  497.  
  498.  
  499. <div id="entries">
  500.  
  501. <ol id="posts">
  502.  
  503. {block:Posts}
  504. {block:Text}
  505. <li class="post text">
  506. {block:Title}
  507. <h3><a href="{Permalink}">{Title}</a></h3>
  508. {/block:Title}{Body}
  509. </li>
  510. {/block:Text}
  511.  
  512. {block:Photo}
  513. <li class="post photo">
  514. {block:IfNot400pxPosts}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{/block:IfNot400pxPosts}
  515. {block:If400pxPosts}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{/block:If400pxPosts}
  516. {block:Caption}
  517. <div class="caption">{Caption}</div>
  518. {/block:Caption}
  519. </li>
  520. {/block:Photo}
  521.  
  522. {block:Photoset}
  523. <li class="post photoset">
  524. {block:IfNot400pxPosts}{Photoset-500}{/block:IfNot400pxPosts}
  525. {block:If400pxPosts}{Photoset-400}{/block:If400pxPosts}
  526. {block:Caption}
  527. <div class="caption">{Caption}</div>
  528. {/block:Caption}
  529. </li>
  530. {/block:Photoset}
  531.  
  532. {block:Quote}
  533. <li class="post quote">
  534. <div class="quote">{Quote}</div>
  535. {block:Source}
  536. <div class="source">— {Source}</div>
  537. {/block:Source}
  538. </li>
  539. {/block:Quote}
  540.  
  541. {block:Link}
  542. <li class="postlink">
  543. <div style="font-size:16px; font-style:italic; text-align:center; margin-bottom:4px;"><a href="{URL}" {Target}>{Name}</a></div>
  544.  
  545. {block:Description}
  546. <div class="description">{Description}</div>
  547. {/block:Description}
  548. </li>
  549. {/block:Link}
  550.  
  551. {block:Chat}
  552. <li class="post chat">
  553. {block:Title}
  554. <h3><a href="{Permalink}">{Title}</a></h3>
  555. {/block:Title}
  556.  
  557. <ul class="chat">
  558. {block:Lines}
  559. <li class="{Alt} user_{UserNumber}">
  560. {block:Label}
  561. <span class="label">{Label}</span>
  562. {/block:Label}{Line}
  563. </li>
  564. {/block:Lines}
  565. </ul>
  566. </li>
  567. {/block:Chat}
  568.  
  569. {block:Answer}
  570. <table style="padding-bottom:5px;margin-bottom:5px;">
  571. <tr>
  572. <td style="vertical-align:top;padding-right:10px;"><img src="{AskerPortraitURL-30}"></td>
  573. <td style="vertical-align:top; font-size:11px; line-height:12px"><span style="font-style:italic;text-transform:lowercase;">{Asker}</span> asked: {Question}</td>
  574. </tr>
  575. </table>
  576. <div class="answer">{block:Answerer}{Answerer}:{/block:Answerer}{Answer}</div>
  577. {/block:Answer}
  578.  
  579. {block:Video}
  580. <li class="post video">
  581. {block:IfNot400pxPosts}{Video-500}{/block:IfNot400pxPosts}
  582. {block:If400pxPosts}{Video-400}{/block:If400pxPosts}
  583. {block:Caption}
  584. <div class="caption">{Caption}</div>
  585. {/block:Caption}
  586. </li>
  587. {/block:Video}
  588.  
  589. {block:Audio}
  590. <li class="post audio">
  591. <table style="padding-bottom:5px;margin-bottom:5px;">
  592. <tr>
  593. <td style="vertical-align:top;padding-right:10px;"><div id="audioplayer">{AudioPlayerWhite}</div>
  594. {block:AlbumArt}
  595. <img src="{AlbumArtURL}" style="width:100px;">
  596. {/block:AlbumArt}</td>
  597. <td style="vertical-align:top; font-size:11px; line-height:12px">
  598. {block:TrackName}<i>title:</i> {TrackName} <br />{/block:TrackName}
  599. {block:Artist}<i>artist:</i> {Artist} <br />{/block:Artist}
  600. {block:Album}<i>album:</i> {Album} <br />{/block:Album}
  601. {block:PlayCount}<i>played:</i> {FormattedPlayCount} times{/block:PlayCount}
  602. </td>
  603. </tr>
  604. </table>
  605.  
  606. {block:Caption}{Caption}{/block:Caption}
  607. </li>
  608. {/block:Audio}
  609.  
  610. <div id="info">
  611. <div style="float:left;">{block:Date} <a href="{Permalink}"><span>{TimeAgo}</span></a>{/block:Date} with <a href="{Permalink}"> <span>{NoteCountWithLabel}</span></a></div>
  612. <div style="float:right;">{block:RebloggedFrom} <a href="{ReblogParentURL}"><span>via</span></a> {/block:RebloggedFrom} {block:ContentSource} <a href="{SourceURL}"><span>src</span></a> {/block:ContentSource} <a href="{ReblogURL}" target="_blank"> <span>reblog</span></a></div>
  613.  
  614. {block:HasTags}
  615. <div class="tags">{block:Tags}<a href="{TagURL}"> - {Tag}</a>{/block:Tags}</div>{/block:HasTags}
  616. </div>
  617.  
  618. {block:PostNotes}<div class="pagenotes">{PostNotes}</div>{/block:PostNotes}
  619. {/block:Posts}
  620. </ol>
  621.  
  622.  
  623. <a title="credit" href="http://primrosetylers.tumblr.com/"><div id="credit">✿</div></a>
  624.  
  625. </div>
  626. </body>
  627. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement