Advertisement
cornetespoir

sammyapetals

Nov 23rd, 2016
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{Title}</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="shortcut icon" href="{Favicon}">
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  8. {block:Description}
  9. <meta name="description" content="{MetaDescription}" />
  10. {/block:Description}
  11.  
  12. <meta name="image:background" content="" />
  13. <meta name="image:banner" content="" />
  14.  
  15. <!--here's where you set the default colors -->
  16.  
  17. <meta name="color:background" content="#f7f7f7" />
  18. <meta name="color:posts" content="#fff" />
  19. <meta name="color:header" content="#fff" />
  20. <meta name="color:border" content="#eee" />
  21. <meta name="color:links" content="{AccentColor}" />
  22. <meta name="color:info background" content="#f8f8f8" />
  23. <meta name="color:box title" content="#eee" />
  24. <meta name="color:box title text" content="#222" />
  25. <meta name="color:update name color" ="#fff" />
  26. <meta name="color:update name background" ="#B01A4F" />
  27. <meta name="color:scrollbar" content="#222" />
  28. <meta name="color:scrollbar background" content="#f8f8f8" />
  29.  
  30. <meta name="text:update 1" content="" />
  31. <meta name="text:update 1 content" content="" />
  32. <meta name="text:update 2" content="" />
  33. <meta name="text:update 2 content" content="" />
  34. <meta name="text:update 3" content="" />
  35. <meta name="text:update 3 content" content="" />
  36. <meta name="text:update 4" content="" />
  37. <meta name="text:update 4 content" content="" />
  38. <meta name="text:schedule" content="" />
  39. <meta name="text:twitter feed" content="" />
  40. <meta name="text:instagram feed" content="" />
  41. <meta name="text:notes" content="notes" />
  42.  
  43. <meta name="if:spoons" content="" />
  44. <meta name="if:battery" content="" />
  45. <meta name="if:hearts" content="" />
  46. <meta name="if:hpbar" content="" />
  47. <meta name="if:full background" content="" />
  48.  
  49. <meta name="text:current" content="5"/>
  50. <meta name="text:maximum" content="5"/>
  51. <meta name="color:full meter" content="#000"/>
  52. <meta name="color:empty meter" content="#ddd"/>
  53. <meta name="color:hpbackground" content="#eee" />
  54. <meta name="color:hp" content="#89AF28" />
  55. <meta name="color:battery" content="#000" />
  56. <meta name="color:tooltip" content="#000" />
  57. <meta name="color:tooltip text" content="#fff" />
  58.  
  59. <meta name="text:blacklist1" content="nsfw" />
  60. <meta name="text:blacklist2" content="food" />
  61. <meta name="text:box 6 title" content="title" />
  62. <meta name="text:credits" content="credits" />
  63.  
  64.  
  65. <meta name="select:battery percentage" content="0" title="0%">
  66. <meta name="select:battery percentage" content="1" title="25%">
  67. <meta name="select:battery percentage" content="2" title="50%">
  68.  
  69. <meta name="select:battery percentage" content="3" title="75%">
  70.  
  71. <meta name="select:battery percentage" content="4" title="100%">
  72. <meta name="select:hp percent" content="2" title="0%" />
  73. <meta name="select:hp percent" content="20" title="10%" />
  74. <meta name="select:hp percent" content="40" title="20%" />
  75. <meta name="select:hp percent" content="60" title="30%" />
  76. <meta name="select:hp percent" content="80" title="40%" />
  77. <meta name="select:hp percent" content="100" title="50%" />
  78. <meta name="select:hp percent" content="120" title="60%" />
  79. <meta name="select:hp percent" content="140" title="70%" />
  80. <meta name="select:hp percent" content="160" title="80%" />
  81. <meta name="select:hp percent" content="180" title="90%" />
  82. <meta name="select:hp percent" content="190" title="100%" />
  83.  
  84. <meta name="text:link1" content="01" />
  85. <meta name="text:url1" content="/" />
  86. <meta name="text:link2" content="02" />
  87. <meta name="text:url2" content="/" />
  88. <meta name="text:link3" content="03" />
  89. <meta name="text:url3" content="url3" />
  90. <meta name="text:link4" content="04" />
  91. <meta name="text:url4" content="url4" />
  92. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
  93.  
  94. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
  95. {block:ifhearts}
  96. <script>
  97. $(document).ready(function () {
  98. for (var i=0; i < {text:current}; i++) {
  99. $(".hearts").append('<span ><i class="fa fa-heart"style="color:{color:full meter}"></i></span>');
  100. }
  101.  
  102. for (var i=0; i < ({text:maximum} - {text:current}); i++) {
  103. $(".hearts").append('<span ><i class="fa fa-heart"style="color:{color:empty meter}"></i></span>');
  104. }
  105. });
  106. </script>{/block:ifhearts}
  107. {block:ifspoons}
  108. <script>
  109. $(document).ready(function () {
  110. for (var i=0; i < {text:current}; i++) {
  111. $(".spoons").append('<span ><i class="fa fa-spoon"style="color:{color:full meter}"></i></span>');
  112. }
  113.  
  114. for (var i=0; i < ({text:maximum} - {text:current}); i++) {
  115. $(".spoons").append('<span ><i class="fa fa-spoon" style="color:{color:empty meter}"></i></span>');
  116. }
  117. });
  118. </script>{/block:ifspoons}
  119. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  120. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  121.  
  122. <script>
  123.  
  124. (function($){
  125.  
  126. $(document).ready(function(){
  127.  
  128. $("a[title]").style_my_tooltips({
  129.  
  130. tip_follows_cursor:true,
  131.  
  132. tip_delay_time:90,
  133.  
  134. tip_fade_speed:600,
  135.  
  136. attribute:"title"
  137.  
  138. });
  139.  
  140. });
  141.  
  142. })(jQuery);
  143.  
  144. </script>
  145.  
  146. <script type="text/javascript">
  147. $(document).ready(function(){
  148. $(".links_body").hide();
  149. $(".links_head").click(function(){
  150. $(this).next(".links_body").slideToggle('fast');
  151. }); }); </script>
  152. <style type="text/css">
  153.  
  154.  
  155.  
  156.  
  157. .links_head { cursor:pointer; margin:2px auto; }
  158. .links_body { text-align:left; display:none;position:absolute; margin:-10px -10px; width:230px; padding:6px; font-size:.9em;
  159. transform:scale(.9);
  160. }
  161. .links_body li {
  162. list-style:none;
  163. background:white;
  164. width:200px;
  165. padding:4px;
  166. border-bottom:1px solid {color:border};
  167. margin:0px 0px 0px 0px;
  168. transition:.6s;
  169.  
  170. }
  171.  
  172.  
  173.  
  174. .links_body li:hover {
  175. background-color:#eee;
  176. transition:.6s;
  177.  
  178. }
  179. .links_body li:first-letter {
  180. color:{AccentColor};
  181. text-transform:uppercase; line-height:120%;
  182.  
  183. }
  184.  
  185. </style>
  186.  
  187. </head>
  188.  
  189. <style type="text/css">
  190.  
  191. .tmblr-iframe.tmblr-iframe--desktop-logged-in-controls.iframe-controls--desktop {
  192. position:fixed;
  193. right:10px;
  194. opacity:.6;
  195. top:12px;
  196.  
  197. }
  198. ::-webkit-scrollbar {
  199. width: 14px;
  200. height:6px;
  201.  
  202.  
  203. }
  204. ::-webkit-scrollbar-button {
  205. width: 0px;
  206. height: 0px;
  207. }
  208. ::-webkit-scrollbar-thumb {
  209. background: {color:scrollbar};
  210. border:6px solid {color:background};
  211. border-top:2px solid {color:background};
  212. border-bottom:2px solid {color:background};
  213. cursor:pointer;
  214. border-radius: 8px;
  215. }
  216. ::-webkit-scrollbar-track {
  217. background:{color:scrollbar background};
  218. border: 6px solid {color:background};
  219. border-top:10px solid {color:background};
  220. border-bottom:10px solid {color:background};
  221.  
  222.  
  223. }
  224. #s-m-t-tooltip{
  225. max-width:300px;
  226. margin-top:-50px;
  227. margin-left:-20px;
  228.  
  229. border:2px solid white;
  230. box-shadow: 0px 0px 0px 2px {color:tooltip};
  231. font-family:verdana;
  232. padding:5px 5px;
  233. background:{color:tooltip}; /*if you're changing the color in the code, make sure this is the same as the s-m-t:after */
  234. color:{color:tooltip text};
  235. z-index:99999999;
  236. font-size:.9em;
  237.  
  238. }
  239.  
  240.  
  241. /* don't touch this, this is the what makes it look like a speech bubble */
  242. #s-m-t-tooltip:after{
  243.  
  244. content: '';
  245. position: absolute;
  246. border-style: solid;
  247. border-width: 8px 10px 0;
  248. border-color: {color:tooltip} transparent;
  249. display: block;
  250. width: 0;
  251. z-index: 1;
  252. bottom: -10px;
  253. left: 10%;}
  254.  
  255. body{
  256. margin:0; overflow-y:hidden;
  257. font-family:Helvetica;
  258. background:{color:background} url({image:background})
  259.  
  260.  
  261. /*the things inside of the blocks will only be used if the user has selected the option for a full background */
  262.  
  263. {block:iffullbackground} no-repeat center center fixed;
  264. -webkit-background-size: cover;
  265. -moz-background-size: cover;
  266. -o-background-size: cover;
  267. background-size: cover; {/block:iffullbackground};
  268. background-attachment:fixed;
  269. word-wrap:break-word;
  270. font-size:.9em;
  271.  
  272. }
  273.  
  274. a{
  275. color:{color:links};
  276. text-decoration:none;
  277.  
  278.  
  279. }
  280.  
  281. @font-face { font-family: "oliver"; src: url('https://dl.dropboxusercontent.com/s/y74b19hkp9def0k/olivier_demo.ttf'); }
  282.  
  283.  
  284. blockquote{border-left:1px dotted black; padding-left:4px;}
  285.  
  286. blockquote img{max-width:100%;}
  287. #battery i{
  288. color:{color:battery};
  289. font-size:18px;
  290. }
  291.  
  292. .meter{width:100%; padding:2px; padding-top:10px; text-align:center;}
  293.  
  294. {block:ifhpbar}
  295. #hpbar{width:190px; padding:0px; border:2px solid white; background:{color:hpbackground}; height:10px; box-shadow:0px 0px 0px 1px {color:border};}
  296. #hp{width:{select:hp percent}px; background:{color:hp};height:10px; border-right:2px solid white;}
  297.  
  298. {/block:ifhpbar}
  299. #header {
  300. position:fixed;
  301. width:100%;
  302. height:50px;
  303. border-bottom:1px solid {color:border};
  304. background:{color:header};
  305. top:0px;
  306. z-index:9;
  307. }
  308.  
  309. #header img {
  310. width:32px;
  311. height:32px;
  312. padding:10px;
  313. border-radius:12px;
  314. float:left;
  315. }
  316.  
  317. .menu li {
  318. padding:10px;
  319. list-style:none;
  320. display:inline-block; font-size:1.32em;
  321. }
  322. .menu li:first-child {
  323. font-family:{TitleFont};
  324. color:{FontTitle};
  325.  
  326.  
  327. line-height:160%;
  328.  
  329. }
  330.  
  331. .menu li:nth-child(2) {
  332. margin-left:20px;
  333. }
  334.  
  335. #banner {
  336. height:250px;
  337. width:900px;
  338. position:relative;
  339. margin:60px auto;
  340. border:1px solid {color:border};
  341. }
  342.  
  343. #banner img {
  344. height:250px;
  345. width:900px;
  346. }
  347.  
  348. #container {width:100%; position:relative; margin:50px auto; max-height:100vh; overflow:auto;}
  349.  
  350.  
  351. .posts{
  352.  
  353. margin: /*this is the top*/ 100px /*right*/ auto /*bottom*/ 100px /*and left */auto;
  354. width: 520px;
  355. background-color:{color:posts};
  356. /*padding is how much space is around the post */
  357. padding:10px;
  358. position:relative;
  359. border:1px solid {color:border};
  360. }
  361.  
  362.  
  363. h1{ padding:10px; font-size:1.2em; text-align:center; border-bottom:1px solid {color:border};}
  364.  
  365.  
  366. .posts img {
  367. display:block;
  368. max-width:100%;
  369. }
  370.  
  371.  
  372. .im {
  373. position:relative;
  374. }
  375.  
  376. .speechbubble
  377. {
  378. width:350px;
  379. position: relative;
  380. background:#eee;
  381. left:80px;
  382. margin: 0;
  383. font-size:14px;
  384. padding:20px;
  385. height: auto;
  386. background: #fff;
  387. border: {color:border} solid 1px;
  388. }
  389.  
  390. .speechbubble:after
  391. {
  392. content: '';
  393. position: absolute;
  394.  
  395.  
  396. border-style: solid;
  397. border-width: 12px 17px 12px 0;
  398. border-color: transparent #fff;
  399. display: block;
  400. width: 0;
  401. z-index: 1;
  402. left: -17px;
  403. top: 20px;
  404. }
  405.  
  406. .speechbubble:before
  407. {
  408.  
  409. content: '';
  410. position: absolute;
  411. border-style: solid;
  412. border-width: 12px 17px 12px 0;
  413. border-color: transparent {color:border};
  414. display: block;
  415. width: 0;
  416. z-index: 0;
  417. left: -18px;
  418. top: 20px;
  419. }
  420.  
  421.  
  422. .info {
  423. padding:10px;
  424. width:100%;
  425. background:{color:info background};
  426. transform:translate(-10px, 10px);
  427. border-top:1px solid {color:border};
  428.  
  429.  
  430. }
  431.  
  432. .info a {
  433.  
  434. padding:2px;
  435. }
  436. .leftboxes {
  437. float:left;
  438. }
  439.  
  440. .rightboxes {
  441. float:right
  442. }
  443.  
  444. .box4 {
  445. position:relative;
  446. right:80px;
  447. width:250px;
  448. border:1px solid {color:border};
  449. background:{color:posts};
  450. }
  451.  
  452.  
  453. .box5 {
  454. position:relative;
  455. right:80px;
  456. width:250px;
  457. border:1px solid {color:border};
  458. background:{color:posts};
  459. margin-top:50px;
  460. }
  461.  
  462. .box6 {
  463. position:relative;
  464. width:250px;
  465. right:80px;
  466. border:1px solid {color:border};
  467. background:{color:posts};
  468. margin-top:50px;
  469. }
  470.  
  471. .box1 {
  472. position:relative;
  473. left:80px;
  474. width:250px;
  475. border:1px solid {color:border};
  476. background:{color:posts};
  477. }
  478.  
  479. .box2 {
  480. position:relative;
  481. width:250px;
  482. border:1px solid {color:border};
  483. background:{color:posts};
  484. left:80px;
  485. margin-top:50px;
  486.  
  487. }
  488.  
  489. .box2 li {
  490. list-style:none;
  491. padding:4px;
  492. border-bottom:1px solid {color:border};
  493. }
  494.  
  495. .boxcontent {
  496. padding:20px;
  497. }
  498.  
  499. .boxtitle {
  500. padding:10px;
  501. background:{color:box title};
  502. font-family:"oliver";
  503. font-size:1.32em;
  504. color:{color:box title text};
  505. border-bottom:1px solid {color:border};
  506. }
  507.  
  508.  
  509. .updatename {
  510. color:{color:update name color};
  511. font-weight:bold;
  512. padding:2px;
  513. background:{color:update name background};
  514. border-radius:2px;
  515. line-height:200%;
  516. }
  517.  
  518.  
  519. .updatecontent {
  520.  
  521. line-height:200%;
  522. }
  523.  
  524.  
  525. .tags {
  526. border-top:1px solid {color:border};
  527. width:100%;
  528. transform:translate(-10px, 10px);
  529. padding:10px;
  530. }
  531.  
  532. .post.caption{height:0;}
  533. {block:IndexPage}
  534. .{text:blacklist1}{color:{color:post warning text};
  535. overflow:hidden;
  536. height:60px;
  537. }
  538. .{text:blacklist1} img {display:none;}
  539. .tet{display:none; height:60px; padding:10px;}
  540.  
  541. .{text:blacklist1} .tet{display:block; z-index:999999; color:{color:post warning text};}
  542. .{text:blacklist2}{color:{color:post warning text};
  543. overflow:hidden;
  544. height:60px;
  545. }
  546. .{text:blacklist2} img {display:none;}
  547. .tet2{display:none; height:60px; padding:10px;}
  548.  
  549. .{text:blacklist2} .tet2{display:block; z-index:999999; color:{color:post warning text};
  550. }
  551.  
  552. .issues {color:{color:post warning text};
  553. overflow:hidden;
  554. height:60px;
  555. display:none;
  556. }
  557. .issues img {display:none;}
  558. .tet3{display:none; height:60px; padding:10px;}
  559.  
  560. .issues .tet3{display:block; z-index:999999; color:{color:post warning text};
  561.  
  562.  
  563. }
  564.  
  565. {/block:IndexPage}
  566.  
  567.  
  568. {block:PermalinkPage}
  569. .tet{
  570. display:none; }
  571. .{text:blacklist1} .tet{
  572. display:none; }
  573.  
  574. .tet2{
  575. display:none; }
  576. .{text:blacklist2} .tet2{
  577. display:none; }
  578.  
  579. .tet3{
  580. display:none; }
  581. /* .issues .tet3{
  582. display:none; }
  583. */
  584. {/block:PermalinkPage}
  585.  
  586.  
  587. {block:TagPage}
  588. .{text:blacklist1} {
  589. height:auto;
  590. }
  591. .{text:blacklist1} img{display:block;}
  592. .{text:blacklist1} .tet{display:none;}
  593. .tet{display:block; z-index:999999;
  594. display:none; } .{text:blacklist2} {
  595. height:auto;
  596. }
  597. .{text:blacklist2} img{display:block;}
  598. .{text:blacklist2} .tet2{display:none;}
  599. .tet2{display:block; z-index:999999;
  600. display:none; }
  601. /*
  602. .issues {
  603. height:auto;
  604. }
  605. .issues img{display:block;}
  606. .issues .tet3{display:none;}
  607. .tet3{display:block; z-index:999999;
  608. display:none; }
  609. */
  610. {/block:TagPage}
  611.  
  612. #albumart{
  613. z-index:2;
  614.  
  615. width:120px;
  616. float:left;border-radius:100%;
  617. height:120px;
  618.  
  619. border:1px solid {color:border};
  620.  
  621. }
  622.  
  623. .playerbox {
  624. float:left;
  625. padding:6px;
  626. }
  627.  
  628.  
  629. #albumart img{
  630.  
  631. width:120px;
  632. height:120px;
  633. float:left;border-radius:100%;
  634.  
  635.  
  636.  
  637. border-width:0px; transition:.6s;
  638.  
  639. }
  640.  
  641. .playerbox:hover #albumart img{
  642. transition:0.6s;
  643. transform:rotate(300deg); }
  644.  
  645. .player {
  646. width:20px;
  647. overflow:hidden;
  648. height:40px;
  649. transform:scale(1.2);
  650. border-radius:100%;
  651.  
  652. top:8px;
  653. bottom:10px;
  654. left:4px;
  655.  
  656. padding:8px;
  657. padding-top:6px;
  658. padding-left:10px;
  659. padding-bottom:0px;
  660. border-radius:100%;
  661. position:absolute;
  662.  
  663.  
  664. }
  665.  
  666.  
  667. .playercon {
  668. width:56px;
  669. height:56px;
  670. border-radius:100%;
  671. left:0px;
  672. background:white;
  673. top:30px;
  674. position:relative;
  675. border:1px solid {color:border};
  676. -webkit-transition-duration:500ms;
  677. -moz-transition-duration:500ms;
  678. -o-transition-duration:500ms;
  679. -ms-transition-duration:500ms;
  680. }
  681.  
  682. .infobox {
  683. float:left top;
  684. margin-left:90px;
  685. background-color:transparent;
  686. padding:14px;
  687. padding-left:2px;
  688. max-height:140px;
  689. text-align:center;
  690. color:{color:text};
  691. }
  692.  
  693. .track {
  694.  
  695. letter-spacing:2px;
  696. padding:8px 10px;
  697. margin-left:-14px;
  698. font-size:1em;
  699. border-bottom:1px solid {color:border};
  700. font-weight:300;
  701. text-transform:uppercase; transition:.6s;
  702. color:#333;
  703.  
  704.  
  705. }
  706. .artist {
  707. letter-spacing:2px;
  708. padding:2px;
  709. font-style:italic;
  710.  
  711.  
  712.  
  713. }
  714.  
  715.  
  716. .album {
  717. font-size:.9em;
  718.  
  719. }
  720.  
  721. .playcount {
  722. font-size:.8em;
  723.  
  724. text-transform:uppercase;
  725. letter-spacing:3px;
  726. }
  727.  
  728.  
  729. #audiolo {
  730. width:500px;
  731.  
  732.  
  733. }
  734.  
  735.  
  736. .clear {
  737. clear: both;
  738. height: 0px;
  739. overflow: hidden;
  740. }
  741.  
  742. .clear {
  743. margin:0px auto;
  744. height: 0px;
  745. overflow: hidden;
  746. }
  747.  
  748. .search {
  749.  
  750.  
  751. }
  752.  
  753. .search-scope {
  754. font-size: .8em;
  755. text-align: center;
  756. }
  757.  
  758.  
  759. #search {
  760.  
  761. }
  762.  
  763. #search form .query {
  764. border: none;
  765. border:1px solid transparent;
  766. outline: none;
  767. width: 100px;
  768. overflow:hidden;
  769. color:{color:navigation links};
  770. padding:2px;
  771. font-size:1em;
  772. border-radius:2px;
  773.  
  774. background:transparent;
  775. }
  776.  
  777.  
  778.  
  779. #search:hover form .query{
  780. width:120px;
  781. transition:.6s;
  782. border:1px solid {color:border};
  783. background:{color:info background};
  784.  
  785. }
  786.  
  787. ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  788. color: {AccentColor};
  789. }
  790. ::-moz-placeholder { /* Firefox 19+ */
  791. color: {AccentColor};
  792. }
  793. :-ms-input-placeholder { /* IE 10+ */
  794. color: {AccentColor};
  795. }
  796. :-moz-placeholder { /* Firefox 18- */
  797. color: {AccentColor};
  798. }
  799.  
  800.  
  801. #egg { opacity:.8;right:10px; bottom:10px; position:fixed;bottom:4px;display:block; width: 14px; height: 18px; background-color:#FFFEFC; -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  802. font-family: "bitxmap";
  803. border:1px solid #444; z-index:4;
  804.  
  805. }
  806. #egg:hover { animation-name: egg;
  807. animation-duration: 1s;
  808. animation-iteration-count: infinite;}
  809. @keyframes egg{
  810. 0%{}
  811. 10%{transform:rotate(20deg)}
  812. 80%{transform:rotate(-20deg)}
  813. 100%{}
  814. }
  815.  
  816. @media only screen and (max-width: 500px) {
  817.  
  818. .leftboxes {
  819. display:none;
  820. }
  821.  
  822. #container {
  823. width:auto;
  824. height:auto;
  825. width:100%; position:relative; margin:50px auto; max-height:auto; overflow:auto;
  826. }
  827.  
  828.  
  829. body {
  830. font-size:12px;
  831. overflow:auto;
  832. }
  833.  
  834. .menu li:first-child {
  835. display:none;
  836.  
  837. }
  838.  
  839.  
  840. #container {
  841. margin:0px auto;
  842. height:auto;
  843.  
  844. overflow:auto;
  845. }
  846. #banner {
  847. width:100%;
  848. }
  849.  
  850. #audiolo {
  851. width:250px;
  852. }
  853. #search {
  854. display:none;
  855. }
  856. .speechbubble {
  857. width:100px;
  858. }
  859. .rightboxes {
  860. display:none;
  861. }
  862.  
  863. .posts {
  864. width:250px;
  865. position:relative;
  866. }
  867. .posts iframe {
  868. max-width:100%;
  869. }
  870.  
  871. }
  872.  
  873. .inf{
  874. font-size:13.2px;
  875. font-family:consolas;
  876. position:absolute;
  877. padding:4px;
  878. width:98%;
  879. text-align:left;
  880. margin-top:10px;
  881. position:relative;
  882. opacity:0;
  883. text-align:right;
  884. float:right;
  885. transition:.6s;
  886. transform: translate3d(0,0,0);
  887. opacity:1;
  888. transition:.6s
  889.  
  890. }
  891.  
  892. .inf svg {
  893. width:16px;
  894.  
  895. height:16px;
  896.  
  897.  
  898. fill:#444;
  899.  
  900. }
  901.  
  902. .inf .like svg {
  903. width:16px;
  904. opacity:.4;
  905. margin-top:6px;
  906. height:16px;
  907. }
  908.  
  909. .inf .like { /* Make a parent element */
  910. position: absolute;
  911. right:0px;
  912.  
  913. }
  914.  
  915. .inf .like .like_button { /* Position like button above your custom one */
  916. position: absolute;
  917. top: 0;
  918. margin-top: 4px;
  919. margin-left:-2px;
  920. opacity: 0;
  921. }
  922. .inf .like .like_button.liked { /* Keep the functionality active */
  923. opacity: 1;
  924. }
  925.  
  926. .inf a{ color:#444; padding:5.2px; border-radius:8%; text-decoration:none;
  927.  
  928. opacity:.4;
  929. height:14px;
  930.  
  931.  
  932. transition: all .4s ease-in;
  933. }
  934.  
  935. .inf li {
  936. list-style:none;
  937. display:inline-block;
  938. padding:2px;
  939. border-radius:100%;
  940. border:1px solid #84d3ac;
  941. }
  942.  
  943. .inf a:hover{ transition:.4s ease-in-out; box-shadow:none; text-shadow:none;
  944. color:#ccc;
  945. opacity:.52;
  946. text-decoration:none;
  947. }
  948.  
  949. ol.notes {
  950. margin:auto;
  951. position:relative;
  952. width:500px;
  953. bottom:20px;
  954. animation-name: Up 4s;
  955. list-style:none;
  956. padding:none;
  957. animation-iteration-count:1;
  958. animation-fill-mode:forwards;
  959.  
  960. }
  961.  
  962. ol.notes li {
  963. border:1px solid {color:border};
  964. list-style:none;
  965. padding:10px;
  966. padding-left:none;
  967. width:100%;
  968. transform:translate(-30px, 0px);
  969. margin:10px 0px;
  970. background-color:{color:posts};
  971.  
  972. }
  973.  
  974. ol.notes img {
  975. margin:0px 10px 0px 0px;
  976. border-radius:4px;
  977. }
  978.  
  979.  
  980. ol.notes .like:before {
  981. background:#D95E40 url(http://static.tumblr.com/svdghan/hNCo953tc/like_bt.png);
  982. content:'';
  983. width:16px;
  984. height:16px;
  985. float:right;
  986. background-repeat:no-repeat;
  987. padding:1px;
  988. background-size:17px 18px;
  989. border-radius:100%;
  990.  
  991.  
  992. }
  993.  
  994. ol.notes .reblog:before {
  995. content:'';
  996. background-repeat:no-repeat;
  997. padding:1px;
  998. float:right;
  999. background:#56bc8a url(http://static.tumblr.com/svdghan/N3Ho953ts/reblog_white.png);
  1000. width:16px;
  1001. height:16px;
  1002. border-radius:100%;
  1003. background-size:17px 18px;
  1004. }
  1005.  
  1006. ol.notes .reblog.original_post:before {
  1007. background:{color:posts};
  1008. width:16px;
  1009. height:16px;
  1010. padding:1px;
  1011. float:right;
  1012. border:1px solid transparent;
  1013. content:'';
  1014. }
  1015. .jump_page {
  1016. padding: 4px 8px;
  1017. border:1px solid {color:border};
  1018. background:{color:posts};
  1019. color:{color:text};
  1020. font-size:1em;
  1021. text-decoration:none;
  1022. }
  1023.  
  1024. .current_page {
  1025. padding: 4px 8px;
  1026. border:1px solid {AccentColor};
  1027. background:{color:posts};
  1028. color:{color:text};
  1029. font-size:1em;
  1030. text-decoration:none;
  1031. }
  1032.  
  1033.  
  1034. #egg { opacity:1; right:20px; bottom:10px; position:fixed;
  1035. display:block; width: 14px; height: 18px; background-color:#FFFEFC; -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  1036. font-family: "bitxmap";
  1037. border:1px solid #aaa; z-index:4;
  1038.  
  1039. }
  1040. #egg:hover { animation-name: egg;
  1041. animation-duration: 1s;
  1042. animation-iteration-count: infinite;}
  1043. @keyframes egg{
  1044. 0%{}
  1045. 10%{transform:rotate(20deg)}
  1046. 80%{transform:rotate(-20deg)}
  1047. 100%{}
  1048. }
  1049.  
  1050.  
  1051. #pagination a {color:{AccentColor}}
  1052. #pagination {font-family:calibri; text-align:center; font-size:1em; margin-bottom:100px; }
  1053.  
  1054.  
  1055. .jump_page {
  1056. padding: 4px 6px;
  1057. border:1px solid #ddd;
  1058. margin:2px;
  1059. background:white;
  1060. text-decoration:none;
  1061. border-radius:4px;
  1062. }
  1063.  
  1064. .jump_page a {
  1065. border:none;
  1066.  
  1067. }
  1068.  
  1069. .current_page {
  1070. padding: 4px 6px;
  1071. border:1px solid {AccentColor};
  1072. background:{AccentColor};
  1073. opacity:.8;
  1074. color:white;
  1075. transition:.6s;
  1076. border-radius:4px;
  1077. margin:2px;
  1078. text-decoration:none;
  1079. }
  1080.  
  1081. .current_page:hover {
  1082. opacity:1;
  1083. transition:.6s;
  1084. }
  1085. {CustomCSS}
  1086.  
  1087. </style>
  1088. <body>
  1089.  
  1090.  
  1091. <div id="header">
  1092. <img src="{PortraitURl-128}">
  1093. <div class="menu">
  1094. <li><a href="/">{title}</a></li>
  1095.  
  1096. <li><a href="/">{lang:Home}</a></li>
  1097. <li> <a href="/ask">Ask</a></li>
  1098. <li> <a href="/archive">{lang:Archive}</a></li>
  1099. <li><div class="links_list">
  1100. <p class="links_head"><a title="click for links"><a>{lang:More}</a></p>
  1101. <div class="links_body">
  1102. <center>
  1103. <div style="text-align:left;">
  1104. {block:HasPages} {block:Pages}<li>
  1105. <a href="{URL}">{Label}</a></li><br>
  1106. {/block:Pages} {/block:HasPages}
  1107. <li><a href="{text:url1}">{text:link1}</a></li><br>
  1108. <li><a href="{text:url2}">{text:link2}</a></li><br>
  1109. <li><a href="{text:url3}">{text:link3}</a></li><br>
  1110. <li><a href="{text:url4}">{text:link4}</a></li><br>
  1111. </div>
  1112. </div>
  1113. <li> <div id="search">
  1114. <form action="/search" method="get" id="search-form">
  1115. <input type="hidden" name="t" value="{Name}" />
  1116. <input type="text" name="q" class="query" value="{SearchQuery}" placeholder="{lang:search}"/>
  1117.  
  1118. </form></div> </li>
  1119. </div>
  1120. </div>
  1121.  
  1122.  
  1123.  
  1124. <div id="container">
  1125.  
  1126. <div id="banner">
  1127. <img src="{image:banner}">
  1128.  
  1129. </div>
  1130. <div class="leftboxes">
  1131. <div class="box1"><div class="boxtitle">{lang:About}</div> <div class="boxcontent" > <div style="max-height:120px; overflow:auto;">{description}</div>
  1132.  
  1133. <div class="meter">
  1134. {block:ifhpbar}<a title="{name}'s hp"><div id="hpbar"><div id="hp"></div></div></a>{/block:ifhpbar}<center>{block:ifbattery}
  1135. <div id="battery"><center>
  1136. <i class="fa fa-battery-{select:battery percentage}"></i>
  1137. </center></div>
  1138. {/block:ifbattery}
  1139. {block:ifspoons}<a class="spoons" title="{text:current}/{text:maximum} Spoons" style="font-size: 26px; "></a>{/block:ifspoons}
  1140. {block:ifhearts}<a class="hearts" title="{text:current}/{text:maximum} hearts" style="font-size: 20px;"></a>{/block:ifhearts}
  1141.  
  1142. </div> </div></div>
  1143.  
  1144.  
  1145. <div class="box2"><div class="boxtitle">Updates</div> <div class="boxcontent">
  1146. <li>
  1147. <span class="updatename">{text:Update 1}</span> {text:Update 1 content} </li>
  1148. <li>
  1149. <span class="updatename">{text:Update 2}</span> {text:Update 2 content} </li>
  1150. <li>
  1151. <span class="updatename">{text:Update 3}</span> {text:Update 3 content} </li>
  1152. <li>
  1153. <span class="updatename">{text:Update 4}</span> {text:Update 4 content} </li>
  1154. </div></div>
  1155.  
  1156. <div class="box2"> <div class="boxtitle"> Schedule</div> <div class="boxcontent"> {text:schedule}</div>
  1157.  
  1158. </div>
  1159.  
  1160. </div>
  1161.  
  1162. <div class="rightboxes">
  1163. <div class="box4">
  1164. <div class="boxtitle">Twitter</div>
  1165. <div class="boxcontent"> {text:twitter feed}</div>
  1166. </div>
  1167.  
  1168. <div class="box5">
  1169. <div class="boxtitle">Instagram</div>
  1170. <div class="boxcontent"> {text:instagram feed}</div>
  1171. </div>
  1172.  
  1173. <div class="box6">
  1174. <div class="boxtitle">{text:box 6 title}</div>
  1175. <div class="boxcontent"> {text:credits}</div>
  1176. </div>
  1177. </div>
  1178. <a href="http://espoirthemes.tumblr.com" title="theme credit"><div id="egg"></div></a>
  1179.  
  1180. {block:Posts}<div class="posts {TagsAsClasses}">
  1181. <div class="tet" style="color:{color:post warning text}"><font style="color:{color:post warning text}">this post is tagged as {text:blacklist1}. to view it, go </font><a href="{permalink}">[here]</a></div>
  1182.  
  1183. <div class="tet2" style="color:{color:post warning text}"><font style="color:{color:post warning text}">this post is tagged as {text:blacklist2}. to view it, go </font><a href="{permalink}">[here]</a></div>
  1184.  
  1185. <div class="tet3" style="color:{color:post warning text}"><font style="color:{color:post warning text}">this post is tagged as issues. to view it, go </font><a href="{permalink}">[here]</a></div>
  1186.  
  1187. <!-- {block:NoRebloggedFrom}
  1188. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  1189. {/block:NoRebloggedFrom} -->
  1190. {block:ContentSource}
  1191. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  1192. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  1193. {/block:SourceLogo}
  1194. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  1195. {/block:ContentSource}
  1196. {block:Text}
  1197.  
  1198. {block:Title}
  1199. <h1><a href="{Permalink}">{Title}</a></h1>
  1200. {/block:Title}
  1201.  
  1202. <div class="caption">{Body}</div>
  1203.  
  1204. {/block:Text}{block:Photo}
  1205. <div class="im"> <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></div>
  1206.  
  1207. {block:Caption}
  1208. <div class="caption">{Caption}</div>
  1209. {/block:Caption}
  1210.  
  1211. {/block:Photo}{block:Panorama}
  1212.  
  1213. {LinkOpenTag}
  1214. <div class="im"> <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/></div>
  1215. {LinkCloseTag}{block:Caption}
  1216. <div class="caption">{Caption}</div>
  1217. {/block:Caption}
  1218.  
  1219. {/block:Panorama}{block:Photoset}
  1220.  
  1221. {Photoset}{block:Caption}
  1222. <div class="caption">{Caption}</div>
  1223. {/block:Caption}
  1224.  
  1225. {/block:Photoset}{block:Quote}
  1226.  
  1227. "{Quote}"
  1228.  
  1229. {block:Source}
  1230. <div class="source">{Source}</div>
  1231. {/block:Source}
  1232.  
  1233. {/block:Quote}{block:Link}
  1234.  
  1235. <a href="{URL}" class="link" {Target}>{Name}</a>
  1236.  
  1237. {block:Description}
  1238. <div class="description">{Description}</div>
  1239. {/block:Description}
  1240.  
  1241. {/block:Link}{block:Chat}
  1242.  
  1243. {block:Title}
  1244. <h3><a href="{Permalink}">{Title}</a></h3>
  1245. {/block:Title}
  1246.  
  1247.  
  1248. {block:Lines}
  1249.  
  1250. {block:Label}
  1251. <span class="label">{Label}</span>
  1252. {/block:Label}{Line}
  1253.  
  1254. {/block:Lines}
  1255.  
  1256. {/block:Chat}{block:Video}
  1257.  
  1258. {Video-500}{block:Caption}
  1259. <div class="caption">{Caption}</div>
  1260. {/block:Caption}
  1261.  
  1262. {/block:Video}
  1263.  
  1264. {block:Audio}
  1265. <div id="audiolo">
  1266. <div class="playerbox">
  1267. <div id="albumart"> {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  1268.  
  1269. <center><div class="playercon"><div class="player">{AudioPlayerWhite}</div></div></center></div>
  1270. <div class="infobox">
  1271. <div class="track"> {block:TrackName}
  1272. {TrackName}
  1273. {/block:TrackName} </div>
  1274.  
  1275.  
  1276. <div class="artist">
  1277. {block:Artist}{Artist}
  1278. {/block:Artist} </div>
  1279.  
  1280. <div class="album">
  1281. {block:Album}
  1282. {Album}
  1283. {/block:Album}
  1284. </div>
  1285.  
  1286. <div class="playcount">
  1287.  
  1288. {block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div>
  1289. </div></div> <br><br>
  1290.  
  1291. <div class="text" style="border-top:1px solid {color:border}">{caption}</div> <br>
  1292. {/block:Audio}
  1293.  
  1294.  
  1295.  
  1296. {block:Answer}
  1297.  
  1298. <br>
  1299. <div class="askerportrait"><img style="position:absolute; margin-left:10px" src="{AskerPortraitURL-40}" align="left" /></div><div class="speechbubble">{Asker} shouted: {Question}</div>
  1300. <br>
  1301. {block:Answerer}
  1302. <div class="askerportrait"><img style="position:absolute; margin-left:10px" src="{AnswererPortraitURL-40}" align="left" /></div><div class="speechbubble">{Answerer} shouted back: {Answer}</div>
  1303. {/block:Answerer} <br>
  1304. <div class="caption"> {replies}</div>
  1305.  
  1306.  
  1307.  
  1308. {/block:Answer}
  1309. {block:Date}
  1310. <div class="info">
  1311. <a href="{Permalink}">{ShortMonth} {DayofMonth} {Year} {block:Permalinkpage} at {12Hour}:{Minutes}{AMPM} {/block:Permalinkpage}</a>
  1312. <a href="{Permalink}">{NoteCount} {text:notes}</a>
  1313. </div> {/block:Date}
  1314. {block:HasTags}
  1315. <div class="tags"> {Block:Tags} <i class="fa fa-tags" style="color:{AccentColor}"></i> <a href="{TagURL}">#{Tag}</a> {/block:Tags}</div>
  1316. {/block:HasTags}
  1317.  
  1318. <div class="inf">
  1319.  
  1320.  
  1321.  
  1322. <div class="like">
  1323. <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  1324. width="369.486px" height="369.486px" viewBox="0 0 369.486 369.486" style="enable-background:new 0 0 369.486 369.486;"
  1325. xml:space="preserve">
  1326. <g>
  1327. <g>
  1328. <path d="M184.743,357.351c-3.478,0-6.798-1.449-9.164-3.998l-147.67-159.16c-0.038-0.041-0.076-0.082-0.113-0.123
  1329. C9.871,174.223,0,147.921,0,120.008c0-27.914,9.871-54.215,27.796-74.061l2.244-2.484c18.246-20.201,42.608-31.327,68.599-31.327
  1330. s50.354,11.126,68.601,31.328l17.503,19.38l17.503-19.379c18.246-20.202,42.608-31.328,68.6-31.328s50.354,11.126,68.601,31.329
  1331. l2.241,2.478c17.928,19.851,27.799,46.152,27.799,74.065s-9.872,54.215-27.796,74.061c-0.037,0.043-0.075,0.084-0.113,0.125
  1332. l-147.671,159.16C191.541,355.901,188.221,357.351,184.743,357.351z M46.295,177.252l138.448,149.219l138.448-149.22
  1333. c28.485-31.603,28.467-82.97-0.055-114.549l-2.239-2.478c-13.449-14.891-31.224-23.09-50.051-23.09
  1334. c-18.828,0-36.603,8.199-50.048,23.085L194.02,89.869c-2.369,2.624-5.74,4.121-9.275,4.121s-6.906-1.497-9.276-4.121
  1335. l-26.779-29.648c-13.446-14.887-31.22-23.086-50.048-23.086S62.039,45.333,48.594,60.22l-2.244,2.484
  1336. C17.828,94.283,17.809,145.65,46.295,177.252z"/>
  1337. </g>
  1338. </g>
  1339.  
  1340.  
  1341. </svg>
  1342.  
  1343. <div class="like_button" data-post-id="151995305900" data-blog-name="mimthemetest" id="like_button_151995305900"><iframe id="like_iframe_151995305900" src="http://assets.tumblr.com/assets/html/like_iframe.html?_v=662afb16c40c53f44feaf453f106a197#name=mimthemetest&amp;post_id=151995305900&amp;rk=TVdqWDlP&amp;root_id=137183028901" scrolling="no" width="18" height="18" frameborder="0" class="like_toggle" allowTransparency="true" name="like_iframe_151995305900"></iframe></div>
  1344. </div>
  1345.  
  1346.  
  1347. <a href="https://www.tumblr.com/reblog/151995305900/TVdqWDlP" style="right:30px; position:absolute">
  1348. <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  1349. viewBox="0 0 489.935 489.935" style="enable-background:new 0 0 489.935 489.935;" xml:space="preserve">
  1350. <g>
  1351. <path d="M278.235,33.267c-116.7,0-211.6,95-211.6,211.7v0.7l-41.9-63.1c-4.1-6.2-12.5-7.9-18.7-3.8c-6.2,4.1-7.9,12.5-3.8,18.7
  1352. l60.8,91.5c2.2,3.3,5.7,5.4,9.6,5.9c0.6,0.1,1.1,0.1,1.7,0.1c3.3,0,6.5-1.2,9-3.5l84.5-76.1c5.5-5,6-13.5,1-19.1
  1353. c-5-5.5-13.5-6-19.1-1l-56.1,50.7v-1c0-101.9,82.8-184.7,184.6-184.7s184.7,82.8,184.7,184.7s-82.8,184.7-184.6,184.7
  1354. c-49.3,0-95.7-19.2-130.5-54.1c-5.3-5.3-13.8-5.3-19.1,0c-5.3,5.3-5.3,13.8,0,19.1c40,40,93.1,62,149.6,62
  1355. c116.6,0,211.6-94.9,211.6-211.7S394.935,33.267,278.235,33.267z"/>
  1356. </g>
  1357.  
  1358. </svg>
  1359.  
  1360. </a>
  1361.  
  1362. </div>
  1363. </div><!--posts end-->{/block:Posts}
  1364. <center>
  1365. {block:PermalinkPagination}
  1366. {block:PreviousPost}
  1367. <a href="{PreviousPost}" class="jump_page">Previous Post</a>
  1368. {/block:PreviousPost}
  1369.  
  1370. {block:NextPost}
  1371. <a href="{NextPost}" class="jump_page">Next Post</a>
  1372. {/block:NextPost}
  1373. {/block:PermalinkPagination}</center> <br>
  1374. {block:PostNotes} {PostNotes-16} {/block:PostNotes}
  1375.  
  1376. {block:Pagination}
  1377. <div id="pagination">
  1378. {block:previousPage}<a href="{PreviousPage}" class="fa fa-chevron-left"></a>{/block:PreviousPage}
  1379.  
  1380. {block:JumpPagination length="5"}
  1381. {block:CurrentPage}
  1382. <span class="current_page">✘</span>
  1383. {/block:CurrentPage}
  1384.  
  1385. {block:JumpPage}
  1386. <a class="jump_page" href="{URL}">{PageNumber}</a>
  1387. {/block:JumpPage}
  1388. {/block:JumpPagination}
  1389.  
  1390. {block:NextPage}
  1391. <a href="{NextPage}" class="fa fa-chevron-right"></a>
  1392. {/block:NextPage}
  1393. </div>
  1394. {/block:Pagination}
  1395. </div><!--container end-->
  1396.  
  1397.  
  1398.  
  1399.  
  1400.  
  1401.  
  1402. </body>
  1403. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement