Advertisement
Guest User

Untitled

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