jcegers

UNBROKEN

Jan 25th, 2015
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  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.  
  12. jcegers' THEME #08: UNBROKEN // Please don't remove the credit!
  13. if you have any questions, please feel free to ask.
  14.  
  15. -->
  16.  
  17. <!--Default Variables-->
  18.  
  19. <meta name="color:Background" content="#ffffff"/>
  20. <meta name="color:Title" content="#151515"/>
  21. <meta name="color:Text" content="#aaaaaa"/>
  22. <meta name="color:Link" content="#000000"/>
  23. <meta name="color:Link Border" content="#dbdbdb"/>
  24. <meta name="color:Hover" content="#000000"/>
  25. <meta name="color:Border" content="#eeeeee"/>
  26. <meta name="color:Shadow" content="#d4d4d4"/>
  27.  
  28. <meta name="image:Sidebar Image" content=""/>
  29.  
  30. <meta name="text:Link 1 URL" content="" />
  31. <meta name="text:Link 1" content="" />
  32. <meta name="text:Link 2 URL" content="" />
  33. <meta name="text:Link 2" content="" />
  34. <meta name="text:Link 3 URL" content="" />
  35. <meta name="text:Link 3" content="" />
  36.  
  37.  
  38. <!-- jquery for tooltips-->
  39.  
  40.  
  41. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  42.  
  43. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  44. <script>
  45. (function($){
  46. $(document).ready(function(){
  47. $("a[title]").style_my_tooltips({
  48. tip_follows_cursor:true,
  49. tip_delay_time:30,
  50. tip_fade_speed:300,
  51. attribute:"title"
  52. });
  53. });
  54. })(jQuery);
  55. </script>
  56.  
  57. <!--CSS customization here. -->
  58.  
  59. <style type="text/css">
  60.  
  61. #s-m-t-tooltip{
  62. position:absolute;
  63. margin-top: 15px;
  64. z-index:9999;
  65. padding:5px;
  66. background:{color:background};}
  67.  
  68. ::-webkit-scrollbar-thumb:vertical {background-color:{color:link border};}
  69. ::-webkit-scrollbar-button:horizontal {display:none;}
  70. ::-webkit-scrollbar {background-color:#fcfcfc; width:5px;}
  71.  
  72. /*basics*/
  73.  
  74. blockquote {
  75. padding:0px 5px;
  76. min-width:380px;
  77. border-left:1px solid #b8b8b8;
  78. margin-left:2px;}
  79.  
  80. body {
  81. background:{color:background};
  82. color:{color:text};
  83. font-family:'calibri';
  84. font-size:10px;
  85. text-align:justify;
  86. margin:0;}
  87.  
  88. a {
  89. color:{color:link};
  90. text-decoration:none;
  91. -moz-transition-duration: 0.5s;
  92. -o-transition-duration: 0.5s;
  93. -webkit-transition-duration: 0.5s;
  94. transition-duration: 0.5s;}
  95.  
  96. a:hover {
  97. color:{color:hover};
  98. text-decoration:none;}
  99.  
  100. img{opacity:1;
  101. border:none;
  102. text-decoration:none}
  103.  
  104.  
  105. small {font-size:10px;}
  106. big {font-size:11px;}
  107.  
  108.  
  109. #title {
  110. font-size:12px;
  111. line-height:18px;
  112. font-weight:bold;
  113. margin-bottom:10px;
  114. text-transform:uppercase;
  115. text-align:left;}
  116.  
  117.  
  118. /*topbar*/
  119.  
  120. #topbar {
  121. width:430px;
  122. margin-left:500px;
  123. padding-top:30px;
  124. padding-bottom:7px;
  125. margin-top:-240px;
  126. margin-bottom:50px;
  127. text-align:center;
  128. background:{color:background};
  129. border-bottom:0px solid {color:border};
  130. position:fixed;
  131. }
  132.  
  133. #topbarim img {
  134. border-radius:3px;
  135. margin-left:0px;
  136. opacity:1.0;
  137. width:70px;
  138. }
  139.  
  140. #blogt {
  141. margin:5px 65px;
  142. font-size:12px;
  143. color:{color:Title};
  144. text-transform:uppercase;
  145. letter-spacing:2px;
  146. text-align:center;
  147. text-shadow:1px 1px #f4f4f4;
  148. border-bottom:0px solid #f4f4f4;
  149. width:300px;
  150. font-weight:bold;}
  151.  
  152. #links {
  153. text-align:center;
  154. font-family:'calibri';
  155. font-size:10px;
  156. font-weight:none;
  157. width:300px;
  158. margin:0px 70px;
  159. border-top:0px solid #f4f4f4;
  160. text-transform:none;
  161. }
  162.  
  163. #links a {
  164. margin-bottom:10px;
  165. margin-right:10px;
  166. box-shadow:0px 2px {color:link border};
  167. border-radius:0px;
  168. padding:1px 3px 1px 3px;
  169. font-family:'calibri';
  170. background:#ffffff;
  171. display:inline-block;
  172. color:{color:link};
  173. border-bottom:1px solid transparent;
  174. }
  175.  
  176. #links a:hover {
  177. border-bottom:1px solid {color:hover};
  178. box-shadow:0px 2px {color:hover};
  179. color:{color:hover};
  180. text-decoration:none;
  181. }
  182.  
  183. #description {
  184. width:300px;
  185. line-height:12px;
  186. text-align:center;
  187. border:0px solid #cfcfcf;
  188. padding:7px;
  189. padding-top:2px;
  190. padding-bottom:10px;
  191. margin:1px 60px;
  192.  
  193. }
  194.  
  195.  
  196. /*pagination*/
  197.  
  198. #pagination {
  199. margin:50px 0;
  200. text-align:center;
  201. text-transform:lowercase;
  202. font-weight:bold;}
  203.  
  204. #pagination a {
  205. padding:0 15px;}
  206.  
  207. /*posts*/
  208.  
  209. #entries {
  210. margin-top:235px;
  211. margin-left:500px;
  212. width:400px;}
  213.  
  214.  
  215. #posts {
  216. width:400px;
  217. overflow:hidden;
  218. border:0px solid {color:border};
  219. padding:15px;
  220. {block:IndexPage}
  221. margin-bottom:55px;
  222. {/block:IndexPage}
  223. {block:PermalinkPage}
  224. margin-bottom:50px;
  225. {/block:PermalinkPage}}
  226.  
  227. #posts img {
  228. max-width:400px;}
  229.  
  230. .caption {
  231. max-width:100%;
  232. padding:5px;
  233. margin-top:2px;
  234. }
  235.  
  236. /*quote*/
  237.  
  238. #titlequote{
  239. text-align:center;
  240. font-size:12px;
  241. line-height:18px;
  242. font-weight:bold;}
  243.  
  244. #source {
  245. margin-top:4px;
  246. text-align:right;
  247. margin-left:15px;}
  248.  
  249. /*audio*/
  250.  
  251. .music {
  252. width:400px;
  253. padding-bottom:0px;
  254. }
  255.  
  256. .albumart {
  257. float:left;
  258. }
  259.  
  260. .albumart img {
  261. width:50px;
  262. border-radius:3px;
  263. margin:0px 10px 2px 5px;
  264. }
  265.  
  266. .playercontainer {
  267. text-align:left;
  268. padding-bottom:-3px;
  269. position:background;
  270. }
  271.  
  272. .musicinfo {
  273. padding:5px;
  274. margin-top:9px;
  275. line-height:14px;
  276. }
  277.  
  278. /*asks*/
  279.  
  280. .ask img {
  281. float: left;
  282. margin-top:4px;
  283. margin-left:5px;
  284. border-radius:3px;
  285. margin-right:9px;
  286. }
  287.  
  288. .question {
  289. padding:5px 5px 7px 5px;
  290. width:390px;
  291. min-height:45px;
  292. }
  293.  
  294. .asker {
  295. text-transform:none;
  296. font-size:12px;
  297. padding-bottom:2px;
  298. font-family:'calibri';
  299. letter-spacing:1px;
  300. border-bottom:2px solid {color:link border};
  301. color:{color:links};
  302. }
  303.  
  304. .answer {
  305. padding:5px;
  306. padding-top:2px;
  307. margin-top:-5px;
  308. width:390px;
  309. }
  310.  
  311.  
  312. /*chat*/
  313.  
  314. .chat ol {padding:0;list-style:none;}
  315. .line {padding:5px 0;}
  316. .label {font-weight:bold;}
  317.  
  318. /*permalink and notes*/
  319.  
  320. .info1 {
  321. margin-top:3px;
  322. padding:5px 1px 5px 1px;
  323. text-align:left;
  324. font-size:11px;
  325. font-family:'calibri';
  326. letter-spacing:1px;
  327. font-weight:bold;
  328. width:400px;
  329. overflow:hidden;
  330. text-transform:uppercase;
  331. }
  332.  
  333. .via {
  334. text-align:right;
  335. margin-top:-15px;
  336. font-size:10px;
  337. text-transform:lowercase;
  338. }
  339.  
  340. .tags{
  341. margin-top:7px;
  342. text-align:center;
  343. }
  344.  
  345. .tags a {
  346. margin-right:10px;
  347. color:{color:link};
  348. box-shadow:0px 2px {color:link border};
  349. border-bottom:1px solid transparent;
  350. padding:1px 3px 0px 3px;
  351. }
  352.  
  353. .tags a:hover {
  354. text-decoration:none;
  355. border-bottom:1px solid {color:hover};
  356. color:{color:hover};
  357. box-shadow:0px 2px {color:hover};
  358. }
  359.  
  360. .pagenotes {
  361. {block:IndexPage}
  362. display: none!important;
  363. {/block:IndexPage}
  364. width:400px;
  365. text-align:left;}
  366.  
  367. .pagenotes img {
  368. display:none!important;}
  369.  
  370. .pagenotes li {
  371. list-style-type:none;
  372. padding:1px 0px;
  373. text-align:left;
  374. margin:0 0 0 -40px;}
  375.  
  376. .credit {
  377. position:fixed;
  378. font-family:'calibri';
  379. font-size:10px;
  380. font-weight:bold;
  381. line-height:150%;
  382. padding-bottom:2px;
  383. padding-right:2px;
  384. padding-left:2px;
  385. right:3px;
  386. bottom:5px;
  387. text-align:center;}
  388.  
  389. .credit a {
  390. font-style:normal;
  391. border-bottom:2px solid {color:link border};
  392. color:{color:link};
  393. -moz-transition-duration:0.5s;
  394. -webkit-transition-duration:0.5s;
  395. -o-transition-duration:0.5s;}
  396.  
  397. .credit a:hover {
  398. color:{color:hover};
  399. border-bottom:2px solid {color:hover};
  400. }
  401.  
  402. {CustomCSS}
  403.  
  404. </style>
  405.  
  406. </head>
  407.  
  408. <body>
  409.  
  410. <div class="credit"><a href="http://jcegers.tumblr.com/">JCE</a></div>
  411.  
  412. <div id="topbar">
  413.  
  414. <div id="topbarim"><img src="{image:Sidebar Image}"></div>
  415. <div id="blogt">{Title}</div>
  416. <div id="links">
  417. <a href="/">home</a>
  418. <a href="/ask">ask</a>
  419. <a href="{text:Link 1 URL}">{text:Link 1}</a>
  420. <a href="{text:Link 2 URL}">{text:Link 2}</a>
  421. <a href="{text:Link 3 URL}">{text:Link 3}</a>
  422. </div>
  423. <div id="description">{Description}</div>
  424. </div>
  425.  
  426. <div id="entries">
  427.  
  428. {block:Posts}
  429. <div id="posts">
  430.  
  431. {block:Quote}
  432.  
  433. <div id="titlequote">“{Quote}”</div>
  434. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  435. {/block:Quote}
  436.  
  437. {block:Text}
  438.  
  439. {block:Title}
  440. <div id="title">{Title}</div>{/block:Title}
  441. {Body}
  442. {/block:Text}
  443.  
  444. {block:Link}
  445. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  446. {/block:Link}
  447.  
  448. {block:Chat}
  449. {block:Title}
  450. <h1>{Title}</h1>
  451. {/block:Title}
  452. <div class="chat">
  453. <ol>{block:Lines}
  454. <li class="line {Alt}">
  455. {block:Label}
  456. <span class="label">
  457. {Label}</span>
  458. {/block:Label}{Line}</li>
  459. {/block:Lines}
  460. </ol></div>
  461. {/block:Chat}
  462.  
  463. {block:Photo}
  464. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  465. {/block:Photo}
  466.  
  467. {block:Photoset}
  468. {Photoset-400}
  469. {/block:Photoset}
  470.  
  471. {block:Video}
  472. {Video-400}
  473. {/block:Video}
  474.  
  475. {block:Audio}
  476. <div class="music">{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
  477. <div class="musicinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  478. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times</div>
  479. <br><div class="playercontainer">{AudioPlayerWhite}</div></div>
  480. {/block:Audio}
  481.  
  482. {block:Answer}
  483. <div class="ask"><img src="{AskerPortraitURL-48}"></div>
  484. <div class="question">
  485. <div class="asker"><b>{Asker}</b> said:</div>
  486. {Question}</div>
  487. <div class="answer">
  488. {Answer}</div>
  489. {/block:Answer}
  490.  
  491. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  492.  
  493. <div class="info1">
  494. {block:Date}<a href="{Permalink}" title="{timeago}">{DayOfMonthWithZero} {ShortMonth}</a>{/block:Date}
  495.  
  496. &nbsp;&nbsp; <a href="{Permalink}">{NoteCountWithLabel}</a>
  497.  
  498. <div class="via">
  499.  
  500. {block:RebloggedFrom}
  501. <a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>
  502. {block:ContentSource}&nbsp;
  503. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}" style="color:{color:links}">©</a>
  504. {/block:ContentSource}
  505. {/block:RebloggedFrom}&nbsp;
  506. {block:PermalinkPage}
  507. <a href="{ReblogURL}" target="_blank" style="color:{color:links}" title="reblog">↳↴</a>
  508. {/block:PermalinkPage}
  509.  
  510. </div>
  511. </div>
  512.  
  513. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  514.  
  515. </div>
  516.  
  517.  
  518. {block:PostNotes}
  519. <div class="pagenotes">
  520. {PostNotes}
  521. </div>
  522. {/block:PostNotes}
  523.  
  524. {/block:Posts}
  525.  
  526. <div id="pagination">
  527. {block:Pagination}
  528. {block:PreviousPage}
  529. <a href="{PreviousPage}">back</a>
  530. {/block:PreviousPage}
  531.  
  532. {block:NextPage}
  533. <a href="{NextPage}">next</a>
  534. {/block:NextPage}
  535. {/block:Pagination}
  536. </div>
  537.  
  538. </div>
  539.  
  540. {block:ContentSource}
  541. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  542. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  543. {/block:SourceLogo}
  544. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  545. {/block:ContentSource}
  546.  
  547. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment