Advertisement
quirons

anobrain, eight

Feb 9th, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. ANOBRAIN, C08 BY @QUIRONS.
  8. - feel free to delete this and put your credits!
  9. - don't redistribute this exact code
  10.  
  11. -->
  12.  
  13. {block:Description}
  14. <meta name="description" content="{MetaDescription}" />
  15. {/block:Description}
  16.  
  17. <meta charset="utf-8">
  18. <meta name="viewport" content="initial-scale=1.0, width=device-width" />
  19. <title>{Title}</title>
  20. <link rel="shortcut icon" href="{Favicon}">
  21. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  22.  
  23. <!-- SCRIPTS -->
  24.  
  25. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  26. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  27. <script>
  28. (function($){
  29. $(document).ready(function(){
  30. $("a[title]").style_my_tooltips({
  31. tip_follows_cursor:true,
  32. tip_delay_time:90,
  33. tip_fade_speed:600,
  34. attribute:"title"
  35. });
  36. });
  37. })(jQuery);
  38. </script>
  39.  
  40. <link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'>
  41. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:400,700,400italic' rel='stylesheet' type='text/css'>
  42.  
  43. <!-- METAS -->
  44.  
  45. <meta name="image:background" content=""/>
  46. <meta name="color:text" content="#000000"/>
  47. <meta name="color:links" content="#000000"/>
  48. <meta name="image:sidebar image" content=""/>
  49. <meta name="color:tags" content="#f8f8f8"/>
  50.  
  51. <meta name="text:Link1" content="Link 1"/>
  52. <meta name="text:Link2" content="Link 2"/>
  53. <meta name="text:Link3" content="Link 3"/>
  54. <meta name="text:URL1" content="URL 1"/>
  55. <meta name="text:URL2" content="URL 2"/>
  56. <meta name="text:URL3" content="URL 3"/>
  57.  
  58. <style type="text/css">
  59.  
  60. /* -------- SCROLLBAR -------- */
  61.  
  62. ::-webkit-scrollbar {width: 2px;}
  63. ::-webkit-scrollbar-track {background:none;}
  64. ::-webkit-scrollbar-thumb {background:black;}
  65. ::-webkit-scrollbar-thumb:window-inactive {background: transparent;}
  66. ::-webkit-scrollbar-thumb:horizontal {display:none;}
  67.  
  68. /* -------- TOOLTIPS -------- */
  69.  
  70. #s-m-t-tooltip {
  71. max-width:300px;
  72. margin:15px;
  73. padding:5px;
  74. background-color:black;
  75. font-family:'inconsolata';
  76. font-size:12px;
  77. color:white;
  78. z-index:999999999999999999999999999999999999;
  79. }
  80.  
  81. /* -------- BASICS -------- */
  82.  
  83. body {
  84. color:{color:text};
  85. font-family:helvetica, arial, times;
  86. background:url({image:background}) repeat center center fixed;
  87. font-size:11px;
  88. }
  89.  
  90. a {
  91. text-decoration:none;
  92. font-weight:bold;
  93. color:{color:links};
  94. -webkit-transition: all .5s;
  95. -moz-transition: all .5s;
  96. -o-transition: all .5s;
  97. -ms-transition: all .5s;
  98. transition: all .5s;
  99. }
  100.  
  101. a:hover {
  102. text-shadow: 1px 1px 2px black;
  103. }
  104.  
  105. h1 {
  106. text-transform:uppercase;
  107. font-size:13px;
  108. }
  109.  
  110. #pagination {
  111. font-weight:bold;
  112. color:{color:links};
  113. margin-top:-85px;
  114. margin-bottom:-75px;
  115. text-align:center;
  116. }
  117.  
  118. #pagination a {
  119. color:{color:links};
  120. }
  121.  
  122. /* ------- SIDEBAR ------ */
  123.  
  124. #sbbg {
  125. height:100%;
  126. width:120px;
  127. margin-left:-120px;
  128. overflow-y:hidden;
  129. margin-top:-200px;
  130. position:fixed;
  131. background:white;
  132. display:block;
  133. }
  134.  
  135. #bodybg {
  136. position:absolute;
  137. margin-top:-125px;
  138. z-index:99999999999999;
  139. height:125.5px;
  140. width:100%;
  141. background:url({image:background}) repeat center center fixed;
  142. }
  143.  
  144. #sidebar img {
  145. width:150px;
  146. display:block;
  147. margin-bottom:15px;
  148. }
  149.  
  150. #sidebar {
  151. height:100%;
  152. color:{color:links};
  153. position:fixed;
  154. display:block;
  155. background:white;
  156. width:150px;
  157. padding:75px 25px;
  158. margin-left:-150px;
  159. margin-top:-55px;
  160. -webkit-transition: all .9s;
  161. -moz-transition: all .9s;
  162. -o-transition: all .9s;
  163. -ms-transition: all .9s;
  164. transition: all .9s;
  165. }
  166.  
  167. #title {
  168. background-color:white;
  169. padding:2.5px;
  170. padding-left:5px;
  171. text-align:right;
  172. font-family:'inconsolata';
  173. font-weight:700;
  174. z-index:9999999999;
  175. position:absolute;
  176. right:25px;
  177. text-transform:uppercase;
  178. }
  179.  
  180. #title a:hover {
  181. text-shadow:0 0 0 transparent;
  182. }
  183.  
  184. #tline {
  185. height:1px;
  186. width:150px;
  187. margin-top:-15px;
  188. background:black;
  189. display:inline-block;
  190. }
  191.  
  192. #desc {
  193. margin-top:10.5px;
  194. text-align:justify;
  195. font-family:'inconsolata';
  196. }
  197.  
  198. #links {
  199. width:150px;
  200. color:{color:links};
  201. font-size:11px;
  202. font-family:'inconsolata';
  203. text-align:justify;
  204. margin-top:10.5px;
  205. -webkit-transition: all .9s;
  206. -moz-transition: all .9s;
  207. -o-transition: all .9s;
  208. -ms-transition: all .9s;
  209. transition: all .9s;
  210. }
  211.  
  212. #links a {
  213. font-weight:700;
  214. color:{color:links};
  215. width:60px;
  216. padding-right:5px;
  217. }
  218.  
  219. #links a:last-child {
  220. padding-right:0px;
  221. }
  222.  
  223. /* ------- POSTS ------- */
  224.  
  225. #entries {
  226. margin-top:125px;
  227. background:white;
  228. margin-left:auto;
  229. margin-right:auto;
  230. padding-left:150px;
  231. width:650px;
  232. display:block;
  233. border:1px solid #f0f0f0;
  234. padding-top:55px;
  235. padding-bottom:105px;
  236. }
  237.  
  238. #post {
  239. padding:20px 20px 10px 20px;
  240. width:500px;
  241. border-left:1px solid #f0f0f0;
  242. margin-left:auto;
  243. margin-right:auto;
  244. margin-bottom:135px;
  245. -webkit-transition: ease .5s;
  246. -moz-transition: ease .5s;
  247. -o-transition: ease .5s;
  248. -ms-transition: ease .5s;
  249. transition: ease .5s;
  250. }
  251.  
  252. #tags {
  253. color:{color:links};
  254. background:{color:tags};
  255. border-top:1px solid #f0f0f0;
  256. -webkit-transition: ease .9s;
  257. -moz-transition: ease .9s;
  258. -o-transition: ease .9s;
  259. -ms-transition: ease .9s;
  260. transition: ease .9s;
  261. padding:15px;
  262. text-align:right;
  263. margin-bottom:20px;
  264. margin-top:20px;
  265. font-family:'inconsolata';
  266. }
  267.  
  268. blockquote {
  269. margin-left:15px;
  270. border-left:1px solid #f0f0f0;
  271. padding:5px 0px 5px 30px;
  272. }
  273.  
  274. .pic, video {
  275. max-width:500px;
  276. }
  277.  
  278. .source {
  279. text-align:right;
  280. }
  281.  
  282. ul.chat {
  283. list-style:none;
  284. }
  285.  
  286. .chat span {
  287. margin-left:-30px;
  288. float:left;
  289. }
  290.  
  291. .person {
  292. font-weight:bold;
  293. margin-right:5px;
  294. }
  295.  
  296. #ask {
  297. color:{color:text};
  298. font-size:12px;
  299. padding:15px;
  300. border-bottom:1px solid #f0f0f0;
  301. background:{color:tags};
  302. font-family:'inconsolata';
  303. }
  304.  
  305. #ask a {
  306. color:{color:text};
  307. }
  308.  
  309. .comma:last-child {
  310. display:none;
  311. }
  312.  
  313. /* ------- MUSIC ------- */
  314.  
  315. #audioinfo {
  316. background:{color:tags};
  317. color:black;
  318. text-align:center;
  319. text-transform:uppercase;
  320. width:400px;
  321. display:inline-block;
  322. position:absolute;
  323. margin-left:-20px;
  324. padding-right:15px;
  325. height:75px;
  326. padding-left:5px;
  327. margin-top:12.5px;
  328. }
  329.  
  330. .info {
  331. margin-top:7.5px;
  332. padding:20px;
  333. text-align:center;
  334. }
  335.  
  336. .cover {
  337. width:100px;
  338. border-radius:50%;
  339. z-index:99;
  340. position:relative;
  341. -webkit-filter: Grayscale(100%);
  342. -webkit-transition-duration: 0.8s;
  343. -moz-transition-duration:0.8s;
  344. transition-duration:0.8s;
  345. -o-transition-duration:0.8s;
  346. }
  347.  
  348. #audio:hover .cover {
  349. -webkit-filter: Grayscale(0%);
  350. -webkit-transition: all 0.5s ease-out;
  351. -moz-transition: all 0.5s ease-out;
  352. transition: all 0.5s ease-out;
  353. }
  354.  
  355. .playbutton {
  356. width: 20px;
  357. height: 35px;
  358. overflow: hidden;
  359. z-index: 9999;
  360. margin-left:17.5px;
  361. padding-bottom:7.5px;
  362. padding-top:15px;
  363. }
  364.  
  365. .playbox {
  366. background-color:black;
  367. position: absolute;
  368. z-index: 900;
  369. margin-top: 24px;
  370. margin-left: 20.5px;
  371. padding-right:22.5px;
  372. opacity:.75;
  373. border-radius:50%;
  374. }
  375.  
  376. /* ------- NOTES ------- */
  377.  
  378. ol.notes {
  379. display:block;
  380. text-align:left;
  381. list-style:none;
  382. margin-left:40px;
  383. }
  384.  
  385. ol.notes li.note{
  386. padding-bottom:10px;
  387. }
  388.  
  389. .pagenotes {
  390. margin-top:-95px;
  391. margin-bottom:60px;
  392. }
  393.  
  394. .pagenotes img{
  395. padding-right:5px;
  396. padding-top:5px;
  397. margin-bottom:-5px;
  398. display:none;
  399. }
  400.  
  401. </style>
  402. </head>
  403. <body>
  404.  
  405. <div id="clubs" style="right:25px;bottom:15px;position:fixed;font-size:18px;font-family: 'Playfair Display', serif;";><a href="http://badlland.tumblr.com">C</a></div>
  406.  
  407. <!-- POSTS -->
  408.  
  409. <div id="entries">
  410.  
  411. <div id="sidebar">
  412. <a href="/" title="refresh"><img src="{image:sidebar image}"/></a>
  413. <div id="title"><a href="/">{title}</a></div>
  414. <div id="tline"></div>
  415. <div id="desc">{Description}</div>
  416. <div id="links">
  417. <a href="/">refresh</a>
  418. <a href="{text:URL1}">{text:Link1}</a>
  419. <a href="{text:URL2}">{text:Link2}</a>
  420. <a href="{text:URL3}">{text:Link3}</a>
  421. </div>
  422. </div>
  423.  
  424. {block:Posts}
  425.  
  426. <div id="post">
  427.  
  428. <!-- VIA/SOURCE FIX -->
  429.  
  430. {block:ContentSource}
  431. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  432. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  433. {/block:SourceLogo}
  434. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  435. {/block:ContentSource}
  436.  
  437. {block:Text}
  438. {block:Title}
  439. <h1><a href="{Permalink}">{Title}</a></h1>
  440. {/block:Title}
  441. {Body}
  442. {/block:Text}
  443.  
  444. {block:Photo}
  445. {LinkOpenTag}
  446. <img class="pic" src="{PhotoURL-500}" alt="{PhotoAlt}" />
  447. {LinkCloseTag}
  448. {/block:Photo}
  449.  
  450. {block:Photoset}
  451. {Photoset-500}
  452. {/block:Photoset}
  453.  
  454. {block:Quote}
  455. {Quote}
  456. {block:Source}
  457. <div class="source"><br>{Source}</div>
  458. {/block:Source}
  459. {/block:Quote}
  460.  
  461. {block:Link}
  462. <h1 class="title"><a href="{URL}">{Name}</a></h1>
  463. {block:Description}{Description}{/block:Description}
  464. {/block:Link}
  465.  
  466. {block:Chat}
  467. <ul class="chat">
  468. {block:Lines}
  469. <li class="{Alt}">
  470. {block:Label}<span class="person">{Label}</span>{/block:Label}
  471. <p> {Line} </p></li>
  472. {/block:Lines}
  473. </ul>
  474. {/block:Chat}
  475.  
  476. {block:Audio}
  477. <div id="audio">
  478. <div class="playbox"><div class="playbutton">
  479. {block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}
  480. </div></div>
  481. {block:AlbumArt}<img src="{AlbumArtURL}" class="cover">{/block:AlbumArt}
  482. <div id="audioinfo">
  483. <div class="info">
  484. {block:TrackName}
  485. <b>{TrackName}</b><br />
  486. {/block:TrackName}
  487. {block:Artist}
  488. <b style="opacity:.8">{Artist}</b>
  489. {/block:Artist}
  490. {block:Album}
  491. <span style="padding-left:7.5px;opacity:.8">{Album}</span>
  492. {/block:Album}
  493. </div></div>
  494. </div>
  495. {/block:Audio}
  496.  
  497. {block:Video}
  498. {Video-500}
  499. {/block:Video}
  500.  
  501. {block:Answer}
  502. <div id="ask">
  503. <b style="text-transform:lowercase;">{Asker}: </b>
  504. {Question}
  505. </div>
  506. <div id="answer">{Answer}</div>
  507. {/block:Answer}
  508.  
  509. {block:Caption}
  510. {Caption}
  511. {/block:Caption}
  512.  
  513. {block:Date}
  514. <a href="{Permalink}">
  515. <div id="tags">
  516. {block:Date}<span style="text-transform:lowercase;">
  517. {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}, {TimeAgo}</span>
  518. {/block:Date}
  519. </a>
  520.  
  521. {block:NoteCount}
  522. <a href="{Permalink}"> + {NoteCount} </a>
  523. {/block:NoteCount}
  524.  
  525. <!--VIA AND SOURCE-->
  526. {block:RebloggedFrom} /
  527. <a href="{ReblogParentURL}">via</a>
  528. {/block:RebloggedFrom}
  529. {block:ContentSource}
  530. & <a href="{SourceURL}">source</a>
  531. {/block:ContentSource}
  532. {block:RebloggedFrom}{/block:RebloggedFrom}
  533.  
  534. {block:HasTags}
  535. / <b>tag:</b>
  536. {block:Tags}
  537. <a href="{TagURL}"> {Tag}</a><span class="comma">,</span>
  538. {/block:Tags}
  539. {/block:HasTags}
  540. </div>
  541. {/block:Date}
  542.  
  543. </div>
  544.  
  545. <!--POST NOTES-->
  546.  
  547. {block:PostNotes}
  548. <div class="pagenotes">{PostNotes-16}</div>
  549. {/block:PostNotes}
  550.  
  551. {/block:Posts}
  552.  
  553. {block:Pagination}
  554. <div id="pagination">
  555. {block:PreviousPage}
  556. <a href="{PreviousPage}">Previous</a> |
  557. {/block:PreviousPage}
  558. {block:NextPage}
  559. <a href="{NextPage}">Next</a>
  560. {/block:NextPage}
  561. </div>
  562. {/block:Pagination}
  563.  
  564. </div>
  565.  
  566. </body>
  567. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement