Advertisement
amitteresexu

mycroft.

Mar 1st, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7.  
  8. <!-----------base code by mrsmilicevic@tumblr
  9. you don't have to leave credit but if you want, that's always nice :> ------------>
  10.  
  11.  
  12. <!--------default variables-------->
  13. <meta name="color:background" content="#ffffff"/>
  14. <meta name="color:text" content="#333333"/>
  15. <meta name="color:links" content="#5b5b5b"/>
  16. <meta name="color:links hover" content="#c9c9c9"/>
  17. <meta name="color:scrollbar bg" content="#ffffff"/>
  18. <meta name="color:scrollbar" content="#eeeeee">
  19.  
  20. <meta name="image:sidebar image" content=""/>
  21. <meta name="image:background image" content=""/>
  22.  
  23. <meta name="text:link 1 title" content="link">
  24. <meta name="text:link 1 url" content=" ">
  25. <meta name="text:link 2 title" content="link">
  26. <meta name="text:link 2 url" content=" ">
  27. <meta name="text:link 3 title" content="link">
  28. <meta name="text:link 3 url" content=" ">
  29. <meta name="text:link 4 title" content="link">
  30. <meta name="text:link 4 url" content=" ">
  31.  
  32. <meta name="if:show link 1" content="1" />
  33. <meta name="if:show link 2" content="1" />
  34. <meta name="if:show link 3" content="1" />
  35. <meta name="if:show link 4" content="1" />
  36.  
  37. <meta name="if:show sidebar image" content="1" />
  38.  
  39.  
  40. <!------------------------TOOLTIPS SCRIPT--------------------->
  41.  
  42. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  43. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  44. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  45. <script>
  46. (function($){
  47. $(document).ready(function(){
  48. $("[title]").style_my_tooltips({
  49. tip_follows_cursor:true,
  50. tip_delay_time:200,
  51. tip_fade_speed:300
  52. });
  53. });
  54. })(jQuery);
  55. </script>
  56.  
  57.  
  58. <!-------------------------------------------------------------------->
  59.  
  60. <style type="text/css">
  61.  
  62. /*----------tooltips---------*/
  63.  
  64. #s-m-t-tooltip {
  65. max-width:300px;
  66. margin:15px;
  67. padding:5px;
  68. border:1px solid #eeeeee;
  69. border-radius:0px;
  70. background:#ffffff;
  71. color:{color:text};
  72. z-index:999999;
  73. font-size:7px;
  74. font-style:none;
  75. font-weight:lighter;
  76. letter-spacing:2px;
  77. font-family:helvetica;
  78. text-transform:uppercase;
  79. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  80. }
  81.  
  82.  
  83. /*----------scrollbar---------*/
  84.  
  85. ::-webkit-scrollbar {
  86. height: 10px;
  87. width: 5px;
  88. background: #0b2161; /*scrolling track color*/
  89. border: 2px solid #ffffff; /*background color*/
  90. }
  91.  
  92. ::-webkit-scrollbar-thumb:vertical {
  93. background: #0b2161; /*scrollbar color*/
  94. border-top: 5px solid #ffffff; /*background color*/
  95. border-bottom: 5px solid #ffffff; /*background color*/
  96. }
  97.  
  98.  
  99. /*----------basics---------*/
  100.  
  101. body {
  102. background:{color:background} url({image:background image}) repeat right top fixed;
  103. color:{color:text};
  104. font-family:arial;
  105. line-height:15px;
  106. font-size:10px;
  107. margin:0;
  108. text-align:left;
  109. }
  110.  
  111. blockquote {
  112. padding-left:10px;
  113. border-left:1px solid;
  114. border-color:#eeeeee;
  115. margin:10px;
  116. }
  117.  
  118. a {
  119. color:{color:links};
  120. text-decoration:none;
  121. }
  122.  
  123. a:hover {
  124. text-decoration:none;
  125. color: {color:links hover};
  126. -webkit-transition:all 0.5s;
  127. -moz-transition:all 0.5s;
  128. -ms-transition:all 0.5s;
  129. -o-transition:all 0.5s;
  130. transition:all 0.5s;
  131. }
  132.  
  133. img {
  134. opacity:1;
  135. text-decoration:none;
  136. }
  137.  
  138. h1 {
  139. font-size:11px;
  140. font-weight:bold;
  141. }
  142.  
  143.  
  144. /*----------posts---------*/
  145.  
  146. .container {
  147. padding:9px;
  148. border-style: double;
  149. border-width: 9px;
  150. border-color:#0b2161;
  151. border-radius:5px;
  152. width:610px;
  153. height:500px;
  154. margin-left:530px;
  155. margin-top:70px;
  156. margin-bottom:40px;
  157. position:relative;
  158. overflow:scroll;
  159. overflow-x:hidden;
  160. background:transparent;
  161.  
  162. }
  163.  
  164. .posts {
  165. {block:IndexPage}
  166. margin-bottom:20px;
  167. {/block:IndexPage}
  168. {block:PermalinkPage}
  169. margin-bottom:40px;
  170. {/block:PermalinkPage}
  171. width:500px;
  172. }
  173.  
  174. .entries {
  175. margin-left:56px;
  176. width:500px;
  177. margin-top:50px;
  178. margin-bottom:50px;
  179. }
  180.  
  181. .posts img, .posts li, .posts blockquote {
  182. max-width: 100%;
  183. }
  184.  
  185. .posts li {
  186. list-style: square;
  187. }
  188.  
  189. blockquote img {
  190. max-width:320px!important;
  191. }
  192.  
  193.  
  194. /*----------post info---------*/
  195.  
  196. .info {
  197. border-top:1px solid #eeeeee;
  198. padding-top:10px;
  199. text-transform:uppercase;
  200. font-size:9px;
  201. letter-spacing:1px;
  202. margin-top:15px;
  203. }
  204.  
  205. .tags {
  206. margin-top:4px;
  207. font-size:9px;
  208. letter-spacing:1px;
  209. font-style:italic;
  210. }
  211.  
  212. .tags a {
  213. margin-right:8px;
  214. }
  215.  
  216.  
  217. /*----------post notes---------*/
  218.  
  219. ol.notes {
  220. padding:0px;
  221. margin:25px 0px 0px -10px;
  222. list-style-type:none;
  223. }
  224.  
  225. ol.notes li.note {
  226. padding:10px;
  227. }
  228.  
  229. ol.notes li.note img.avatar {
  230. vertical-align:-4px;
  231. margin-right:10px;
  232. width:16px;
  233. height:16px;
  234. }
  235.  
  236. ol.notes li.note span.action {
  237. font-weight:none;
  238. }
  239.  
  240. ol.notes li.note .answer_content {
  241. font-weight:normal;
  242. }
  243.  
  244. ol.notes li.note blockquote {
  245. padding:4px 10px;
  246. margin:10px 0px 0px 25px;
  247. }
  248.  
  249. ol.notes li.note blockquote a {
  250. text-decoration:none;
  251. }
  252.  
  253. /*----------sidebar---------*/
  254.  
  255. .sidebar {
  256. position:fixed;
  257. width:300px;
  258. margin-top:-300px;
  259. margin-left:-350px;
  260. top:250px;
  261. }
  262.  
  263. .sidebarimage img {
  264. width:280px;
  265. height:570px;
  266. margin-bottom:3px;
  267. margin-top:30px;
  268. margin-left:30px;
  269. border-bottom:1px solid #141645;
  270. }
  271.  
  272. .sidetitle {
  273. margin-top:5px;
  274. margin-left:82px;
  275. font-size:15px;
  276. text-transform:uppercase;
  277. font-weight:bold;
  278. width:170px;
  279. text-align:center;
  280. }
  281.  
  282. .description {
  283. width:210px;
  284. text-align:center;
  285. margin-top:10px;
  286. margin-left:61px;
  287. }
  288.  
  289. .links {
  290. width:450px;
  291. font-size:20px;
  292. text-align:center;
  293. margin-top:-610px;
  294. margin-left:290px;
  295. word-spacing:3px;
  296. color:{color:links};
  297. background:transparent;
  298. }
  299.  
  300. .links a {
  301. padding:5px;
  302. }
  303.  
  304. .pagination {
  305. width:150px;
  306. margin-top:530px;
  307. margin-left:890px;
  308. font-size:15px;
  309. text-align:center;
  310. padding-top:15px;
  311. }
  312.  
  313.  
  314.  
  315. /*----------quotes---------*/
  316.  
  317. .quote {
  318. text-transform:uppercase;
  319. font-size:12px;
  320. font-weight:bold;
  321. text-align:center;
  322. }
  323.  
  324. .quotesource {
  325. text-align:center;
  326. margin-top:10px;
  327. }
  328.  
  329.  
  330. /*----------chat---------*/
  331.  
  332. .chat {
  333. line-height:20px;
  334. list-style:none;
  335. }
  336.  
  337. .line.odd {
  338. background:#fafafa;
  339. margin-bottom:2px;
  340. padding:5px;
  341. list-style:none;
  342. font-size:10px;
  343. }
  344.  
  345. .line.even {
  346. background:#ffffff;
  347. margin-bottom:2px;
  348. padding:5px;
  349. list-style:none;
  350. font-size:10px;
  351. }
  352.  
  353. .label {
  354. padding-right:1px;
  355. text-transform:uppercase;
  356. font-weight:bold;
  357. color:{color:links};
  358. }
  359.  
  360.  
  361. /*----------questions---------*/
  362.  
  363. .question {
  364. background:#fafafa;
  365. padding:10px;
  366. }
  367.  
  368. .asker {
  369. text-transform:uppercase;
  370. }
  371.  
  372. .answer {
  373. padding:10px;
  374. margin-top:-15px;
  375. }
  376.  
  377. /*----------audio---------*/
  378.  
  379. .playerbutton {
  380. position:relative;
  381. width:30px;
  382. height:35px;
  383. overflow:hidden;
  384. }
  385.  
  386. .playerbuttonhug {
  387. position: absolute;
  388. top:-7px;
  389. left:2px;
  390. }
  391.  
  392. .tumblr_audio_player {
  393. height:50px;
  394. width:500px;
  395. }
  396.  
  397. .playerbuttonbg {
  398. position:absolute;
  399. width:35px;
  400. height:35px;
  401. background-color:#e4e4e4;
  402. padding:10px;
  403. }
  404.  
  405. .trackdetails {
  406. width:auto;
  407. display:inline-block;
  408. margin-left:70px;
  409. font-size:10px;
  410. letter-spacing:1px;
  411. text-transform:lowercase;
  412. padding:5px;
  413. line-height:15px;
  414. }
  415.  
  416. .audiowrapper {
  417. position:relative;
  418. display:inline-block;
  419. }
  420.  
  421. /*----------credit---------*/
  422.  
  423. .credit {
  424. font-size:8px;
  425. position:fixed;
  426. font-weight:bold;
  427. bottom:5px;
  428. right:15px;
  429. z-index:10;
  430. text-align:right;
  431. letter-spacing:1px;
  432. padding:2px;
  433. }
  434.  
  435. .credit a {
  436. color:{color:links};
  437. text-decoration:none;
  438. }
  439.  
  440. .credit a:hover {
  441. color:{color:links hover};
  442. text-decoration:none;
  443. }
  444.  
  445.  
  446. </style>
  447. </head>
  448.  
  449. <body>
  450. <div class="container">
  451.  
  452. <div class="credit">
  453. <a title="art" href="http://wuliao-yuzi.deviantart.com/art/Mycroft-305345133" target="_blank">ART CREDIT.</a></div>
  454.  
  455.  
  456. <div class="sidebar">
  457.  
  458.  
  459. <div class="sidebarimage">
  460. <a href="/"><img src="https://31.media.tumblr.com/aa53ba531bd5f1f0d8dd4add39bd06f0/tumblr_inline_nkk7zmKqep1toifj1.jpg">
  461. </a></div>
  462.  
  463.  
  464.  
  465. <div class="sidetitle">{Title}</div>
  466.  
  467.  
  468. <div class="description">{Description}</div>
  469.  
  470.  
  471. <div class="links">
  472. <a href="/">home</a>
  473. <a href="/ask">inbox</a>
  474. {block:IfShowLink1}
  475. <a href="{text:link 1 url}">{text:link 1 title}</a>
  476. {/block:IfShowLink1}
  477.  
  478. {block:IfShowLink2}
  479. <a href="{text:link 2 url}">{text:link 2 title}</a>
  480. {/block:IfShowLink2}
  481.  
  482. {block:IfShowLink3}
  483. <a href="{text:link 3 url}">{text:link 3 title}</a>
  484. {/block:IfShowLink3}
  485.  
  486. {block:IfShowLink4}
  487. <a href="{text:link 4 url}">{text:link 4 title}</a>
  488. {/block:IfShowLink4}
  489. </div>
  490.  
  491.  
  492. <div class="pagination">
  493. {block:Pagination}
  494. {block:PreviousPage}
  495. <a href="{PreviousPage}">back</a>{/block:PreviousPage}&nbsp;
  496.  
  497. {block:NextPage}
  498. <a href="{NextPage}">forth</a>
  499. {/block:NextPage}
  500. {/block:Pagination}
  501. </div>
  502.  
  503. </div>
  504.  
  505.  
  506. <div class="entries">
  507. {block:Posts}
  508. <div class="posts">
  509.  
  510. {block:Text}
  511. <h1>{block:Title}{Title}{/block:Title}</h1>
  512. {Body}{/block:Text}
  513.  
  514.  
  515. {block:Photo}
  516. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  517. {block:Caption}{Caption}{/block:Caption}
  518. {/block:Photo}
  519.  
  520.  
  521. {block:Photoset}
  522. {Photoset-500}
  523. {block:Caption}{Caption}{/block:Caption}
  524. {/block:Photoset}
  525.  
  526.  
  527. {block:Quote}
  528. <div class="quote">"{Quote}"</div>
  529. {block:Source}<div class="quotesource"> — {Source}</div>
  530. {/block:Source}{/block:Quote}
  531.  
  532.  
  533. {block:Link}
  534. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  535. {block:Description}{Description}{/block:Description}
  536. {/block:Link}
  537.  
  538.  
  539. {block:Chat}
  540. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  541. {/block:Chat}
  542.  
  543.  
  544. {block:Audio}
  545. {block:AudioPlayer}
  546. <div class="audiowrapper">
  547. <div class="playerbuttonbg">
  548. <div class="playerbutton">
  549. <div class="playerbuttonhug">
  550. {AudioPlayerGrey}
  551. </div></div></div>
  552.  
  553. <div class="trackdetails">
  554. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  555.  
  556. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  557.  
  558. <b>PLAYS:</b> {FormattedPlayCount}</div></div>
  559. {/block:AudioPlayer}
  560.  
  561. {block:Caption}
  562. <div class="caption">{Caption}</div>
  563. {/block:Caption}
  564. {/block:Audio}
  565.  
  566.  
  567. {block:Video}
  568. {Video-500}
  569. {block:Caption}{Caption}{/block:Caption}
  570. {/block:Video}
  571.  
  572.  
  573. {block:Answer}
  574. <div class="question">
  575. <div class="asker"><b>{Asker} said:</b></div>
  576. {Question}</div><br>
  577. <div class="answer">
  578. {Answer}</div>
  579. {/block:Answer}
  580.  
  581.  
  582. <div class="info">
  583. {block:Date}
  584. <b><a href="{Permalink}">{DayOfMonthWithZero}.{ShortMonth}.{ShortYear}</b></a>
  585. {/block:Date}
  586.  
  587. &nbsp;&nbsp;
  588. <a href="{Permalink}">{NoteCountWithLabel}</a>
  589. &nbsp;&nbsp;
  590.  
  591. {block:RebloggedFrom}
  592. <a href="{ReblogParentURL}" title="{ReblogParenttitle}">via </a>
  593. {block:ContentSource}
  594. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRoottitle}">/ src</a>
  595. {/block:ContentSource}
  596. {/block:RebloggedFrom}
  597.  
  598. <a href=”{ReblogURL}” target=”_blank” class=”details”>/ reblog</a>
  599. </div>
  600.  
  601.  
  602. {block:HasTags}
  603. <div class="tags">
  604. {block:Tags}
  605. <a href="{TagURL}">#{Tag}</a>
  606. {/block:Tags}
  607. </div>
  608. {/block:HasTags}
  609.  
  610. </div>
  611.  
  612.  
  613. {block:PostNotes}
  614. {PostNotes}
  615. {/block:PostNotes}
  616.  
  617. {/block:Posts}
  618.  
  619. {block:ContentSource}
  620. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  621. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  622. {/block:SourceLogo}
  623. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  624. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  625.  
  626. </body>
  627.  
  628. </div></div></div></div></div></div></div></div></div></div></div>
  629. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement