Advertisement
octomoosey

sacrifice

Nov 29th, 2014
5,071
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.41 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!-- octomoosey @ tumblr -->
  4.  
  5. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head><title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11. <meta name="color:background" content="#000"/>
  12. <meta name="color:postbg" content="#000"/>
  13. <meta name="color:text" content="#fff"/>
  14. <meta name="color:description" content="#fff"/>
  15. <meta name="color:link" content="#b8b8b8"/>
  16. <meta name="color:nav" content="#000"/>
  17. <meta name="color:navbg" content="#fff"/>
  18. <meta name="color:hover" content="#7e0404"/>
  19. <meta name="color:border" content="#fff"/>
  20. <meta name="color:bold" content="#a50000" />
  21. <meta name="color:italic" content="#a50000" />
  22. <meta name="color:pre" content="#fff" />
  23. <meta name="color:pretext" content="#000" />
  24.  
  25. <meta name="image:background" content=""/>
  26.  
  27. <meta name="if:greyscale" content="1"/>
  28. <meta name="font:body font" content="Gibson">
  29. <meta name="text:text size" content="11px" />
  30.  
  31. <meta name="text:background position" content="bottom right"/>
  32.  
  33. <meta name="text:link 1" content="link 1"/>
  34. <meta name="text:link 1 url" content="/"/>
  35. <meta name="text:link 2" content="link 2"/>
  36. <meta name="text:link 2 url" content="/"/>
  37. <meta name="text:link 3" content="link 3"/>
  38. <meta name="text:link 3 url" content="/"/>
  39. <meta name="text:link 4" content="link 4"/>
  40. <meta name="text:link 4 url" content="/"/>
  41. <meta name="text:link 5" content="link 5"/>
  42. <meta name="text:link 5 url" content="/"/>
  43. <meta name="text:link 6" content="link 6"/>
  44. <meta name="text:link 6 url" content="/"/>
  45. <meta name="text:link 7" content="link 7"/>
  46. <meta name="text:link 7 url" content="/"/>
  47. <meta name="text:link 8" content="link 8"/>
  48. <meta name="text:link 8 url" content="/"/>
  49. <meta name="text:link 9" content="link 9"/>
  50. <meta name="text:link 9 url" content="/"/>
  51. <meta name="text:link 10" content="link 10"/>
  52. <meta name="text:link 10 url" content="/"/>
  53.  
  54. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
  55. <script type="text/javascript">
  56. $(document).ready(function(){
  57. $(".menu").click(function(){
  58. $(".down").toggleClass("up");
  59. });
  60. });
  61. </script>
  62.  
  63. <style type="text/css">
  64.  
  65. ::-webkit-scrollbar-track {
  66.  
  67. background-color: {color:postbg};}
  68.  
  69. ::-webkit-scrollbar {
  70. width: 5px;}
  71.  
  72. ::-webkit-scrollbar-thumb {
  73. background-color: #FFF;
  74. background-image: -webkit-linear-gradient(90deg,
  75. rgba(0, 0, 0, 1) 0%,
  76. rgba(0, 0, 0, 1) 25%,
  77. transparent 100%,
  78. rgba(0, 0, 0, 1) 75%,
  79. transparent);}
  80.  
  81. body {
  82. background-color:{color:background};
  83. background-image: url('{image:background}');
  84. background-position: {text:background position};
  85. background-repeat: no-repeat;
  86. background-attachment: fixed;
  87. line-height:110%;
  88. color:{color:text};
  89. font-family:{font:body font};
  90. font-size: {text:text size};}
  91.  
  92. a {
  93. text-decoration:none;
  94. outline:none;
  95. -moz-outline-style:none;
  96. color:{color:link};
  97. -webkit-transition: all 0.7s ease;
  98. -moz-transition: all 0.7s ease;
  99. -o-transition: all 0.7s ease;}
  100.  
  101. a:hover {
  102. color:{color:hover};
  103. -webkit-transition: all 0.7s ease;
  104. -moz-transition: all 0.7s ease;
  105. -o-transition: all 0.7s ease;}
  106.  
  107. blockquote {
  108. padding:2px 7px;
  109. margin:3px 0 3px 8px;
  110. border-left:1px dashed {color:line};}
  111.  
  112. blockquote img {
  113. max-width:100%;}
  114.  
  115. b, strong {
  116. color:{color:bold};}
  117.  
  118. i, em {
  119. color:{color:italic};}
  120.  
  121. small,sup,sub {
  122. font-size:{text:Text Size}}
  123.  
  124. big {
  125. font-size:12px;}
  126.  
  127. pre {
  128. color:{color:pretext};
  129. background-color:{color:pre};
  130. font-size:10px;
  131. padding:20px;
  132. white-space: pre-wrap; /* css-3 */
  133. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  134. white-space: -pre-wrap; /* Opera 4-6 */
  135. white-space: -o-pre-wrap; /* Opera 7 */
  136. word-wrap: break-word; /* Internet Explorer 5.5+ */}
  137.  
  138. {block:IfGreyscale}
  139.  
  140. img {
  141. -webkit-filter:grayscale(100%);
  142. -webkit-transition: all 0.9s ease-in-out;
  143. -moz-transition: all 0.9s ease-in-out;
  144. -o-transition: all 0.9s ease-in-out;
  145. -ms-transition: all 0.9s ease-in-out;
  146. transition: all 0.9s ease-in-out;}
  147.  
  148. img:hover {
  149. -webkit-filter:none;}
  150.  
  151. .html_photoset {
  152. -webkit-filter: grayscale(100%);
  153. -webkit-transition: all 0.9s ease-in-out;
  154. -moz-transition: all 0.9s ease-in-out;
  155. -o-transition: all 0.9s ease-in-out;
  156. -ms-transition: all 0.9s ease-in-out;
  157. transition: all 0.9s ease-in-out;}
  158.  
  159. .html_photoset:hover {
  160. -webkit-filter: none;}
  161.  
  162. {/block:IfGreyscale}
  163.  
  164. img {
  165. max-width:100%;}
  166.  
  167. h1 {
  168. font-size:16px;
  169. font-family:'Lato', sans-serif;
  170. font-weight: 300;
  171. letter-spacing: 1.5px;
  172. line-height: 130%;
  173. color:{color:text};}
  174.  
  175. #container {
  176. top: 0px;
  177. margin-left: auto ;
  178. margin-right: auto ;
  179. width: 400px;
  180. z-index:999;}
  181.  
  182. #post {
  183. border:1px solid {color:border};
  184. background:{color:postbg};
  185. line-height:19.6000003814697px;
  186. width:250px;
  187. padding:50px;
  188. margin-top:30px;
  189. margin-bottom:40px;
  190. text-align: left;
  191. margin-left: 50px;}
  192.  
  193. #post img {
  194. max-width: 100%;}
  195.  
  196. #side {
  197. position:fixed;
  198. top:200px;
  199. margin-left:-230px;
  200. width:250px;
  201. height: 40px;
  202. background:transparent;}
  203.  
  204. #title {
  205. text-align: center;
  206. width:250px;
  207. text-transform:lowercase;
  208. font-weight:200;
  209. font-size: 29px;
  210. position: absolute;
  211. height: 40px;
  212. letter-spacing:3px;
  213. cursor: help;}
  214.  
  215. #subtitle {
  216. position:fixed;
  217. color:{color:description};
  218. text-transform:lowercase;
  219. font-style: italic;}
  220.  
  221. #description {
  222. line-height:100%;
  223. margin-top:40px;
  224. padding:25px;
  225. width: 300px;
  226. color:{color:description};
  227. text-align: center;
  228. font-size: 11px;
  229. letter-spacing: 1px;}
  230.  
  231. #icon {
  232. margin-top:-10px;
  233. margin-left:-10px;
  234. width:60px;
  235. height:60px;
  236. padding:10px;
  237. float: left;}
  238.  
  239. #icon img {
  240. padding:5px;
  241. background:{color:border};
  242. width:50px;
  243. height:50px;}
  244.  
  245. #links {
  246. margin-top:0px;
  247. width:300px;
  248. text-align:center;
  249. font-size:10px;}
  250.  
  251. #links a {
  252. background:{color:navbg};
  253. padding:2px;
  254. display:block;
  255. width:300px;
  256. font-size:12px;
  257. margin-bottom:7px;
  258. color:{color:nav};
  259. letter-spacing:2px;}
  260.  
  261. #links a:hover {
  262. background:{color:nav};
  263. color: {color:navbg};
  264. letter-spacing:4px;}
  265.  
  266. .info {
  267. padding-top:5px;
  268. border-top:1px dashed {color:line};
  269. font-size:14px;
  270. text-align:center;
  271. margin-top:30px;
  272. line-height:15px;}
  273.  
  274. .tag {
  275. margin-top:3px;
  276. text-align:center;
  277. font-size:9px;
  278. font-style:normal;
  279. line-height:18px;}
  280.  
  281. .tag a {
  282. padding:5px;}
  283.  
  284. #asker {
  285. z-index:9999999999 !important;
  286. margin-left:20px;
  287. margin-top:-52px;
  288. margin-right:10px;}
  289.  
  290. #askurl {
  291. font-size:20px;
  292. letter-spacing:3px;
  293. margin-left:70px;
  294. margin-top:-25px;
  295. margin-right:5px;}
  296.  
  297. #question {
  298. font-size: {text:text size};
  299. margin-left:70px;
  300. margin-right:40px;
  301. padding:10px;
  302. text-align:justify;}
  303.  
  304. #quote {
  305. font-size:16px;
  306. font-family:'Lato', sans-serif;
  307. text-align: center;
  308. font-weight: 300;
  309. letter-spacing: 1.5px;
  310. line-height: 130%;
  311. padding-bottom: 10px;}
  312.  
  313. #cover {
  314. position: relative;
  315. z-index: 1;
  316. height: 80px;
  317. float:left;
  318. margin:4px;
  319. box-shadow:0px 0px 5px {color:box shadow};}
  320.  
  321. #button {
  322. width:20px;
  323. height:30px;
  324. overflow: hidden;
  325. position: relative;
  326. z-index: 99;
  327. margin: 15px 24px 13px 16px;}
  328.  
  329. #buttons {
  330. background-color: #fff;
  331. position: absolute;
  332. z-index: 99;
  333. margin-top: 15px;
  334. margin-left: 15px;
  335. opacity: 0;
  336. -webkit-transition: opacity 0.5s linear;
  337. -webkit-transition: all 0.5s linear;
  338. -moz-transition: all 0.5s linear;
  339. -o-transition: all 0.5s linear;}
  340.  
  341. #post:hover #buttons {
  342. opacity:1;}
  343.  
  344. #musicinfo {
  345. margin-left: 110px;
  346. font-size:10px;
  347. min-height:70px;
  348. text-align:left;
  349. position: relative;}
  350.  
  351. .note {
  352. text-transform:uppercase;
  353. width:280px;
  354. font-style:normal;
  355. letter-spacing:0px;
  356. font-size: 10px;
  357. text-align:left;
  358. line-height:100%;
  359. margin-left:10px;}
  360.  
  361. .note li {
  362. list-style-type:none;
  363. border-bottom:1px solid {color:line};
  364. padding:10px 25px 10px 25px;
  365. text-align:left;
  366. -moz-transition-duration:0.5s;
  367. -webkit-transition-duration:0.5s;
  368. -o-transition-duration:0.5s;}
  369.  
  370. .note img.avatar {
  371. margin-right: 10px;
  372. width: 16px;
  373. height: 16px;}
  374.  
  375. .down {
  376. border:1px solid {color:border};
  377. height:0px;
  378. opacity:0;
  379. -webkit-transition:all 1s;
  380. -moz-transition:all 1s;
  381. -ms-transition:all 1s;
  382. -o-transition:all 1s;
  383. transition:all 1s;}
  384.  
  385. .up {
  386. border:1px solid {color:border};
  387. height:100%;
  388. opacity:1;
  389. z-index:10000000000;
  390. -webkit-transition:all 1s;
  391. -moz-transition:all 1s;
  392. -ms-transition:all 1s;
  393. -o-transition:all 1s;
  394. transition:all 1s;}
  395.  
  396. #nav {
  397. z-index:10;
  398. width: 350px;
  399. bottom:0;
  400. position:fixed;
  401. background-color:#000;
  402. color:#fff;
  403. margin-left:50px;}
  404.  
  405. </style></head>
  406. <body>
  407. <div id="container">
  408. <div id="side">
  409. <a class="menu"><div id="title">{title}</a> </div> </div>
  410.  
  411. <div class="down" id="nav">
  412. <div id="description"><div id="icon">
  413. <a href="/" title="{title}">
  414. <img src="{PortraitURL-128}">
  415. </a></div>{Description}<p>{block:Pagination}
  416. {block:PreviousPage}<a href="{PreviousPage}"><big>⇜</big></a>{/block:PreviousPage} {CurrentPage} of {TotalPages} {block:NextPage}<a href="{NextPage}"><big>⇝</big></a>
  417. {/block:NextPage}
  418. {/block:Pagination}<p>
  419. <div id="links">
  420. <a href="/">home</a>
  421. <a href="/ask">questions</a>
  422. <a href="/submit">submit</a>
  423. {block:iflink1}<a href="{text:link 1 url}">{text:link 1}</a>{/block:iflink1}
  424. {block:iflink2}<a href="{text:link 2 url}">{text:link 2}</a>{/block:iflink2}
  425. {block:iflink3}<a href="{text:link 3 url}">{text:link 3}</a>{/block:iflink3}
  426. {block:iflink4}<a href="{text:link 4 url}">{text:link 4}</a>{/block:iflink4}
  427. {block:iflink5}<a href="{text:link 5 url}">{text:link 5}</a>{/block:iflink5}
  428. {block:iflink6}<a href="{text:link 6 url}">{text:link 6}</a>{/block:iflink6}
  429. {block:iflink7}<a href="{text:link 7 url}">{text:link 7}</a>{/block:iflink7}
  430. {block:iflink8}<a href="{text:link 8 url}">{text:link 8}</a>{/block:iflink8}
  431. {block:iflink9}<a href="{text:link 9 url}">{text:link 9}</a>{/block:iflink9}
  432. {block:iflink10}<a href="{text:link 10 url}">{text:link 10}</a>{/block:iflink10}
  433. <a href="https://octomoosey.tumblr.com/" title="theme">theme</a></div>
  434. </div>
  435. </div>
  436.  
  437. {block:Posts}
  438.  
  439. <div id="post">
  440.  
  441. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  442.  
  443. {block:Photo}<center><img src="{PhotoURL-250}"/></center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  444.  
  445. {block:Photoset}<center>{Photoset-250}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  446.  
  447. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  448.  
  449. {block:Quote}<div id="quote">{Quote}</div><br>{block:Source}<b><div style="font-family: courier new; font-size: 11px; text-align: center;">{Source}</div></b>{/block:Source}{/block:Quote}
  450.  
  451. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerWhite}</left></span>
  452. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  453. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  454. {/block:ExternalAudio}<br><br>
  455. {block:Caption}{Caption}{/block:Caption}{/block:Audio}<br>
  456.  
  457. {block:Video}
  458. {Video-250}
  459. {block:Caption}{Caption}{/block:Caption}
  460. {/block:Video}
  461.  
  462. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}<font size="2">{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br><br>{/block:Lines}</font>{/block:Chat}
  463.  
  464. {block:Answer}<div id="ask"><div id="asker"><img src="{AskerPortraitURL-30}"></div><div id="askurl">{Asker}:</div>
  465. <div id="question">{Question}</div></div>{Answer}{/block:Answer}
  466.  
  467. <div class="info">
  468. {block:date}<a href="{Permalink}"> posted;
  469. {block:Date}{TimeAgo}</a>{/block:Date}
  470. {block:NoteCount}
  471. with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} <a href="{ReblogURL}"> - reblog</a><br>
  472.  
  473. {block:RebloggedFrom}
  474. via; <a href="{ReblogParentURL}">{ReblogParentName}</a>
  475. source; <a href="{ReblogRootURL}">{ReblogRootName}</a>
  476. {/block:RebloggedFrom}
  477. </div>
  478.  
  479. <div class="tag">{block:HasTags}{block:Tags}♱ <a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  480. </div>
  481.  
  482. {block:PostNotes}
  483. <div class="note">
  484. {PostNotes}
  485. </div>
  486. {/block:PostNotes}
  487.  
  488. {/block:Posts}
  489.  
  490. </div>
  491.  
  492. {block:ContentSource}
  493. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  494. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  495. {/block:SourceLogo}
  496. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  497. {/block:ContentSource}
  498. </div>
  499.  
  500. </div>
  501.  
  502. </div>
  503.  
  504. </body>
  505. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement