Advertisement
foundcas

Theme 19: Blank Space

Feb 21st, 2015
890
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!-- Don't steal and all that jazz. Any problems just tell me and I'll try to fix it. You can move the credit or change the styling to suit your tastes, but just don't put it on a separate page // capecoding.tumblr.com/ask -->
  6.  
  7.  
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}"/>
  13. {/block:Description}
  14.  
  15. <meta name="color:Background" content="#000">
  16. <meta name="color:Text" content="#fff">
  17. <meta name="color:Link" content="#a8a8a8">
  18. <meta name="color:Link Hover" content="#999">
  19. <meta name="color:Title" content="#000">
  20. <meta name="color:Header Background" content="#fff">
  21. <meta name="color:Header Link" content="#000">
  22. <meta name="color:Tooltips" content="#fff">
  23. <meta name="color:Tooltips Background" content="#000">
  24. <meta name="color:Tooltips Border" content="#fff">
  25. <meta name="color:Scrollbar" content="#fff">
  26. <meta name="color:Selection" content="#000">
  27. <meta name="color:Selection Background" content="#fff">
  28.  
  29. <meta name="if:Show Link 1" content="1">
  30. <meta name="if:Show Link 2" content="1">
  31. <meta name="if:Show Link 3" content="1">
  32. <meta name="if:Show Link 4" content="1">
  33. <meta name="if:Show Link 5" content="1">
  34. <meta name="if:Show Stop Bullying Logo" content="1">
  35.  
  36. <meta name="text:Link 1" content="link 1">
  37. <meta name="text:URL 2" content="url 2">
  38. <meta name="text:Link 2" content="link 2">
  39. <meta name="text:URL 3" content="url 3">
  40. <meta name="text:Link 3" content="link 3">
  41. <meta name="text:URL 4" content="url 4">
  42. <meta name="text:Link 4" content="link 4">
  43. <meta name="text:URL 5" content="url 5">
  44. <meta name="text:Link 5" content="link 5">
  45.  
  46. <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  47.  
  48. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  49.  
  50. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  51.  
  52. <script>
  53.  
  54. (function($){
  55.  
  56. $(document).ready(function(){
  57.  
  58. $("[title]").style_my_tooltips({
  59.  
  60. tip_follows_cursor:true,
  61.  
  62. tip_delay_time:30,
  63.  
  64. tip_fade_speed:300,
  65.  
  66. attribute:"title"
  67.  
  68. });
  69.  
  70. });
  71.  
  72. })(jQuery);
  73.  
  74. </script>
  75.  
  76.  
  77. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
  78. <script type="text/javascript">
  79. $(function(){
  80. var stickyRibbonTop = $('#line').offset().top;
  81.  
  82. $(window).scroll(function(){
  83. if ($(window).scrollTop() > stickyRibbonTop ){
  84. $('.header').addClass('hscroll');
  85. }
  86. else{
  87. $('.header').removeClass('hscroll');
  88. }
  89. });
  90. });
  91. </script>
  92.  
  93. <script type="text/javascript">
  94. $(function(){
  95. var stickyRibbonTop = $('#line').offset().top;
  96.  
  97. $(window).scroll(function(){
  98. if ($(window).scrollTop() > stickyRibbonTop ){
  99. $('.desc').addClass('dscroll');
  100. }
  101. else{
  102. $('.desc').removeClass('dscroll');
  103. }
  104. });
  105. });
  106. </script>
  107.  
  108. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  109. <script type="text/javascript">
  110. $(document).ready(function(){
  111. $('.blank').click(function(){
  112. $('.space').fadeToggle();
  113. });
  114. });
  115. </script>
  116.  
  117. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  118. <script>
  119. $(document).ready(function(){
  120. $(".clicky").click(function(){
  121. $(".closed").toggleClass("open");
  122. });
  123. });
  124. </script>
  125.  
  126. <style type="text/css">
  127.  
  128. #s-m-t-tooltip{
  129. position:absolute;
  130. max-width:300px;
  131. margin:-20px;
  132. padding:2px 8px;
  133. border-left:3px solid {color:Tooltips Border};
  134. background:{color:Tooltips Background};
  135. color:{color:Tooltips};
  136. z-index:999999999;
  137. font-size:8px;
  138. text-transform:uppercase;
  139. }
  140.  
  141. ::selection{
  142. background:{color:Selection Background};
  143. color:{color:Selection};
  144. }
  145.  
  146. ::-webkit-scrollbar{
  147. background:none;
  148. width:6px;
  149. }
  150.  
  151. ::-webkit-scrollbar-thumb{
  152. background:{color:Scrollbar};
  153. height:auto;
  154. }
  155.  
  156. blockquote{
  157. border-left:2px solid {color:Text};
  158. padding:3px;
  159. }
  160.  
  161. a{
  162. text-decoration:none;
  163. color:{color:Link};
  164. -moz-transition:.8s ease-in-out;
  165. -webkit-transition:.8s ease-in-out;
  166. -o-transition:.8s ease-in-out;
  167. }
  168.  
  169. a:hover{
  170. color:{color:Link Hover};
  171. -moz-transition:.8s ease-in-out;
  172. -webkit-transition:.8s ease-in-out;
  173. -o-transition:.8s ease-in-out;
  174. }
  175.  
  176. pre, code {
  177. padding:5px;
  178. box-sizing:border-box;
  179. -moz-box-sizing:border-box;
  180. webkit-box-sizing:border-box;
  181. display:block;
  182. white-space: pre-wrap;
  183. white-space: -moz-pre-wrap;
  184. white-space: -pre-wrap;
  185. white-space: -o-pre-wrap;
  186. word-wrap: break-word;
  187. width:100%; overflow-x:auto;
  188. border-bottom:2px solid {color:Text};
  189. font-size:10px;
  190. }
  191.  
  192. body{
  193. color:{color:Text};
  194. background:{color:Background};
  195. font-family: 'Open Sans', sans-serif;
  196. font-size:11px;
  197. word-wrap:break-word;
  198. overflow-x:hidden;
  199. }
  200.  
  201. .header{
  202. position:fixed;
  203. top:0px;
  204. left:0px;
  205. width:100%;
  206. height:15%;
  207. background:{color:Header Background};
  208. z-index:99999999;
  209. }
  210.  
  211. .header h1{
  212. text-transform:lowercase;
  213. text-align:center;
  214. width:200px;
  215. margin-left:auto;
  216. margin-right:auto;
  217. border: 2px solid {color:Title};
  218. }
  219.  
  220. .header h1 a{
  221. color:{color:Title};
  222. }
  223.  
  224. .header nav{
  225. text-align:center;
  226. width:400px;
  227. font-size:15px;
  228. margin-left:auto;
  229. margin-right:auto;
  230. }
  231.  
  232. .header nav a{
  233. padding:4px;
  234. color:{color:Header Link};
  235. border-bottom:2px solid transparent;
  236. }
  237.  
  238. nav a:hover{
  239. border-bottom:2px solid {color:Header Link};
  240. }
  241.  
  242. #alink{
  243. display:inline;
  244. cursor:help;
  245. padding:4px;
  246. color:{color:Header Link};
  247. border-bottom:2px solid transparent;
  248. }
  249.  
  250. #alink:hover{
  251. border-bottom:2px solid {color:Header Link};
  252. }
  253.  
  254. .hscroll{
  255. height:10%;
  256. }
  257.  
  258. .hscroll h1{
  259. text-transform:uppercase;
  260. font-size:15px;
  261. }
  262.  
  263. .hscroll nav{
  264. font-style:italic;
  265. font-size:10px;
  266. }
  267.  
  268. .desc{
  269. width:150px;
  270. position:fixed;
  271. margin-left:80%;
  272. opacity:0;
  273. -moz-transition:.8s ease-in-out;
  274. -webkit-transition:.8s ease-in-out;
  275. -o-transition:.8s ease-in-out;
  276. }
  277.  
  278. .dscroll{
  279. font-size:14px;
  280. top:50%;
  281. opacity:1;
  282. -moz-transition:.8s ease-in-out;
  283. -webkit-transition:.8s ease-in-out;
  284. -o-transition:.8s ease-in-out;
  285. }
  286.  
  287. .dscroll::first-letter{
  288. font-size:30px;
  289. font-style:italic;
  290. }
  291.  
  292. .space{
  293. position:fixed;
  294. height:100%;
  295. width:100%;
  296. background:{color:Background};
  297. z-index:9999;
  298. }
  299.  
  300. .askbox{
  301. position:fixed;
  302. margin:250px 31%;
  303. }
  304.  
  305. #pagi{
  306. position:fixed;
  307. text-align:center;
  308. width:480px;
  309. font-weight:bold;
  310. color:{color:Text};
  311. word-spacing:10px;
  312. bottom:0px;
  313. left:31.6%;
  314. padding:10px;
  315. text-align:center;
  316. background:{color:Background};
  317. }
  318.  
  319. .con{
  320. width:500px;
  321. margin-left:auto;
  322. margin-right:auto;
  323. padding-top:50px;
  324. padding-bottom:50px;
  325. }
  326.  
  327. .posts{
  328. width:500px;
  329. margin-top:150px;
  330. }
  331.  
  332. .chat li{
  333. list-style-type:none;
  334. margin-left:-40px;
  335. border-bottom:2px solid {color:Text};
  336. padding:7px 0px;
  337. }
  338.  
  339. .label{
  340. font-style:italic;
  341. }
  342.  
  343. .quote{
  344. font-size:14px;
  345. font-style:italic;
  346. text-align:center;
  347. padding:4px;
  348. border-left:6px solid {color:Text};
  349. }
  350.  
  351. .quo{
  352. font-size:20px;
  353. font-weight:bold;
  354. padding:4px;
  355. }
  356.  
  357. .src{
  358. font-size:12px;
  359. font-weight:bold;
  360. text-align:right;
  361. padding:4px;
  362. border-right:6px solid {color:Text};
  363. }
  364.  
  365. .question{
  366. text-transform:uppercase;
  367. text-align:right;
  368. border-right:6px solid {color:Text};
  369. padding:10px;
  370. }
  371.  
  372. .answer{
  373. margin-top:10px;
  374. text-transform:lowercase;
  375. text-align:left;
  376. border-left:6px solid {color:Text};
  377. padding:10px;
  378. }
  379.  
  380. .info{
  381. width:500px;
  382. font-size:9px;
  383. text-transform:uppercase;
  384. text-align:left;
  385. margin-top:5px;
  386. letter-spacing:-20px;
  387. opacity:0;
  388. -moz-transition:.4s ease-in-out;
  389. -webkit-transition:.4s ease-in-out;
  390. -o-transition:.4s ease-in-out;
  391. }
  392.  
  393. .posts:hover .info{
  394. margin-left:0px;
  395. letter-spacing:0px;
  396. opacity:1;
  397. -moz-transition:.4s ease-in-out;
  398. -webkit-transition:.4s ease-in-out;
  399. -o-transition:.4s ease-in-out;
  400. }
  401.  
  402. .tags{
  403. text-transform:lowercase;
  404. }
  405.  
  406. .notes li{
  407. list-style-type:none;
  408. padding:5px 0px;
  409. vertical-align:middle;
  410. }
  411.  
  412. .notes img{
  413. vertical-align:middle;
  414. width:16px;
  415. border-radius:100%;
  416. padding:5px;
  417. }
  418.  
  419. .credit a{
  420. position:fixed;
  421. font-size:8px;
  422. text-transform:uppercase;
  423. right:15px;
  424. bottom:15px;
  425. line-height:17px;
  426. height:16px;
  427. width:16px;
  428. text-align:center;
  429. padding:3px;
  430. border:1px solid transparent;
  431. -moz-transition:.8s ease-in-out;
  432. -webkit-transition:.8s ease-in-out;
  433. -o-transition:.8s ease-in-out;
  434. }
  435.  
  436. .credit a:hover{
  437. border-radius:50%;
  438. background:#fff;
  439. color:#000;
  440. border:1px solid {color:Link Hover};
  441. -moz-transition:.8s ease-in-out;
  442. -webkit-transition:.8s ease-in-out;
  443. -o-transition:.8s ease-in-out;
  444. }
  445.  
  446.  
  447. {CustomCSS}
  448. </style>
  449. </head>
  450. <body>
  451.  
  452.  
  453.  
  454. <div id="line"></div>
  455. <div class="content"></div>
  456.  
  457.  
  458.  
  459. <div class="header">
  460. <h1><a href="/">{Title}</a></h1>
  461. <nav>
  462. <div id="alink" title="open/close askbox" class="blank">contact</div>
  463. {block:IfShowLink1}<a href="{text:URL 1}">{text:Link 1}</a>{/block:IfShowLink1}
  464.  
  465. {block:IfShowLink2}<a href="{text:URL 2}">{text:Link 2}</a>{/block:IfShowLink2}
  466.  
  467. {block:IfShowLink3}<a href="{text:URL 3}">{text:Link 3}</a>{/block:IfShowLink3}
  468.  
  469. {block:IfShowLink4}<a href="{text:URL 4}">{text:Link 4}</a>{/block:IfShowLink4}
  470.  
  471. {block:IfShowLink5}<a href="{text:URL 5}">{text:Link 5}</a>{/block:IfShowLink5}
  472. </nav>
  473. </div>
  474.  
  475.  
  476. <div class="desc">{Description}</div>
  477.  
  478.  
  479.  
  480. <div class="space" style="display:none">
  481. <div class="askbox">
  482. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="500px"></iframe>
  483. </div>
  484. </div>
  485.  
  486.  
  487. <div class="con">
  488. {block:Posts}
  489. <div class="posts">
  490.  
  491. {block:Text}
  492. {block:Title}<h3><a href="{Permalink}">{Title}</a></h3>{/block:Title}
  493. {Body}
  494. {/block:Text}
  495.  
  496.  
  497.  
  498. {block:Quote}
  499. <div class="quote"><span class="quo">&#147;</span>{Quote}<span class="quo">&#148;</span></div> <br>
  500. {block:Source}<div class="src">- {Source}</div>{/block:Source}
  501. {/block:Quote}
  502.  
  503.  
  504.  
  505. {block:Link}
  506. <h3><a href="{URL}">{Name}</a></h3>
  507. {block:Description}{Description}{/block:Description}{/block:Link}
  508.  
  509.  
  510.  
  511. {block:Chat}
  512. <h3>{block:Title}{Title}{/block:Title}</h3>
  513. <ul class="chat">
  514. {block:Lines}
  515. <li class="{Alt} user_{UserNumber}">
  516. {block:Label}<span class="label">{Label}</span>{/block:Label}
  517. {Line}</li>
  518. {/block:Lines}</ul>
  519. {/block:Chat}
  520.  
  521.  
  522.  
  523. {block:Photo}
  524. <div class="photo">
  525. <center>
  526. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  527. </center>
  528. </div>
  529. {block:Caption}{Caption}{/block:Caption}
  530. {/block:Photo}
  531.  
  532.  
  533.  
  534. {block:Photoset}
  535. <div class="photo">{Photoset-500}</div>
  536. {block:Caption}{Caption}{/block:Caption}
  537. {/block:Photoset}
  538.  
  539.  
  540.  
  541. {block:Video}
  542. {block:PostTitle}{PostTitle}{/block:PostTitle}
  543. {Video-500}
  544. {block:Caption}{Caption}{/block:Caption}
  545. {/block:Video}
  546.  
  547.  
  548.  
  549. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerBlack}</left></span>
  550. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  551. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  552. <br><br>
  553. {/block:Audio}
  554.  
  555.  
  556.  
  557. {block:Answer}
  558. <div class="question">{Asker} asked: {Question}</div>
  559. <div class="answer">{Answer}</div>
  560. {/block:Answer}
  561.  
  562.  
  563.  
  564.  
  565. <div class="info">
  566. {block:Date}<a href="{Permalink}">{MonthNumberWithZero}.{DayofMonthWithZero}.{ShortYear}</a>{/block:Date}
  567. {block:NoteCount}/ {NoteCountWithLabel}{/block:NoteCount} /
  568. <a title="care to share?" href="{ReblogURL}">reblog?</a>
  569. <span style="float:right">
  570. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">via</a>
  571. {block:ContentSource}.<a title="{ReblogRootName}" href="{ReblogRootURL}">src</a>{/block:ContentSource}{/block:RebloggedFrom}
  572. </span>
  573.  
  574. {block:HasTags}
  575. <div class="tags">{block:Tags}<a href="{TagURL}">○ {Tag} </a>{/block:Tags}</div>
  576. {/block:HasTags}
  577. </div>
  578.  
  579. </div>
  580.  
  581. {block:PostNotes}<div class="notes">{PostNotes}</div>{block:PostNotes}
  582. {/block:Posts}
  583.  
  584. {block:ContentSource}
  585. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  586. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  587. {/block:SourceLogo}
  588. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  589. {/block:ContentSource}
  590.  
  591. </div>
  592.  
  593.  
  594. <div id="pagi">
  595. {block:Pagination}
  596. {block:PreviousPage}
  597. <a href="{PreviousPage}">&larr;</a>
  598. {/block:PreviousPage}
  599.  
  600. {block:JumpPagination length="5"}
  601. {block:CurrentPage}<a href="{URL}">{PageNumber}</a>{/block:CurrentPage}
  602. {block:JumpPage}<a class="jump2" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  603. {/block:JumpPagination}
  604.  
  605. {block:NextPage}
  606. <a href="{NextPage}">&rarr;</a>
  607. {/block:NextPage}
  608. {/block:Pagination}
  609. </div>
  610.  
  611. {block:IfShowStopBullyingLogo}
  612. <div style="bottom:30px; left:30px; width:auto; height:auto; position:fixed; display:block; background-color:transparent"><a href="http://stop-bullies.tumblr.com"><img src=" http://i43.tinypic.com/2w585e1.png" width="90"></a></div>
  613. {/block:IfShowStopBullyingLogo}
  614.  
  615. <div class="credit"><a title="credit" href="http://foundcas.tumblr.com">dr</a></div>
  616.  
  617.  
  618. </body>
  619. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement