helloyesplease

Geistesblitz

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