Advertisement
MystiqueAquanian

love yourself theme (w/ vmin gif sidebar)

Aug 7th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.92 KB | None | 0 0
  1. <!--
  2.  
  3. theme 01: love yourself by sugabloom.tumblr.com
  4. do not steal or claim as your own
  5. do not redistribute
  6. do not use as base
  7. you may edit this code, be sure to leave the credit intact
  8.  
  9. enjoy! :)
  10. if there are any issues do not hesitate to contact me.
  11.  
  12. -->
  13.  
  14. <!--
  15.  
  16. video resizing script by
  17. http://shythemes.tumblr.com/
  18.  
  19. -->
  20.  
  21. <!DOCTYPE html>
  22.  
  23. <head>
  24.  
  25. <title>{Title}</title>
  26.  
  27. <link rel="shortcut icon" href="{Favicon}">
  28. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  29. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  30.  
  31. <!--Default Variables-->
  32.  
  33. <meta name="color:background" content="#f8f8f8"/>
  34. <meta name="color:text" content="#2b2b2b"/>
  35. <meta name="color:link" content="#b6b6b6"/>
  36. <meta name="color:link hover" content="#00000"/>
  37. <meta name="color:sidebar" content="#949494"/>
  38. <meta name="color:blockquote" content="#dadada"/>
  39.  
  40. <meta name="image:sidebar" content=""/>
  41. <meta name="image:icon" content=""/>
  42.  
  43. <meta name="text:link 1 URL" content="" />
  44. <meta name="text:link 1" content="link" />
  45. <meta name="text:link 2 URL" content="" />
  46. <meta name="text:link 2" content="link" />
  47. <meta name="text:link 3 URL" content="" />
  48. <meta name="text:link 3" content="link" />
  49.  
  50. <!--CSS customization here. -->
  51.  
  52. <link href='https://fonts.googleapis.com/css?family=Karla' rel='stylesheet' type='text/css'>
  53.  
  54. <style type="text/css">
  55.  
  56. ::-webkit-scrollbar {
  57. width: 3px; /** width of total scrollbar **/
  58. background: transparent; /** background of scrollbar **/
  59. }
  60.  
  61. ::-webkit-scrollbar-thumb {
  62. background: transparent; /** color of the moving part of the scrollbar (thumb) **/
  63. }
  64.  
  65. ::selection {
  66. background: {color:sidebar};
  67. color: #fff;
  68. }
  69.  
  70. ::-moz-selection {
  71. background: {color:sidebar};
  72. color: #fff;
  73. }
  74.  
  75. ::-webkit-selection {
  76. background: {color:sidebar};
  77. color: #fff;
  78. }
  79.  
  80. #s-m-t-tooltip {
  81.  
  82. max-width:300px; /* maximum width */
  83.  
  84. background-color:{color:sidebar}; /* color background */
  85. font-size:9px; /* font size */
  86.  
  87. color:#fff; /* font color */
  88.  
  89. letter-spacing:1px; /* font spacing */
  90.  
  91. text-transform:uppercase; /* uppercase, lowercase, none */
  92.  
  93. padding:3px 4px 3px 4px; /* padding size */
  94.  
  95. margin:20px 0px 0px 20px; /* margin size */
  96.  
  97. z-index:999999999999999999999999999999999999;
  98.  
  99. border-radius: 2px; /* border radius */
  100.  
  101. }
  102.  
  103. /*basics*/
  104.  
  105. blockquote {
  106. padding-left:12px;
  107. border-left:1px solid {color:blockquote};
  108. margin-left:8px;
  109. }
  110.  
  111. ul {
  112. list-style:none;
  113. text-align:left;
  114. padding-left:0;
  115. }
  116.  
  117. li {
  118. position:relative;
  119. padding-left:30px;
  120. }
  121.  
  122. ul li:before {
  123. position:absolute;
  124. left:15px;
  125. vertical-align:baseline!important;
  126. content:'›';
  127. }
  128.  
  129. body {
  130. background:{color:background};
  131. color:{color:text};
  132. font-family:'Karla';
  133. font-size:11px;
  134. margin:0;
  135. text-align:justify;
  136. line-height:16px;
  137. }
  138.  
  139. a {
  140. color:{color:link};
  141. -moz-transition-duration:0.4s;
  142. -webkit-transition-duration:0.4s;
  143. -o-transition-duration:0.4s;
  144. text-decoration:none;
  145. }
  146.  
  147. a:hover {
  148. color:{color:link hover};
  149. -moz-transition-duration:0.4s;
  150. -webkit-transition-duration:0.4s;
  151. -o-transition-duration:0.4s;
  152. }
  153.  
  154. h1 {
  155. color: {color:sidebar};
  156. width: 200px;
  157. }
  158.  
  159. img {
  160. opacity:1;
  161. border:none;
  162. text-decoration:none;
  163. }
  164.  
  165. small {
  166. font-size:11px;
  167. }
  168.  
  169. big {
  170. font-size:11px;
  171. }
  172.  
  173. #title {font-size:12px;
  174. line-height:18px;
  175. margin-bottom:10px;
  176. font-weight:bold;
  177. text-transform:none;
  178. text-align:left;
  179. }
  180.  
  181. /*sidebar*/
  182.  
  183. #sidebar {
  184. text-align:left;
  185. position:fixed;
  186. margin-left:-300px;
  187. margin-top:95px;
  188. width:245px;
  189. background: #fff;
  190. border-radius: 8px;
  191. box-shadow:1px 0px 10px #f2f2f2;
  192. }
  193.  
  194. #sidebar img {
  195. width:245px;
  196. height: 150px;
  197. border-top-right-radius: 8px;
  198. border-top-left-radius: 8px;
  199. }
  200.  
  201. #icon {
  202. position:fixed;
  203. padding: 5px;
  204. margin-left:160px;
  205. margin-top:25px;
  206. border: 0px solid #ebebeb;
  207. width:45px;
  208. height: 45px;
  209.  
  210. }
  211.  
  212. #icon img {
  213. width:45px;
  214. height: 45px;
  215. }
  216.  
  217.  
  218.  
  219. #sidebarcon {
  220. padding: 10px;
  221. }
  222.  
  223. #links {
  224. font-size:10px;
  225. padding-top: 10px;
  226. }
  227.  
  228. #links a {
  229. -moz-transition-duration:0.4s;
  230. -webkit-transition-duration:0.4s;
  231. -o-transition-duration:0.4s;
  232. padding: 2px;
  233. text-transform: uppercase;
  234. text-align: center;
  235. color: {color:sidebar};
  236. }
  237.  
  238. #links a:hover {
  239. -moz-transition-duration:0.4s;
  240. -webkit-transition-duration:0.4s;
  241. -o-transition-duration:0.4s;
  242. color: {color:link hover};
  243. }
  244.  
  245. #description {
  246. margin-top:10px;
  247. text-align:justify;
  248. padding-top: 1px;
  249. padding-bottom: 10px;
  250. font-size: 10px;
  251. border-bottom: 1px solid #ebebeb;
  252. }
  253.  
  254. /*pagination*/
  255.  
  256. #pagination {
  257. text-transform:lowercase;
  258. text-align:center;
  259. font-size:13px;
  260. margin-bottom:120px;
  261. }
  262.  
  263. #pagination a {
  264. padding:0 3px;
  265. }
  266.  
  267. /*container*/
  268.  
  269. #con {
  270. left:50%;
  271. margin-left:-140px;
  272. position:absolute;
  273. }
  274.  
  275. /*posts*/
  276.  
  277. #entries {
  278. margin-top:95px;
  279. width:350px;
  280. }
  281.  
  282. #posts {
  283. width:450px;
  284. {block:IndexPage}
  285. margin-bottom:80px;
  286. {/block:IndexPage}
  287. {block:PermalinkPage}
  288. margin-bottom:50px;
  289. {/block:PermalinkPage}
  290. background: white;
  291. border-radius: 8px;
  292. box-shadow:1px 0px 10px #f2f2f2;
  293. padding: 20px;
  294. }
  295.  
  296. #posts img {
  297. max-width:350px;
  298. }
  299.  
  300. #posts img, #posts li, #posts blockquote {
  301. max-width: 100%;
  302. }
  303.  
  304. .caption {
  305. width:100%;
  306. margin-top:13px;
  307. margin-bottom:12px;
  308. padding-left: 10px;
  309. }
  310.  
  311. a.tumblr_blog {
  312. -moz-transition-duration:0.4s;
  313. -webkit-transition-duration:0.4s;
  314. -o-transition-duration:0.4s;
  315. }
  316.  
  317. /*quote*/
  318.  
  319. #titlequote {
  320. text-align:left;
  321. font-size:12px;
  322. line-height:17px;
  323. font-weight:bold;
  324. }
  325.  
  326. #source {
  327. margin-top:0px;
  328. margin-bottom:11px;
  329. margin-left:0px;
  330. }
  331.  
  332. /*asks*/
  333.  
  334. .q {
  335. line-height:17px;
  336. font-size:11px;
  337. }
  338.  
  339. .as {
  340. font-weight:normal;
  341. }
  342.  
  343. .a {
  344. margin-top:13px;
  345. }
  346.  
  347. /*chat*/
  348.  
  349. .chat ol {
  350. padding:0;
  351. list-style:none;
  352. }
  353.  
  354. .line {
  355. padding:0px 0;
  356. }
  357.  
  358. .label {
  359. font-weight:bold;
  360. }
  361.  
  362. /*permalink and notes*/
  363.  
  364. #permalink {
  365. font-size:10px;
  366. text-align:left;
  367. margin-top:10px;
  368. text-transform:lowercase;
  369. border-top: 1px solid #ebebeb;
  370. padding: 10px;
  371. width: 370px;
  372. margin-left: -20px;
  373. height: 10px;
  374. padding-bottom: 20px;
  375. }
  376.  
  377. #permalink a {
  378. margin-right:0px;
  379. }
  380.  
  381. #date {
  382. font-size:10px;
  383. margin-top:10px;
  384. text-transform:lowercase;
  385. padding: 10px;
  386. width: 370px;
  387. height: 10px;
  388. text-transform: uppercase;
  389. -moz-transition-duration:0.4s;
  390. -webkit-transition-duration:0.4s;
  391. -o-transition-duration:0.4s;
  392. text-transform: uppercase;
  393. text-align: left;
  394. color: {color:sidebar};
  395. }
  396.  
  397. #date a {
  398. margin-right:0px;
  399. color: {color:sidebar};
  400. font-weight: normal;
  401. }
  402.  
  403. #date a:hover {
  404. -moz-transition-duration:0.4s;
  405. -webkit-transition-duration:0.4s;
  406. -o-transition-duration:0.4s;
  407. margin-right:0px;
  408. color:{color:link hover};
  409. }
  410.  
  411. .tags {
  412. font-size:9px;
  413. text-transform:none;
  414. font-weight:normal;
  415. height: 20px;
  416. overflow-x: hidden;
  417. overflow-y: auto;
  418. }
  419.  
  420. .pagenotes {
  421. {block:IndexPage}
  422. display: none!important;
  423. {/block:IndexPage}
  424. width:500px;
  425. text-align:left;
  426. }
  427.  
  428. .pagenotes img {
  429. display:none!important;
  430. }
  431.  
  432. .pagenotes li {
  433. list-style-type:none;
  434. padding:2px 0px;
  435. text-align:left;
  436. margin:0 0 0 -40px;
  437. }
  438.  
  439. /*search bar*/
  440.  
  441. .sfm input {background-color: #f5f5f5;
  442. font-size: 8px;
  443. border: 0px;
  444. text-transform: uppercase;
  445. margin-top: 0px;
  446. color: #999;
  447. letter-spacing: 1px;
  448. padding: 4px 8px;
  449. font-family: calibri, helvetica, arial;}
  450.  
  451. iframe.tmblr-iframe {
  452. opacity:0;
  453. display:none!important;}
  454.  
  455. /*controlsr*/
  456.  
  457. .ccontrols {
  458. position:fixed;
  459. top:0;
  460. right:0;
  461. z-index:9999999999999;
  462. margin:4px;}
  463.  
  464. .ccontrols a {
  465. display:block;
  466. float:left;
  467. margin:4px!important;
  468. width:13px;
  469. height:13px;
  470. background:#f8f8f8;/* change this to change the background of the links */
  471. padding:5px;}
  472.  
  473. .ccontrols a svg {
  474. width:13px;
  475. height:13px;}
  476.  
  477. .ccontrols a svg path {
  478. fill:#888888;/* change this to change the color of the links */
  479. transition:all 0.6s ease-in-out;
  480. -webkit-transition:all 0.6s ease-in-out;
  481. -o-transition:all 0.6s ease-in-out;
  482. -moz-transition:all 0.6s ease-in-out;
  483. -ms-transition:all 0.6s ease-in-out;}
  484.  
  485. .ccontrols a:hover svg path {
  486. fill:#cccccc;/* change this to change the color of the links on hover*/
  487. transition:all 0.6s ease-in-out;
  488. -webkit-transition:all 0.6s ease-in-out;
  489. -o-transition:all 0.6s ease-in-out;
  490. -moz-transition:all 0.6s ease-in-out;
  491. -ms-transition:all 0.6s ease-in-out;}
  492.  
  493. {block:PermalinkPage}a.like, a.like .like_button {
  494. position:relative;}
  495.  
  496. a.like .like_button iframe {
  497. position:absolute;
  498. top:10;
  499. left:0;
  500. bottom:0;
  501. right:0;
  502. z-index:2;
  503. opacity:0;}
  504.  
  505. a.like .liked + svg path {
  506. fill:red!important;}{/block:PermalinkPage}
  507.  
  508. {CustomCSS}
  509.  
  510. svg {
  511. width:10px;
  512. height:auto;
  513. opacity:.5;
  514. padding:1px;
  515. display:block;
  516. overflow:visible;
  517. }
  518. .controls a {
  519. position:relative;
  520. display:inline-block;
  521. overflow:hidden;
  522. padding:5px;
  523. width:12px;
  524. height:12px;
  525. }
  526. .controls .reblog {
  527. opacity:.93;
  528. }
  529. .controls .reblog svg {
  530. width:9px;
  531. margin-top:1px;
  532. }
  533. .controls .like .liked + svg {
  534. opacity:1;
  535. }
  536. .controls .like .liked + svg path {
  537. fill:#ec5a5a;
  538. }
  539. .controls .like .like_button {
  540. position:relative;
  541. }
  542. .controls .like .like_button iframe {
  543. position:absolute;
  544. top:0;
  545. left:0;
  546. bottom:0;
  547. right:0;
  548. z-index:2;
  549. opacity:0;
  550. }
  551.  
  552. /*credit - don't edit or remove this*/
  553.  
  554. #credit {
  555. position:fixed;
  556. font-size:8px;
  557. font-weight:normal;
  558. line-height:150%;
  559. right:10px;
  560. bottom:10px;
  561. text-transform:uppercase;
  562. text-align: center;
  563.  
  564. }
  565.  
  566. #credit a {
  567. padding:3px;
  568. color:{color:link};
  569. -moz-transition-duration:0.5s;
  570. -webkit-transition-duration:0.5s;
  571. -o-transition-duration:0.5s;
  572. }
  573.  
  574. </style>
  575.  
  576. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  577. <script src ="//static.tumblr.com/fwgzvyf/l6jnyutne/shythemes.vr.js"></script>
  578.  
  579. <!-- start of script tooltip -->
  580. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  581.  
  582. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  583.  
  584. <script>
  585.  
  586. (function($){
  587.  
  588. $(document).ready(function(){
  589.  
  590. $("a[title]").style_my_tooltips({
  591.  
  592. tip_follows_cursor:true,
  593.  
  594. tip_delay_time:90,
  595.  
  596. tip_fade_speed:600,
  597.  
  598. attribute:"title"
  599.  
  600. });
  601.  
  602. });
  603.  
  604. })(jQuery);
  605.  
  606. </script>
  607.  
  608. <!-- end of script tooltip -->
  609.  
  610. </head>
  611.  
  612. <body>
  613.  
  614.  
  615. <div id="con">
  616.  
  617. <div id="sidebar">
  618. <div id="sidebar img"><img src="{image:sidebar}"></div>
  619. <div id="icon"><img src="{image:icon}"></div>
  620.  
  621. <div id="sidebarcon"></a><p><h1>{Title}</h1><form action="/search" method="get" class="sfm">
  622. <input type="text" name="q" value="{SearchQuery}" id="sf"/>
  623. <input type="submit" value="Search" id="sb"/>
  624. </form><div id="description">{Description}</div>
  625.  
  626. <div id="links">
  627. <a href="/"><b>01</b></a> home&nbsp;&nbsp;<br>
  628. <a href="/ask"><b>02</b></a> contact&nbsp;&nbsp;<br>
  629. <a href="/tags"><b>03</b></a> navigation&nbsp;&nbsp;<br>
  630. <a href="/ask"><b>04</b></a> contact&nbsp;&nbsp;<br>
  631. <a href="/ask"><b>05</b></a> contact&nbsp;&nbsp;<br>
  632.  
  633.  
  634. </div>
  635.  
  636. </div>
  637. </div>
  638.  
  639. <div id="entries">
  640.  
  641. {block:Posts}
  642.  
  643. <div id="date"><a href="{Permalink}"<b>{ShortMonth} {DayOfMonthWithSuffix}</b></a><div style="float:right;">{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div></div>
  644.  
  645. <div id="posts">
  646.  
  647. {block:Quote}
  648. <div id="titlequote"><i class="fa fa-quote-left"></i>&nbsp; {Quote} &nbsp;<i class="fa fa-quote-right"></i></div>
  649. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  650. {/block:Quote}
  651.  
  652. {block:Text}
  653. {block:Title}
  654. <div id="title">{Title}</div>{/block:Title}
  655. {Body}
  656. {/block:Text}
  657.  
  658. {block:link}
  659. <div id="title"><a href="{URL}"><i class="fa fa-link"></i>&nbsp; {Name}</a></div>
  660. {block:Description}{Description}{/block:Description}
  661. {/block:link}
  662.  
  663. {block:Chat}
  664. {block:Title}
  665. <div id="title">{Title}</div>{/block:Title}
  666. {/block:Text}
  667. {block:lines}
  668. {block:label}
  669. <br><b>{label}</b>
  670. {/block:label}
  671. {line}
  672. {/block:lines}
  673. {/block:Chat}
  674.  
  675. {block:Photo}
  676. {linkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{linkCloseTag}
  677. {/block:Photo}
  678.  
  679. {block:Photoset}
  680. {Photoset}
  681. {/block:Photoset}
  682.  
  683. <div class="video">{Video-500}</div>
  684.  
  685. {block:Audio}
  686. {block:AudioEmbed}{AudioEmbed-500}{/block:AudioEmbed}
  687. {/block:Audio}
  688.  
  689. {block:Answer}
  690. <div class="q">
  691. <div class="as"> <b><big>{Asker} said:</big></b>
  692. {Question}</div></div>
  693. <div class="a">{Answer}</div>
  694. {/block:Answer}
  695.  
  696. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  697.  
  698. <!-- {block:ContentSource} {SourceURL} {/block:ContentSource} {block:RebloggedFrom} {ReblogRootURL} {ReblogParentURL} {/block:RebloggedFrom} -->
  699.  
  700. {block:Date}
  701. <div id="permalink">
  702. <a href="{Permalink}"><b>
  703. {block:NoteCount}<a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<div style="float:right;"><div class="controls">
  704. <a title="reblog" href="{ReblogURL}" target="_blank" class="reblog">
  705. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 361.095 361.095" style="enable-background:new 0 0 361.095 361.095;" xml:space="preserve"><g><g><path d="M182.595,325.678c-63.183,0-120.133-42.217-138.267-102.567c-2.833-9.067-12.183-14.167-21.25-11.333 c-9.067,2.833-14.167,12.183-11.333,21.25c22.95,75.933,91.517,126.65,170.85,126.65c98.317,0,178.5-80.183,178.5-178.5 s-80.183-178.5-178.5-178.5c-55.817,0-108.233,26.633-141.667,69.7l-7.083-56.1c-1.133-9.35-9.633-15.867-18.983-14.733 C5.511,2.678-1.005,11.178,0.128,20.528l13.317,103.7c1.133,8.5,8.5,14.733,16.717,14.733c0.567,0,1.417,0,1.983,0l102.567-11.617 c9.35-1.133,16.15-9.35,15.017-18.7s-9.35-16.15-18.7-15.017l-68.85,7.65c26.633-39.95,71.683-64.6,120.417-64.6 c79.617,0,144.5,64.883,144.5,144.5S262.211,325.678,182.595,325.678z"/></g></g></svg>
  706. </a>
  707. <a title="like" href="#" class="like">{LikeButton}
  708. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 442.403 442.403" style="enable-background:new 0 0 442.403 442.403;" xml:space="preserve"><g><g><path d="M213.05,422.652c2.833,1.7,5.95,2.833,9.35,2.833c3.117,0,6.517-0.85,9.35-2.833c7.65-5.1,187.283-123.533,207.683-243.95 c10.483-62.333-8.783-100.867-26.633-122.117c-20.967-24.933-52.133-39.667-83.017-39.667c-10.2,0-20.117,1.7-28.9,5.1 c-43.067,16.15-72.25,44.767-88.117,64.317c-15.583-19.267-42.217-47.033-74.517-58.083c-9.917-3.4-20.683-5.1-32.017-5.1 c-28.9,0-56.383,11.9-75.367,32.867c-16.717,18.417-35.7,53.55-29.75,114.75C13.016,291.185,204.833,417.268,213.05,422.652z M56.083,78.685c17.283-18.983,38.817-21.817,50.15-21.817c7.367,0,14.45,1.133,20.967,3.4 c39.383,13.317,70.833,63.467,71.4,63.75c3.117,5.1,8.783,8.217,14.733,7.933c5.95,0,11.333-3.4,14.45-8.5 c0.283-0.567,28.617-48.733,85.283-69.983c4.817-1.7,10.767-2.833,16.717-2.833c20.967,0,42.217,10.483,56.95,27.767 c19.267,22.667,25.783,55.533,18.983,94.633c-7.367,43.067-42.5,94.633-101.717,149.317c-33.433,30.883-66.3,54.683-81.6,65.45 c-16.15-11.05-51-36.55-86.417-68.85C74.216,262.285,39.366,209.868,35.116,167.368C31.433,128.552,38.516,97.952,56.083,78.685z"/></g></g></svg>
  709. </a>
  710. </div> </div>
  711.  
  712. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>&nbsp;&nbsp;{/block:Tags}</div>{/block:HasTags}
  713.  
  714. </div>
  715.  
  716. {/block:Date}
  717.  
  718. </div>
  719.  
  720.  
  721.  
  722. {block:PostNotes}
  723. <div class="pagenotes">
  724. {PostNotes}
  725. </div>
  726. {/block:PostNotes}
  727.  
  728. {/block:Posts}
  729.  
  730. <div id="pagination">
  731. {block:Pagination}
  732. {block:PreviousPage}
  733. <a href="{PreviousPage}">previous page</a>
  734. {/block:PreviousPage}
  735.  
  736.  
  737. {block:NextPage}
  738. <a href="{NextPage}">next page</a>
  739. {/block:NextPage}
  740. {/block:Pagination}
  741. </div>
  742.  
  743. </div>
  744.  
  745. </div>
  746.  
  747. <div class="ccontrols">
  748. {block:PermalinkPage}{block:Posts}{block:Date}<a href="#"class="like" title="like">{LikeButton}<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M148,37.8c-3.9,0-7.5,0.6-10.8,1.9c-15.1,5.7-24.6,17.8-29.8,26.7c-6-8.6-16.1-20.5-27.6-24.4c-3.8-1.3-8.1-2-12.3-2c-10.7,0-20.3,4.1-27,11.5c-5.7,6.2-12,18-10,38.8c4.1,42.6,71.5,87.1,74.3,88.9c1,0.7,2.1,1,3.3,1c1.1,0,2.3-0.3,3.3-1c2.7-1.8,66.5-43.6,73.7-86.1c3.7-21.8-2.7-34.9-8.8-42.1C169.2,42.7,158.6,37.8,148,37.8z M173.1,91c-2.6,15.2-15.1,33.4-36.1,52.7c-11.9,10.9-23.5,19.4-29,23.2c-5.7-4-17.9-12.9-30.3-24.3C56,122.5,43.8,104,42.3,89c-1.3-13,1.1-23.2,6.9-29.6c6-6.6,13.9-7.6,18.1-7.6c3,0,5.9,0.5,8.5,1.3c11.4,3.9,23.3,21.7,26.9,28.3c1.1,2.1,3.4,3.3,5.7,3.1c2.4-0.2,4.4-1.7,5.2-4c0.1-0.2,8.2-22.4,27.7-29.7c1.9-0.7,4.2-1.1,6.6-1.1c7.2,0,14.3,3.3,19,9C173.3,66.2,175.5,77.4,173.1,91z"/></svg></a>
  749. <a href="{ReblogURL}" title="reblog"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M36.7,39.9c-0.4-3.3,1.9-6.3,5.2-6.7c3.3-0.4,6.3,1.9,6.7,5.2l3.6,27.9c13.6-20.2,36.6-32.7,61.4-32.7c31.6,0,59.7,20.1,70,49.9c1.1,3.1-0.6,6.5-3.7,7.6c-0.6,0.2-1.3,0.3-2,0.3c-2.5,0-4.8-1.6-5.7-4c-8.6-25-32.2-41.8-58.6-41.8c-21.6,0-41.7,11.4-52.9,29.6l30-3.4c3.3-0.4,6.3,2,6.6,5.3s-2,6.3-5.3,6.6l-43.2,4.9c-0.2,0-0.5,0-0.7,0c-3,0-5.6-2.2-5.9-5.2L36.7,39.9z M185.3,120.2l-43.2,4.9c-3.3,0.4-5.7,3.3-5.3,6.6s3.3,5.7,6.6,5.3l26.1-2.9c-10.2,21.5-31.9,35.4-56,35.4c-27.1,0-51.5-18.1-59.3-44c-1-3.2-4.3-5-7.5-4c-3.2,1-5,4.3-4,7.5c4.5,14.9,13.9,28.3,26.3,37.7c12.9,9.7,28.3,14.9,44.5,14.9c29.6,0,56.1-17.6,67.8-44.3l4.2,33.3c0.4,3,3,5.2,5.9,5.2c0.3,0,0.5,0,0.8,0c3.3-0.4,5.6-3.4,5.2-6.7l-5.6-43.5C191.5,122.2,188.6,119.9,185.3,120.2z"/></svg></a>
  750. <a href="{EmbedUrl}" target="_blank" title="embed"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M140.7,27H72c-3.3,0-6,2.7-6,6v26H40c-3.3,0-6,2.7-6,6v122c0,3.3,2.7,6,6,6h101c3.3,0,6-2.7,6-6v-27h25c3.3,0,6-2.7,6-6V64.5c0-1.6-0.6-3.1-1.7-4.2L145,28.8C143.9,27.6,142.3,27,140.7,27z M135,181H46V71h20v83c0,3.3,2.7,6,6,6h63V181z M78,148V39h52v34c0,3.3,2.7,6,6,6h30v69H78z M166,67h-24V42.8L166,67L166,67z"/></svg></a>
  751. {/block:Date}{/block:Posts}{/block:PermalinkPage}<a href="https://tumblr.com/follow/{Name}" title="follow"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M129.5,38h-43c-3.6,0-6.5,2.9-6.5,6.5V81H43.5c-3.6,0-6.5,2.9-6.5,6.5v42c0,3.6,2.9,6.5,6.5,6.5H80v36.5c0,3.6,2.9,6.5,6.5,6.5h43c3.6,0,6.5-2.9,6.5-6.5V136h35.5c3.6,0,6.5-2.9,6.5-6.5v-42c0-3.6-2.9-6.5-6.5-6.5H136V44.5C136,40.9,133.1,38,129.5,38z M165,94v29h-35.5c-3.6,0-6.5,2.9-6.5,6.5V166H93v-36.5c0-3.6-2.9-6.5-6.5-6.5H50V94h36.5c3.6,0,6.5-2.9,6.5-6.5V51h30v36.5c0,3.6,2.9,6.5,6.5,6.5H165z"/></svg></a>
  752. <a href="https://www.tumblr.com/message/{Name}" target="_blank" title="message"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M190.3,118.1c0-22.4-19.7-41.9-47.2-47c-2.6-24.7-28.9-44.3-60.9-44.3c-33.7,0-61.1,21.6-61.1,48.2c0,13.5,7,26.1,19.3,35.2l-4.1,23c-0.4,2.3,0.5,4.6,2.4,5.9c1,0.8,2.3,1.1,3.5,1.1c1,0,2-0.2,2.8-0.7l24-12.9c5.2,22.5,30.2,39.6,60.1,39.6c2.1,0,4.2-0.1,6.3-0.3l30.9,16.6c0.9,0.5,1.9,0.7,2.8,0.7c1.2,0,2.5-0.4,3.5-1.1c1.9-1.3,2.8-3.6,2.4-5.9l-4.1-23C183.4,144.3,190.3,131.6,190.3,118.1zM50.2,102.5c-10.9-6.9-17.1-16.9-17.1-27.4c0-20,22-36.2,49.1-36.2s49.1,16.2,49.1,36.2s-22,36.2-49.1,36.2c-2.2,0-4.6-0.1-6.9-0.4c-1.2-0.1-2.4,0.1-3.5,0.7l-21.6,11.6l2.6-14.6C53.3,106.2,52.3,103.8,50.2,102.5zM161.2,145.5c-2,1.3-3.1,3.7-2.7,6.1l2.6,14.6l-21.6-11.6c-1.1-0.6-2.3-0.8-3.5-0.7c-2.3,0.2-4.7,0.4-6.9,0.4c-24.7,0-45.2-13.5-48.6-31c0.5,0,1.1,0,1.6,0c30.2,0,55.3-17.4,60.2-40.1c21,4.3,35.9,18.7,35.9,34.9C178.3,128.6,172.1,138.6,161.2,145.5z"/></svg></a>
  753. <a href="https://tumblr.com/dashboard" target="_blank" title="dashboard"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M197.8,112.4l-86.2-82c-2.4-2.2-6.1-2.2-8.4,0.1l-82.5,82.3c-1.7,1.7-2.2,4.3-1.3,6.5c0.9,2.2,3.1,3.7,5.5,3.7h23v56c0,3.3,2.7,6,6,6h35c3.3,0,6-2.7,6-6v-44h25v44c0,3.3,2.7,6,6,6h36c3.3,0,6-2.7,6-6v-56h26c0,0,0,0,0,0c3.3,0,6-2.7,6-6C200,115.1,199.2,113.5,197.8,112.4zM162,111c-3.3,0-6,2.7-6,6v56h-24v-44c0-3.3-2.7-6-6-6H89c-3.3,0-6,2.7-6,6v44H60v-56c0-3.3-2.7-6-6-6H39.5l68.1-67.9L179,111H162z"/></svg></a></div>
  754.  
  755. <div id="credit"><a title="theme by sugabloom" href="http://sugabloom.tumblr.com/">SB codes</a></div>
  756. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement