Advertisement
enbythemes

all in one

Aug 12th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>{TITLE}</title>
  6. <link rel="shortcut icon" href="{Favicon}" />
  7. <link rel="alternate" type="application/rss+sml" href="{RSS}" />
  8. <link href="//dl.dropbox.com/s/vpi3f9s7nhpe7v7/honeybee.css" rel="stylesheet">
  9.  
  10. <style>
  11.  
  12. * {
  13. padding: 0px;
  14. margin: 0px;
  15. }
  16. /*SCROLLBAR*/
  17. /* width */
  18. ::-webkit-scrollbar {
  19. width: 2px;
  20. }
  21.  
  22. /* Track */
  23. ::-webkit-scrollbar-track {
  24. box-shadow: inset 0 0 5px grey;
  25. border-radius: 10px;
  26. }
  27.  
  28. /* Handle */
  29. ::-webkit-scrollbar-thumb {
  30. background: #594d89;
  31. border-radius: 10px;
  32. }
  33.  
  34.  
  35.  
  36. body {
  37. background: #f7f7f7;
  38. font-family: arial;
  39. font-size: 10px;
  40. }
  41.  
  42. b {
  43. color: #594d89;
  44. }
  45.  
  46. a {
  47. color: #594d89;
  48. text-decoration: none;
  49. -moz-transition-duration: 0.5s;
  50. -o-transition-duration: 0.5s;
  51. -webkit-transition-duration: 0.5s;
  52. transition-duration: 0.5s;
  53. }
  54.  
  55. a:hover {
  56. text-decoration: underline;
  57. color: #8D83B5;
  58. -moz-transition-duration: 0.5s;
  59. -o-transition-duration: 0.5s;
  60. -webkit-transition-duration: 0.5s;
  61. transition-duration: 0.5s;
  62. }
  63.  
  64. img {
  65. opacity: 1.0;
  66. -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  67. filter: grayscale(0%);
  68. -moz-transition-duration: 0.5s;
  69. -o-transition-duration: 0.5s;
  70. -webkit-transition-duration: 0.5s;
  71. transition-duration: 0.5s;
  72. }
  73.  
  74. img:hover {
  75. opacity: 0.7;
  76. -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  77. filter: grayscale(30%);
  78. -moz-transition-duration: 0.5s;
  79. -o-transition-duration: 0.5s;
  80. -webkit-transition-duration: 0.5s;
  81. transition-duration: 0.5s;
  82. }
  83.  
  84.  
  85. header {
  86. width: 100%;
  87. height: 130px;
  88. background-color: #f2f2f2;
  89. position: fixed;
  90. }
  91.  
  92. header .pic {
  93. width: 48px;
  94. height: 48px;
  95. margin-top: 20px;
  96. margin-left: auto;
  97. margin-right: auto;
  98. border-radius: 50px;
  99. overflow: hidden;
  100. }
  101.  
  102. header .pic img {
  103. border-radius: 50px;
  104. }
  105.  
  106. header nav {
  107. margin-top: 7px;
  108. margin-left: auto;
  109. margin-right: auto;
  110. float: center;
  111. }
  112.  
  113. header nav .links a:hover {
  114. text-decoration: none;
  115. }
  116.  
  117. header nav .links {
  118. text-align: center;
  119. word-spacing: 10px;
  120. }
  121.  
  122. header nav ul {
  123. display: block;
  124. float: center;
  125. line-height: 20px;
  126. }
  127.  
  128. header nav ul li {
  129. list-style: none;
  130. display: block;
  131. float: center;
  132. }
  133.  
  134. main {
  135. width: 850px;
  136. height: 450px;
  137. margin-left: auto;
  138. margin-right: auto;
  139. }
  140.  
  141. main .about {
  142. width: 350px;
  143. height: 60px;
  144. margin-top: 55px;
  145. margin-left: 30px;
  146. background-color: #fff;
  147. padding: 8px;
  148. border: 1px solid #ada7c3;
  149. border-radius: 2px;
  150. line-height: 14px;
  151. overflow-y: auto;
  152. }
  153.  
  154. main .about .info {
  155. width: 100px
  156. height: 15px;
  157. background-color: #e3e3e3;
  158. float: left;
  159. }
  160.  
  161. main .about .content {
  162. width: 180px;
  163. float: right;
  164. text-align: justify;
  165. padding: 0px 5px;
  166. margin-top: -52px;
  167. }
  168.  
  169. main .tags {
  170. width: 350px;
  171. height: 15px;
  172. margin-top: 25px;
  173. margin-left: 30px;
  174. background-color: #fff;
  175. padding: 8px;
  176. border: 1px solid #ada7c3;
  177. border-radius: 2px;
  178. text-align: center;
  179. }
  180.  
  181. main .tags ul {
  182. display: block;
  183. margin: 0px auto;
  184. width: fit-content;
  185. }
  186.  
  187. main .tags ul li {
  188. display: inline-block;
  189. float: left;
  190. list-style: none;
  191. padding: 0px 8px;
  192. text-align: center;
  193. }
  194.  
  195. main .posts {
  196. width: 347px;
  197. height: 130px;
  198. margin-top: 25px;
  199. margin-left: 30px;
  200. background-color: #fff;
  201. padding: 10px;
  202. border: 1px solid #ada7c3;
  203. border-radius: 2px;
  204. text-align: center;
  205. word-spacing: 13px;
  206. line-height: 30px;
  207. }
  208.  
  209. main .posts .postpic {
  210. width: 100px;
  211. height: 56px;
  212. background: #f0f0;
  213. border: 1px solid #a092d3;
  214. margin-top: 5px;
  215. margin-bottom: 0px;
  216. margin-left: 5px;
  217. text-align: center;
  218. }
  219.  
  220. main .posts img {
  221. width: 100px;
  222. height: 56px;
  223. border: 1px solid #ada7c3;
  224. object-fit: cover;
  225. }
  226.  
  227. /* main .posts .postpic2 {
  228. width: 100px;
  229. height: 56px;
  230. background: #f0f0;
  231. border: 1px solid #a092d3;
  232. margin-top: -58px;
  233. margin-bottom: -121px;
  234. margin-left: 123px;
  235. overflow: hidden;
  236. }
  237.  
  238. main .posts .postpic2 img {
  239. max-height: 56px;
  240. }
  241.  
  242. main .posts .postpic3 {
  243. width: 100px;
  244. height: 56px;
  245. background: #f0f0;
  246. border: 1px solid #a092d3;
  247. margin-top: 63px;
  248. margin-bottom: -58px;
  249. margin-left: 240px;
  250. overflow: hidden;
  251. }
  252.  
  253. main .posts .postpic3 img {
  254. max-width: 100px;
  255. } */
  256.  
  257. main .icons {
  258. width: 347px;
  259. height: 70px;
  260. margin-top: 25px;
  261. margin-left: 30px;
  262. background-color: #fff;
  263. padding: 10px;
  264. border: 1px solid #ada7c3;
  265. border-radius: 2px;
  266. text-align: center;
  267. word-spacing: 20px;
  268. }
  269.  
  270. main .icons img {
  271. width: 65px;
  272. height: 65px;
  273. border: 1px solid #ada7c3;
  274. overflow: auto;
  275. }
  276.  
  277. main .faq {
  278. width: 350px;
  279. height: 105px;
  280. background: #fff;
  281. padding: 7px;
  282. margin-top: -430px;
  283. float: right;
  284. margin-right: 30px;
  285. margin-bottom: -70px;
  286. border: 1px solid #ada7c3;
  287. border-radius: 2px;
  288. line-height: 15px;
  289. }
  290.  
  291. main .ask {
  292. width: 350px;
  293. height: auto;
  294. background: #f1f1f1;
  295. padding: 7px;
  296. float: right;
  297. margin-right: 30px;
  298. border: 1px solid #ada7c3;
  299.  
  300. }
  301.  
  302. main .question {
  303. width: 330px;
  304. height: auto;
  305. padding: 5px 10px;
  306. background-color: #beb1f1;
  307. margin: 4px auto;
  308. }
  309.  
  310. main .answer {
  311. width: 330px;
  312. height: auto;
  313. padding: 5px 10px;
  314. background-color: #c9c9c9;
  315. margin: 4px auto;
  316. }
  317.  
  318. main .ask {
  319. margin-top: -270px;
  320. border-radius: 2px;
  321. }
  322.  
  323.  
  324. /* custom controls by cyanists */
  325.  
  326. .updates { width:110px; /* this will change the width of the entire tab */ font-size:10px; /* changing this will scale all of the text */ } .ut, .updates .text { border-color:#f0f0f0; /* border colour of the boxes */ background:#ffffff; /* background colour of the boxes */ } .updates .text { padding:10px; /* padding around the updates tab text */ } iframe.tmblr-iframe { opacity:0; display:none!important;} .ccontrols { position:fixed; top:0; right:0; z-index:9999999999999; margin:4px;} .ccontrols a { display:block; float:left; margin:4px!important; width:13px; height:13px; background:#f8f8f8;/* change this to change the background of the links */ padding:5px; } .ccontrols a svg { width:13px; height:13px;} .ccontrols a svg path { fill:#888888;/* change this to change the color of the links */ transition:all 0.6s ease-in-out; -webkit-transition:all 0.6s ease-in-out; -o-transition:all 0.6s ease-in-out; -moz-transition:all 0.6s ease-in-out; -ms-transition:all 0.6s ease-in-out;} .ccontrols a:hover svg path { fill:#cccccc;/* change this to change the color of the links on hover*/ transition:all 0.6s ease-in-out; -webkit-transition:all 0.6s ease-in-out; -o-transition:all 0.6s ease-in-out; -moz-transition:all 0.6s ease-in-out; -ms-transition:all 0.6s ease-in-out;} a.like .like_button iframe { position:absolute; top:0; left:0; bottom:0; right:0; z-index:2; opacity:0.0000001; width:100%; height:100%;} a.like .liked + svg path { fill:red!important;} iframe.tmblr-iframe {
  327. opacity:0;
  328. display:none!important;}
  329.  
  330. .ccontrols {
  331. position:fixed;
  332. top:0;
  333. right:0;
  334. z-index:9999999999999;
  335. margin:4px;}
  336.  
  337. .ccontrols a {
  338. display:block;
  339. float:left;
  340. margin:4px!important;
  341. width:13px;
  342. height:13px;
  343. background:#f8f8f8;/* change this to change the background of the links */
  344. padding:5px;
  345. line-height:1!important;}
  346.  
  347. .ccontrols a svg {
  348. width:13px;
  349. height:13px;}
  350.  
  351. .ccontrols a svg path {
  352. fill:#888888;/* change this to change the color of the links */
  353. transition:all 0.6s ease-in-out;
  354. -webkit-transition:all 0.6s ease-in-out;
  355. -o-transition:all 0.6s ease-in-out;
  356. -moz-transition:all 0.6s ease-in-out;
  357. -ms-transition:all 0.6s ease-in-out;}
  358.  
  359. .ccontrols a:hover svg path {
  360. fill:#cccccc;/* change this to change the color of the links on hover*/
  361. transition:all 0.6s ease-in-out;
  362. -webkit-transition:all 0.6s ease-in-out;
  363. -o-transition:all 0.6s ease-in-out;
  364. -moz-transition:all 0.6s ease-in-out;
  365. -ms-transition:all 0.6s ease-in-out;}
  366.  
  367. {block:PermalinkPage}a.clike {
  368. position:relative;
  369. display:inline-block;}
  370.  
  371. a.clike .like_button {
  372. position:relative!important;}
  373.  
  374. a.clike .like_button iframe {
  375. position:absolute!important;
  376. top:0!important;
  377. left:0!important;
  378. z-index:2!important;
  379. opacity:0.0000001!important;
  380. width:100%!important;
  381. height:100%!important;}
  382.  
  383. a.clike .liked + svg path {
  384. fill:red!important;}{/block:PermalinkPage}
  385. </style>
  386.  
  387. <body>
  388.  
  389. <header>
  390. <div class="pic"><img src="{PortraitURL-48}"></div>
  391.  
  392. <nav>
  393. <div class="links">
  394. <ul>
  395. <li><a href="/" data-toggle="tooltip" title="home"><span class="th th-reload-arrow"></a>
  396. <a href="/msg" data-toggle="tooltip" title="contact"><span class="th th-compass-2-o"></a> </p></li>
  397. <li><a href="https://tumblr.com/dashbard" data-toggle="tooltip" title="dashboard"><span class="th th-house-1-o"></a>
  398. <a href="https://xchelspaige.tumblr.com" data-toggle="tooltip" title="theme"><span class="th th-settings-5-o"></a></li>
  399. </ul>
  400. </div>
  401. </nav>
  402. <main>
  403. <div class="about">
  404.  
  405. <div class="infor">
  406. <b>name:</b> rou </p>
  407. <b>age: </b> 19 </p>
  408. <b>pronouns: </b>they/them. </p>
  409. <b>location: </b> usa
  410. </div>
  411.  
  412. <div class="content">
  413. <p>This is a Aaron Dingle blog only. I will not be posting or engaging in any kind of discourse/fandom "wars".
  414. <b>Rude people will be blocked.</b></p>
  415. </div>
  416.  
  417. </div>
  418. <div class="tags">
  419. <ul>
  420. <li><a href="/">gifs</a></li>
  421. <li><a href="/tagged/*graphic">graphics</a></li>
  422. <li><a href="/">icons</a></li>
  423. <li><a href="/tagged/*colors">colors</a></li>
  424. <li><a href="/tagged/*cp">color palette meme</a></li>
  425. </ul>
  426. </div>
  427.  
  428. <div class="posts">
  429.  
  430. <a href="https://aarrondiingle.tumblr.com/post/176553307702/fluffy-scruffy-and-forearms-happy-birthday"><img src="https://78.media.tumblr.com/9d6cdbd591ea32b058c155e892f38cca/tumblr_pb7vqwOkWz1xxs7clo3_400.gif"> </a>
  431.  
  432. <a href="https://aarrondiingle.tumblr.com/post/175878968604/gayy"><img src="https://78.media.tumblr.com/f0208a84e60feba7b7053b58988ac761/tumblr_pbk7vy7Uas1xxs7clo1_r1_400.gif"> </a>
  433.  
  434. <a href="https://aarrondiingle.tumblr.com/post/175845531490"><img src="https://78.media.tumblr.com/fc7ba7882ccc719c2c21b35b64779804/tumblr_pbkekqkw6R1xxs7clo1_400.gif"> </a>
  435.  
  436. <a href="https://aarrondiingle.tumblr.com/post/175809878743/favorite-character-meme-four-scenes-%C2%BC"><img src="https://78.media.tumblr.com/0cd881f3f7db80bec2ddd57d6fbabb59/tumblr_pbgoyoN8Cu1xxs7clo5_r1_540.gif"> </a>
  437.  
  438. <a href="https://aarrondiingle.tumblr.com/post/175709342060"><img src="https://78.media.tumblr.com/5d9ffb1d2e73933c3e55b676d43c682a/tumblr_pbkxhz67tl1xxs7clo1_540.gif"> </a>
  439.  
  440. <a href="https://aarrondiingle.tumblr.com/post/175705514186/aaron-bubblegum-rainbow-for-aarondingel"><img src="https://78.media.tumblr.com/053c90c7233eab3bb73319ea74447ad6/tumblr_pbkk477RVc1xxs7clo2_400.gif"> </a>
  441. </div>
  442. </div>
  443.  
  444.  
  445. <div class="icons">
  446. <a href="https://aarrondiingle.tumblr.com/post/176053373483/aaron-black"><img src="https://78.media.tumblr.com/0956aa8f0262718c7766370cfca16212/tumblr_pc3j276EtC1xxs7clo6_r1_250.jpg"> </a>
  447.  
  448. <a href="https://aarrondiingle.tumblr.com/post/175912619437/aaron-yellow"><img src="https://78.media.tumblr.com/131f95833a27ef5afa4ef042a838070b/tumblr_pbw3c1udjw1xxs7clo5_250.jpg"> </a>
  449.  
  450. <a href="https://aarrondiingle.tumblr.com/post/175571846071/aaron-orange"><img src="https://78.media.tumblr.com/1f4399b936d780a5f6619fec394c6aff/tumblr_pbb3doTziv1xxs7clo6_250.jpg"> </a>
  451.  
  452. <a href="https://aarrondiingle.tumblr.com/post/175303586111/aaron-pink"><img src="https://78.media.tumblr.com/5433abbdc578cfa33474dfaccdad33e2/tumblr_pay8kbgO9c1xxs7clo5_250.jpg"> </a>
  453. </div>
  454.  
  455. <div class="faq">
  456. <div class="question">
  457. I will not answer any question (pro or anti) about robron, robert, seb, rebecca, ext.
  458. </div>
  459. <div class="answer">
  460. I will gladly take requests provided they apply with the rules above.
  461. </div>
  462. <div class="question">
  463. tag me in stuff
  464. </div>
  465. </div>
  466.  
  467. <div class="ask">
  468. <p><iframe frameborder="0" scrolling="no" width="100%" height="190" src="http://www.tumblr.com/ask_form/aarrondiingle.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  469. </div>
  470.  
  471. </main>
  472.  
  473. </header>
  474.  
  475.  
  476. <div class="ccontrols">
  477. {block:PermalinkPage}{block:Posts}{block:Date}<a href="#" class="clike" 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>
  478. <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>
  479. <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>
  480. {/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>
  481. <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>
  482. <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>
  483. </body>
  484.  
  485.  
  486. </head>
  487. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement