Advertisement
letterbyowl

daybreakmistake

Jul 27th, 2014
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.84 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2.  
  3. <html>
  4. <title>{Title}</title>
  5.  
  6. <link rel="shortcut icon" href="{Favicon}">
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  8. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  9.  
  10.  
  11. <head>
  12.  
  13. <meta name="image:background" content="" />
  14.  
  15. <meta name="color:background" content="#323232"/>
  16. <meta name="color:text" content="#A15758" />
  17. <meta name="color:post" content="#EBDACA" />
  18. <meta name="color:notes" content="#EBDACA" />
  19. <meta name="color:links" content="#6FB7AD" />
  20. <meta name="color:navi" content="#D3B378" />
  21. <meta name="color:scrollbar" content="#6FB7AD"/>
  22.  
  23.  
  24. <meta name="text:firstlink" content="" />
  25. <meta name="text:firstlinktitle" content="" />
  26. <meta name="text:secondlink" content="" />
  27. <meta name="text:secondlinktitle" content="" />
  28. <meta name="text:dropbar" content="" />
  29. <meta name="text:URL1" content="" />
  30. <meta name="text:TITLE1" content="" />
  31. <meta name="text:URL2" content="" />
  32. <meta name="text:TITLE2" content="" />
  33. <meta name="text:URL3" content="" />
  34. <meta name="text:TITLE3" content="" />
  35.  
  36.  
  37. <style type="text/css">
  38.  
  39.  
  40. ::-webkit-scrollbar-thumb {
  41. background-color:{color:scrollbar} ;
  42. width: 5px;
  43. }
  44.  
  45.  
  46. ::-webkit-scrollbar {
  47. width: 5px;
  48. background:{color:background};
  49. }
  50.  
  51.  
  52. @font-face {font-family:"lilfont"; src: url(http://static.tumblr.com/bj5zkci/I3Yn23fn9/04b_03__.ttf) format("truetype"); }
  53.  
  54. body{
  55. background:{color:background};
  56. background-image:url({image:background});
  57. background-repeat:no-repeat;
  58. background-attachment: fixed;
  59. font-family:'century gothic';
  60. color:{color:text};
  61. text-transform:uppercase;
  62. font-size:9px;
  63. line-height:120%;
  64. letter-spacing:2px;
  65. margin:0px;
  66. }
  67.  
  68. a {
  69. text-decoration:none;
  70. color:{color:links};
  71. }
  72.  
  73.  
  74.  
  75. .call {
  76. color:{color:text};
  77. text-decoration:none;
  78. transition:0.3s ease-in-out;
  79. -moz-transition:0.3s ease-in-out;
  80. -webkit-transition:0.3s ease-in-out;
  81. -o-transition:0.3s ease-in-out;
  82. display: inline block;
  83. background-color:{color:navi};
  84. padding:2px 5px;
  85. margin: 5px 10px;
  86. text-align:center;
  87. -webkit-filter: grayscale(0%);
  88.  
  89. }
  90.  
  91. .call:hover {
  92. -webkit-filter: grayscale(50%);
  93. -moz-transition:0.3s ease-in-out;
  94. -webkit-transition:0.3s ease-in-out;
  95. -o-transition:0.3s ease-in-out;
  96. }
  97.  
  98. .blockquote{
  99. border-left:2px {color:scrollbar} solid;
  100. padding: 2px 5px;
  101. margin-left:10px;
  102. }
  103.  
  104.  
  105. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  106. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  107. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  108.  
  109. .fade-in {
  110. opacity:0; /* make things invisible upon start */
  111. -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  112. -moz-animation:fadeIn ease-in 1;
  113. animation:fadeIn ease-in 1;
  114.  
  115. -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  116. -moz-animation-fill-mode:forwards;
  117. animation-fill-mode:forwards;
  118.  
  119. -webkit-animation-duration:1s;
  120. -moz-animation-duration:1s;
  121. animation-duration:1s;
  122. }
  123.  
  124. .fade-in.one {
  125. -webkit-animation-delay: 0.7s;
  126. -moz-animation-delay: 0.7s;
  127. animation-delay: 0.7s;
  128. }
  129.  
  130. .fade-in.two {
  131. -webkit-animation-delay: 1.2s;
  132. -moz-animation-delay:1.2s;
  133. animation-delay: 1.2s;
  134. }
  135.  
  136. .fade-in.three {
  137. -webkit-animation-delay: 1.6s;
  138. -moz-animation-delay: 1.6s;
  139. animation-delay: 1.6s;
  140. }
  141.  
  142.  
  143. #all {
  144. margin: 220px auto auto;
  145. width:270px;
  146. }
  147.  
  148. iframe#tumblr_controls {
  149. top: 0% !important;
  150. right:0% !important;
  151. display:none !important;
  152.  
  153. -webkit-transform: translateX(-50%) translateY(-50%);
  154. -moz-transform: translateX(-50%) translateY(-50%);
  155. -ms-transform: translateX(-50%) translateY(-50%);
  156. transform: translateX(-50%) translateY(-50%);
  157.  
  158. }
  159.  
  160. #container {
  161. text-align:center;
  162. background-color:{color:post};
  163. padding:10px 10px ;
  164. border-top:#6FB7AD 5px solid;
  165. overflow:hidden;
  166. -webkit-background-size: cover;
  167. -moz-background-size: cover;
  168. -o-background-size: cover;
  169. background-size: cover;
  170. }
  171.  
  172.  
  173. #test {
  174. color:{color:scrollbar};
  175. font-size:50px;
  176. text-align:center;
  177. font-family:'caviardreams';
  178. text-transform:lowercase;
  179. padding:11px;
  180. }
  181.  
  182.  
  183. #ach {
  184. color:{color:text};
  185. text-decoration:none;
  186. transition:0.3s ease-in-out;
  187. -moz-transition:0.3s ease-in-out;
  188. -webkit-transition:0.3s ease-in-out;
  189. -o-transition:0.3s ease-in-out;
  190. display: inline;
  191. background-color:{color:navi};
  192. padding:2px 5px;
  193. margin:2px 10px;
  194. text-align:center;
  195. -webkit-filter: grayscale(0%);
  196.  
  197. }
  198.  
  199. #ach:hover {
  200. -webkit-filter: grayscale(50%);
  201. -moz-transition:0.3s ease-in-out;
  202. -webkit-transition:0.3s ease-in-out;
  203. -o-transition:0.3s ease-in-out;
  204.  
  205. }
  206.  
  207.  
  208.  
  209. #mergh {
  210. opacity: 0;
  211. margin-top:10px;
  212. margin-bottom:-68px;
  213. transition: 0.8s;
  214. -moz-transition:0.5s ease-in-out;
  215. -webkit-transition:0.5s ease-in-out;
  216. -o-transition:0.5s ease-in-out;
  217.  
  218. transition-delay:0.4s;
  219. }
  220.  
  221. #hjk:hover #mergh{
  222. opacity: 1;
  223. margin-bottom: -7px;
  224.  
  225. }
  226.  
  227.  
  228. #mergh a {
  229. display:block;
  230. margin:5px 20px;
  231. }
  232.  
  233. #hjk {
  234. -moz-transition:0.5s ease-in-out;
  235. -webkit-transition:0.5s ease-in-out;
  236. -o-transition:0.5s ease-in-out;
  237.  
  238. }
  239.  
  240. .overlay {
  241. position: fixed;
  242. width: 100%;
  243. height: 100%;
  244. top: 0;
  245. left: 0;
  246. background: {color:background};
  247. z-index: 9;
  248. }
  249.  
  250.  
  251. #wrapper {
  252. width:440px;
  253. margin: -300px auto 0;
  254. position: relative;
  255. z-index: 999;
  256. }
  257.  
  258. #strip {
  259. background:{color:post};
  260. border-top:{color:scrollbar} 20px solid;
  261. position:fixed;
  262. width:440px;
  263. height:100%;
  264.  
  265. }
  266.  
  267. #holder {
  268. height:94%;
  269. position:fixed;
  270. margin:10px 0px 0 20px ;
  271. overflow-y:scroll;
  272. padding-right:30px;
  273. }
  274.  
  275. #posts {
  276. margin-bottom:5px;
  277. background:{color:post};
  278. padding:5px 0;
  279. width:400px;
  280. border-bottom:{color:scrollbar} 1px dashed;
  281.  
  282. }
  283.  
  284. #tittele a {
  285. color:{color:text};
  286. font-size:20px;
  287. text-decoration:none;
  288. text-transform:uppercase;
  289. }
  290.  
  291.  
  292.  
  293. #audio{
  294. width:25px;
  295. height:25px;
  296. overflow:hidden;
  297. background:#000;
  298. overflow:hidden;
  299. padding:0px;
  300. position:absolute;
  301. margin-left:205px;
  302. border:80px solid #000;
  303. border-right:90px solid #000;
  304. border-top: 90px solid #000;
  305. border-bottom:85px solid #000;
  306. margin-top:1px;
  307. opacity: 0.6;filter:alpha(opacity=60);-moz-opacity: 0.6;-khtml-opacity: 0.6;
  308. }
  309.  
  310. #pagi {
  311. float:right;
  312. margin-top:150px;
  313. margin-right:-140px;
  314. text-align:center;
  315. width:60px;
  316. }
  317.  
  318. #pagi a {
  319. display:block;
  320. float:right;
  321. margin: 2px 5px;
  322. padding:2px 5px;
  323. width:50px;
  324. }
  325.  
  326.  
  327. #posts #notes{
  328. text-align:center;
  329. position: absolute;
  330. height: auto;
  331. line-height:12px;
  332. position:absolute;
  333. opacity: 0;
  334. width:200px;
  335. margin:5px 100px;
  336. padding: 3px 5px 3px 5px;
  337. position:absolute;
  338. background:{color:background};
  339. color:{color:notes};
  340. -webkit-transition: all 0.5s ease-in-out;
  341. -moz-transition: all 0.5s ease-in-out;
  342. }
  343.  
  344. #posts:hover #notes {
  345. opacity:.8;
  346. -webkit-transition: all 0.5s ease-in-out;
  347. -moz-transition-duration: 0.5s;
  348. }
  349.  
  350. #quote {
  351. font-size:70px;
  352. float:left;
  353. opacity:.3;
  354. margin-top:18px;
  355. margin-right:-5px;
  356. transform:rotate(25deg);
  357. -ms-transform:rotate(25deg); /* IE 9 */
  358. -webkit-transform:rotate(25deg); /* Opera, Chrome, and Safari */
  359. }
  360.  
  361.  
  362. @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  363.  
  364. </style>
  365.  
  366. </head>
  367. <body>
  368.  
  369. {block:IndexPage}
  370. <div id="all">
  371. <div id="test">{title}</div>
  372.  
  373. <div id="container">
  374. <a href="{text:FirstLink}" class="fade-in one call">{text:firstLinkTitle}</a><a href="{text:SecondLink}" class="call fade-in two">{text:secondlinktitle}</a><div id="hjk" style="display:inline"><div id="ach" class="fade-in three">{text:dropbar}</div>
  375. <div id="mergh">
  376. {block:ifTITLE1}<a href="{text:URL1}" class="call">{text:TITLE1}</a>{/block:ifTITLE1}
  377. {block:ifTITLE2}<a href="{text:URL2}" class="call">{text:TITLE2}</a>{/block:ifTITLE2}
  378. {block:ifTITLE3}<a href="{text:URL3}" class="call">{text:TITLE3}</a>{/block:ifTITLE3}</div></div></div>
  379. </div></div>
  380. {/block:IndexPage}
  381.  
  382. {block:TagPage}
  383.  
  384. <div class="overlay"></div>
  385.  
  386. <div id="wrapper">
  387. <div id="strip">
  388. <div id="holder">
  389.  
  390. {block:Posts}
  391. <div id="posts">
  392.  
  393.  
  394.  
  395. <div id="notes">
  396.  
  397. <span id="date">{block:Date}<a href="{Permalink}">{DayOfMonthWithZero}.{MonthNumberWithZero}.{ShortYear};{24HourWithZero}</a>{/block:Date}</span>
  398. {block:RebloggedFrom} <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:RebloggedFrom}{/block:RebloggedFrom} | {block:NoteCount} {NoteCount} {/block:NoteCount}<br>
  399. {block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}
  400. <div style="text-align:center;">
  401. </div>
  402.  
  403. </div>
  404.  
  405. {block:Text}
  406.  
  407. {block:Title}<div id="tittele"><a href="{Permalink}">{Title}</a></div>{/block:Title}
  408. {Body}
  409. {/block:Text}
  410.  
  411.  
  412. {block:Photo}
  413. <center><img src="{PhotoURL-400}" border="0"></center>
  414. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
  415.  
  416. {/block:Photo}
  417.  
  418. {block:Photoset}
  419. {Photoset-400}
  420. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
  421. {/block:Photoset}
  422.  
  423.  
  424. {block:Quote}
  425. <div id="quote">❝</div><div style="margin-top:5px;margin-right:10px;">{Quote}</div><br>
  426. {block:Source}
  427. <div align="center">- {Source}</div>
  428. {/block:Source}
  429. {/block:Quote}
  430.  
  431. {block:Link}
  432. <div align="right" style="padding:5px 0 10px;"><a href="{URL}" style="font-size:30px;letter-spacing:1px;" {Target}>{Name} →</a></div>
  433.  
  434. {/block:Link}
  435.  
  436. {block:Chat}
  437. {block:Title}<div id="tittele"><a href="{Permalink}">{Title}</a></div>{/block:Title}
  438. <div style="padding:5px 10px;margin-left:15px;margin-top:5px;font-size:9px;font-weight:lighter; border-left: 5px solid {color:scrollbar}">{block:Lines}{block:Label}<b><span style="color:{color:chat};font-weight:bold;">{Label}</span></b>{/block:Label} {Line}<br>{/block:Lines}</div>
  439. {/block:Chat}
  440.  
  441. {block:Audio}
  442. <div style="height:200px;">
  443. <div id= "audio" style="border-radius: 0px 15px 15px 0px;">{AudioPlayerBlack}</div>
  444. <div>{block:AlbumArt}
  445. <img src="{AlbumArtURL}" style="border-radius: 15px 0px 0px 15px; width:200px;height:200px;" >
  446. {/block:AlbumArt}</div></div>
  447.  
  448. {block:PermalinkPage} {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}
  449.  
  450. {/block:Audio}
  451.  
  452. {block:Video}
  453.  
  454. {Video-400}
  455. {block:PermalinkPage}{block:Caption}<div id="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}
  456. {/block:Video}
  457.  
  458. {block:Answer}<img src="{AskerPortraitURL-40}" style="float:left;padding-right:5px;"> {Asker} whispered: {Question}
  459.  
  460. <br><div id="answers">{Answer} </div>
  461. {/block:Answer}
  462.  
  463. </div>
  464.  
  465.  
  466.  
  467.  
  468.  
  469. {/block:Posts}
  470. </div></div>
  471.  
  472.  
  473. <div id="pagi">
  474. <a href="/" class="call">HOME</a>
  475.  
  476. {block:ifTITLE1}<a href="{text:URL1}" class="call">{text:TITLE1}</a>{/block:ifTITLE1}
  477. {block:ifTITLE2}<a href="{text:URL2}" class="call">{text:TITLE2}</a>{/block:ifTITLE2}
  478. {block:ifTITLE3}<a href="{text:URL3}" class="call">{text:TITLE3}</a>{/block:ifTITLE3}<br>
  479.  
  480. {block:Pagination}
  481. {block:PreviousPage}
  482. <a href="{PreviousPost}"class="call">Present</a>{/block:PreviousPage}
  483. {block:NextPage}
  484. <a href="{NextPage}"class="call">Past</a>{/block:NextPage}{/block:Pagination}
  485. </div></div>
  486.  
  487.  
  488. </div>
  489.  
  490. </div>
  491.  
  492. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement