Advertisement
teruteru

Strawberry Trapper -【 THEME 57 by Anomaly ☽】

Nov 6th, 2017
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. THEME #57 by Anomaly ☾ tumblr user linoone ☽ : STRAWBERRY TRAPPER !!
  8.  
  9. - i made the base code
  10. - bouncing animation obtained from theappguruz.com
  11. - hover animation is from hovercss
  12. - icon font is fontawesome
  13. - please abide by all the rules
  14.  
  15. 【 All themes and pages can be found here : http://linoone.tumblr.com/thm 】
  16.  
  17. Thank you for using! Or just looking at the code. Whatever you're here for. Either way, it's appreciated!
  18. Feel free to message me if you need any help, my ask box is always open!
  19.  
  20. -->
  21.  
  22. <script src="http://assets.tumblr.com/assets/scripts/tumblelog_post_message_queue.js?_v=ae06d1ab69efc6f29297bf2b7a4160af"></script>
  23. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
  24. <script src="http://static.tumblr.com/wgijwsy/Ebfm2v4gy/jquery.masonry.min.js"></script>
  25. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  26.  
  27. <script>
  28. (function($){
  29. $(document).ready(function(){
  30. $("a[title]").style_my_tooltips({
  31. tip_follows_cursor:true,
  32. tip_delay_time:90,
  33. tip_fade_speed:600,
  34. attribute:"title"
  35. });
  36. });
  37. })(jQuery);
  38. </script>
  39.  
  40. <script> function changeNavigation(id)
  41. {document.getElementById('content')
  42. .innerHTML=document.getElementById(id).innerHTML}
  43. </script>
  44.  
  45. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
  46.  
  47. <title>{Title}</title>
  48.  
  49. <link rel="shortcut icon" href="{image:favicon}">
  50. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  51. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  52.  
  53. <!--default variables-->
  54.  
  55. <meta name="color:background" content="">
  56. <meta name="color:posts" content="">
  57. <meta name="color:blockquote" content="">
  58. <meta name="color:ask" content="">
  59. <meta name="color:text" content="">
  60. <meta name="color:link" content="">
  61. <meta name="color:hover" content="">
  62. <meta name="color:bars" content="">
  63. <meta name="color:title shadow" content="">
  64. <meta name="color:selection" content="">
  65. <meta name="color:selection text" content="">
  66. <meta name="color:tooltip" content="">
  67. <meta name="color:tooltip text" content="">
  68. <meta name="color:scrollbar" content="">
  69.  
  70. <meta name="image:favicon" content="">
  71. <meta name="image:background" content="">
  72. <meta name="image:cursor" content="">
  73. <meta name="image:sidebar" content="">
  74. <meta name="image:render" content="">
  75.  
  76. <meta name="text:title" content="">
  77. <meta name="text:ask text" content="asked">
  78. <meta name="text:link 1" content="">
  79. <meta name="text:link 1 title" content="">
  80. <meta name="text:link 1 icon" content="">
  81. <meta name="text:link 2" content="">
  82. <meta name="text:link 2 title" content="">
  83. <meta name="text:link 2 icon" content="">
  84. <meta name="text:link 3" content="">
  85. <meta name="text:link 3 title" content="">
  86. <meta name="text:link 3 icon" content="">
  87. <meta name="text:link 4" content="">
  88. <meta name="text:link 4 title" content="">
  89. <meta name="text:link 4 icon" content="">
  90. <meta name="text:link 5" content="">
  91. <meta name="text:link 5 title" content="">
  92. <meta name="text:link 5 icon" content="">
  93. <meta name="text:back title" content="">
  94. <meta name="text:next title" content="">
  95.  
  96. <meta name="text:title font" content="">
  97. <meta name="text:font" content="">
  98. <meta name="text:font size" content="">
  99. <meta name="text:secondary font" content="">
  100. <meta name="text:secondary font size" content="">
  101.  
  102. <meta name="if:title" content="">
  103. <meta name="if:bg cover" content="">
  104. <meta name="if:cursor" content="">
  105. <meta name="if:render" content="">
  106. <meta name="if: links" content="">
  107.  
  108. <meta name="text:render left" content="">
  109. <meta name="text:render bottom" content="">
  110. <meta name="text:render width" content="">
  111.  
  112. <style type="text/css">
  113.  
  114. .bounceInDown {
  115. -webkit-animation-name: bounceInDown;
  116. animation-name: bounceInDown;
  117. -webkit-animation-duration: 1s;
  118. animation-duration: 1s;
  119. -webkit-animation-fill-mode: both;
  120. animation-fill-mode: both;
  121. }
  122. @-webkit-keyframes bounceInDown {
  123. 0%, 60%, 75%, 90%, 100% {
  124. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  125. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  126. }
  127.  
  128. 0% {
  129. opacity: 0;
  130. -webkit-transform: translate3d(0, -3000px, 0);
  131. transform: translate3d(0, -3000px, 0);
  132. }
  133.  
  134. 60% {
  135. opacity: 1;
  136. -webkit-transform: translate3d(0, 25px, 0);
  137. transform: translate3d(0, 25px, 0);
  138. }
  139.  
  140. 75% {
  141. -webkit-transform: translate3d(0, -10px, 0);
  142. transform: translate3d(0, -10px, 0);
  143. }
  144.  
  145. 90% {
  146. -webkit-transform: translate3d(0, 5px, 0);
  147. transform: translate3d(0, 5px, 0);
  148. }
  149.  
  150. 100% {
  151. -webkit-transform: none;
  152. transform: none;
  153. }
  154. }
  155.  
  156. @keyframes bounceInDown {
  157. 0%, 60%, 75%, 90%, 100% {
  158. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  159. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  160. }
  161.  
  162. 0% {
  163. opacity: 0;
  164. -webkit-transform: translate3d(0, -3000px, 0);
  165. transform: translate3d(0, -3000px, 0);
  166. }
  167.  
  168. 60% {
  169. opacity: 1;
  170. -webkit-transform: translate3d(0, 25px, 0);
  171. transform: translate3d(0, 25px, 0);
  172. }
  173.  
  174. 75% {
  175. -webkit-transform: translate3d(0, -10px, 0);
  176. transform: translate3d(0, -10px, 0);
  177. }
  178.  
  179. 90% {
  180. -webkit-transform: translate3d(0, 5px, 0);
  181. transform: translate3d(0, 5px, 0);
  182. }
  183.  
  184. 100% {
  185. -webkit-transform: none;
  186. transform: none;
  187. }
  188. }
  189.  
  190. @-webkit-keyframes hvr-push {
  191. 50% {
  192. -webkit-transform: scale(0.8);
  193. transform: scale(0.8);
  194. }
  195. 100% {
  196. -webkit-transform: scale(1);
  197. transform: scale(1);
  198. }
  199. }
  200. @keyframes hvr-push {
  201. 50% {
  202. -webkit-transform: scale(0.8);
  203. transform: scale(0.8);
  204. }
  205. 100% {
  206. -webkit-transform: scale(1);
  207. transform: scale(1);
  208. }
  209. }
  210.  
  211. ::-webkit-scrollbar {
  212. width: 9px;
  213. height: 4px;
  214. background:{color:scrollbar};
  215. border:4px solid {color:bars};
  216. }
  217.  
  218. ::-webkit-scrollbar-thumb {
  219. background-color:{color:scrollbar};
  220. border-radius:5px;
  221. }
  222.  
  223. #s-m-t-tooltip {
  224. max-width:300px;
  225. margin:10px 0px 0px 10px;
  226. background-color:{color:tooltip};
  227. font-family:{text:secondary font};
  228. font-size:{text:secondary font size}px;
  229. padding:3px;
  230. color:{color:tooltip text};
  231. z-index:999999999999999999999999999999999999;
  232. }
  233.  
  234. #s-m-t-tooltip:after {
  235. position: absolute;
  236. display: block; content: "";
  237. border-color: transparent {color:tooltip} transparent transparent ;
  238. border-style: solid;
  239. border-width: 5px;
  240. height:0;
  241. width:0;
  242. position:absolute;
  243. top:3px;
  244. left:-10px;
  245. }
  246.  
  247. ::selection {
  248. background: {color:selection};
  249. color: {color:selection text};
  250. }
  251.  
  252. ::-moz-selection {
  253. background: {color:selection};
  254. color: {color:selection text};
  255. }
  256.  
  257. ::-webkit-selection {
  258. background: {color:selection};
  259. color: {color:selection text};
  260. }
  261.  
  262. {block:ifcursor}body, a, a:hover {cursor: url('{image:cursor}'), progress;}{/block:ifcursor}
  263.  
  264. body {
  265. margin:0px;
  266. background:{color:background};
  267. background-image:url('{image:background}');
  268. background-attachment:fixed;
  269. {block:ifbgcover}
  270. background-repeat:no-repeat;
  271. background-size:cover;
  272. {/block:ifbgcover}
  273. color:{color:text};
  274. font-family:{text:font};
  275. font-size:{text:font size}px;
  276. }
  277.  
  278. a {
  279. color:{color:link};
  280. text-decoration:none;
  281. }
  282.  
  283. a:hover {
  284. color:{color:hover};
  285. -webkit-transition: all 0.7s ease;
  286. -moz-transition: all 0.7s ease;
  287. -o-transition: all 0.7s ease;
  288. transition: all 0.7s ease;
  289. }
  290.  
  291. blockquote {
  292. border-left:1px solid {color:blockquote};
  293. padding-left:10px;
  294. }
  295.  
  296. blockquote img {
  297. max-width:100%;
  298. height:auto;
  299. }
  300.  
  301. iframe, img, embed, object, video {
  302. }
  303.  
  304. img {
  305. max-width:auto;
  306. height:auto;
  307. }
  308.  
  309. #bar1 {
  310. position:fixed;
  311. top:0px;
  312. left:0px;
  313. width:475px;
  314. height:100%;
  315. background:{color:bars};
  316. }
  317.  
  318. #bar2 {
  319. position:fixed;
  320. top:0px;
  321. right:0px;
  322. width:10px;
  323. height:100%;
  324. background:{color:bars};
  325. }
  326.  
  327. #bar3 {
  328. position:fixed;
  329. top:0px;
  330. left:495px;
  331. width:15px;
  332. height:100%;
  333. background:{color:bars};
  334. }
  335.  
  336. #tit {
  337. position:fixed;
  338. bottom:400px;
  339. left:20px;
  340. width:300px;
  341. text-align:center;
  342. font-style:italic;
  343. font-family:{text:title font};
  344. font-size:48px;
  345. text-shadow:.1em .1em .1em {color:title shadow}, .1em .1em .1em {color:title shadow}, .1em .1em .1em {color:title shadow};
  346. z-index:2;
  347. }
  348.  
  349. #img {
  350. position:fixed;
  351. bottom:75px;
  352. left:20px;
  353. padding:5px;
  354. background:{color:posts};
  355. z-index:2;
  356. }
  357.  
  358. #sidebar {
  359. position:fixed;
  360. bottom:103px;
  361. left:185px;
  362. width:250px;
  363. padding:5px;
  364. background:{color:posts};
  365. max-height:275px;
  366. overflow-x:none;
  367. overflow-y:scroll;
  368. z-index:2;
  369. }
  370.  
  371. #sidebar::-webkit-scrollbar-vertical {
  372. width:7px;
  373. background:{color:scrollbar};
  374. border:3px solid {color:posts};
  375. }
  376.  
  377. #sidebar::-webkit-scrollbar-horizontal {
  378. width:7px;
  379. background:{color:scrollbar};
  380. border:3px solid {color:posts};
  381. }
  382.  
  383. #sidebar::-webkit-scrollbar {
  384. width:7px;
  385. background:{color:scrollbar};
  386. border:3px solid {color:posts};
  387. }
  388.  
  389. #links {
  390. position:fixed;
  391. bottom:125px;
  392. left:483px;
  393. z-index:2;
  394. }
  395.  
  396. #navi {
  397. position:fixed;
  398. left:185px;
  399. bottom:75px;
  400. z-index:2;
  401. }
  402.  
  403. a.nav {
  404. display:inline-block;
  405. width:57px;
  406. height:17px;
  407. line-height:17px;
  408. text-align:center;
  409. padding:2.8px;
  410. background:{color:posts};
  411. font-family:{text:secondary font};
  412. font-size:{text:secondary font size}px;
  413. z-index:2;
  414. }
  415.  
  416. a.link {
  417. display:inline-block;
  418. width:30px;
  419. height:30px;
  420. font-size:25px;
  421. text-align:center;
  422. padding:5px;
  423. background:{color:bars};
  424. border-radius:100%;
  425. }
  426.  
  427. .hvr-push {
  428. display: inline-block;
  429. vertical-align: middle;
  430. -webkit-transform: perspective(1px) translateZ(0);
  431. transform: perspective(1px) translateZ(0);
  432. box-shadow: 0 0 1px transparent;
  433. }
  434.  
  435. .hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  436. -webkit-animation-name: hvr-push;
  437. animation-name: hvr-push;
  438. -webkit-animation-duration: 0.3s;
  439. animation-duration: 0.3s;
  440. -webkit-animation-timing-function: linear;
  441. animation-timing-function: linear;
  442. -webkit-animation-iteration-count: 1;
  443. animation-iteration-count: 1;
  444. }
  445.  
  446. .h1 {
  447. text-align:center;
  448. font-size:calc({text:font size}px + 7px);
  449. text-transform:uppercase;
  450. }
  451.  
  452. .tabcon {
  453. float:left;
  454. position:relative;
  455. padding:10px;
  456. width:500px;
  457. background:{color:posts};
  458. outline:1px solid {color:background};
  459. outline-offset:-5px;
  460. margin-bottom:25px;
  461. -webkit-animation:bounceInDown 1s;
  462. -moz-animation:bounceInDown 1s;
  463. -ms-animation:bounceInDown 1s;
  464. -o-animation:bounceInDown 1s;
  465. animation:bounceInDown 1s;
  466. }
  467.  
  468. article {
  469. float:left;
  470. position:relative;
  471. padding:10px;
  472. width:500px;
  473. background:{color:posts};
  474. outline:1px solid {color:background};
  475. outline-offset:-5px;
  476. margin-bottom:25px;
  477. }
  478.  
  479. .title {
  480. font-weight:normal;
  481. font-size:calc({text:font size}px + 5px);
  482. margin:0 0 10px 0;
  483. text-align:center;
  484. }
  485.  
  486. .quote {
  487. font-weight:normal;
  488. font-size:calc({text:font size}px + 5px);
  489. font-style:italic;
  490. margin:0 0 10px 0;
  491. text-align:center;
  492. }
  493.  
  494. .quotesource {
  495. margin:0 0 10px 0;
  496. text-align:right;
  497. }
  498.  
  499. .bubble {
  500. align:right;
  501. background: {color:ask};
  502. margin:7px 0px 5px 66px;
  503. padding:10px;
  504. position: relative;
  505. -moz-border-radius:5px;
  506. -webkit-border-radius:5px;
  507. border-radius:5px;
  508. }
  509.  
  510. .bubble p {
  511. margin:1px 0px;
  512. }
  513.  
  514. .bubble span {
  515. position:absolute;
  516. width:1px;
  517. height:1px;
  518. font-size: 0;
  519. line-height: 1px;
  520. left:-10px;
  521. top:10px;
  522. border-top:7px solid transparent;
  523. border-bottom:7px solid transparent;
  524. border-right:10px solid {color:ask};
  525. }
  526.  
  527. .perma {
  528. text-align:right;
  529. font-family:{text:secondary font};
  530. font-size:{text:secondary font size}px;
  531. }
  532.  
  533. #pagi {
  534. width:500px;
  535. padding:10px;
  536. }
  537.  
  538. a.pagi {
  539. font-family:{text:title font};
  540. font-size:24px;
  541. text-shadow:.05em .05em .05em {color:bars}, .05em .05em .05em {color:bars}, .05em .05em .05em {color:bars};
  542. }
  543.  
  544. .credit {
  545. position:fixed;
  546. bottom:4px;
  547. left:8px;
  548. font: 9px consolas;
  549. text-transform:uppercase;
  550. letter-spacing: 0px;
  551. padding: 2px;
  552. }
  553.  
  554. </style>
  555. </head>
  556. <body>
  557.  
  558. <div id="bar1"></div>
  559. <div id="bar2"></div>
  560. <div id="bar3"></div>
  561.  
  562. <div id="tit">{text:title}</div>
  563.  
  564. <div id="img"><img style="width:150px; height:300px;" src="{image:sidebar}"></div>
  565.  
  566. <div id="sidebar">
  567. {Description}
  568. </div>
  569.  
  570. <div id="navi">
  571. <a class="nav hvr-push" href="/">home</a>
  572. <a class="nav hvr-push" onClick="changeNavigation('ask')">ask</a>
  573. <a class="nav hvr-push" onClick="changeNavigation('about')">about</a>
  574. <a class="nav hvr-push" onClick="changeNavigation('tag')">tags</a>
  575. </div>
  576.  
  577. <div id="bar3"></div>
  578.  
  579. {block:iflinks}
  580. <div id="links">
  581. <a class="link hvr-push" href="{text:link 1}" title="{text:link 1 title}"><i class="fa fa-{text:link 1 icon}"></i></a><p>
  582. <a class="link hvr-push" href="{text:link 2}" title="{text:link 2 title}"><i class="fa fa-{text:link 2 icon}"></i></a><p>
  583. <a class="link hvr-push" href="{text:link 3}" title="{text:link 3 title}"><i class="fa fa-{text:link 3 icon}"></i></a><p>
  584. <a class="link hvr-push" href="{text: link 4}" title="{text:link 4 title}"><i class="fa fa-{text:link 4 icon}"></i></a><p>
  585. <a class="link hvr-push" href="{text:link 5}" title="{text:link 5 title}"><i class="fa fa-{text:link 5 icon}"></i></a>
  586. </div>
  587. {/block:iflinks}
  588.  
  589. <table style="font-size:{text:font size}px; margin-left:575px;" width="500" align="left" border="0" cellspacing="5">
  590.  
  591.  
  592. <td valign="top" style="width:500px;">
  593. <div id="content">
  594.  
  595. {block:Posts}
  596. <article>
  597.  
  598. {block:Text}
  599. {block:Title}<div class="title">{Title}</div>{/block:Title}
  600. {Body}
  601. {/block:Text}
  602.  
  603. {block:Photo}
  604. <center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  605. {block:Caption}{Caption}{/block:Caption}
  606. {/block:Photo}
  607.  
  608. {block:Photoset}
  609. {Photoset-500}
  610. {block:Caption}{Caption}{/block:Caption}
  611. {/block:Photoset}
  612.  
  613. {block:Quote}
  614. <div class="quote">"{Quote}"</div>
  615. {block:Source}<div class="quotesource">{Source}</div>{/block:Source}
  616. {/block:Quote}
  617.  
  618. {block:Link}
  619. <div class="title"><a href="{URL}">{Name}</a></div>
  620. {block:Description}<div class="description">{Description}</div>{/block:Description}
  621. {/block:Link}
  622.  
  623. {block:Chat}
  624. {block:Title}<div class="title">{Title}</div>{/block:Title}
  625. {block:Lines}<div class="{Alt} user_{UserNumber}">{block:Label}<b>{Label}</b>{/block:Label}&nbsp;{Line}</div>{/block:Lines}
  626. {/block:Chat}
  627.  
  628. {block:Video}
  629. {Video-500}
  630. {block:Caption}{Caption}{/block:Caption}
  631. {/block:Video}
  632.  
  633. {block:Audio}
  634. {AudioPlayerWhite}
  635. {block:TrackName}{TrackName}<br>{/block:TrackName}
  636. {block:Artist}{Artist}<br>{/block:Artist}
  637. {block:Album}{Album}{/block:Album}
  638. {block:Caption}{Caption}{/block:Caption}
  639. {/block:Audio}
  640.  
  641. {block:Answer}
  642. <img src="{AskerPortraitURL-48}" align="left" style="border-radius:48px;">
  643. <div class="bubble"><span></span>{Asker} {text:ask text}: {Question}&nbsp;</div>
  644. <div class="answer">{Answer}</div>
  645. {/block:Answer}
  646.  
  647. {block:IndexPage}
  648. <div class="perma">
  649. <a href="{Permalink}">{TimeAgo}</a> • <a href="{Permalink}">{NoteCount}</a> • <a href="{ReblogURL}">reblog?</a>
  650. {block:HasTags}<br>{block:Tags}<a href="{TagURL}">#{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}
  651. </div>
  652. {block:IndexPage}
  653.  
  654. {block:PermalinkPage}
  655. <center>
  656. {block:Date}Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} at {12HourWithZero}:{Minutes}{CapitalAmPm}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}
  657. {block:RebloggedFrom}<br><a title="{ReblogParentName}" href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  658. {block:RebloggedFrom}• <a title="{ReblogRootName}" href="{ReblogRootURL}">source</a>{/block:RebloggedFrom}
  659. {block:HasTags}<br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags} {/block:HasTags}
  660. </center>
  661.  
  662. {block:PostNotes}{PostNotes}{/block:PostNotes}
  663. {/block:PermalinkPage}
  664.  
  665. </article>
  666.  
  667. {/block:Posts}
  668.  
  669. <div id="pagi">
  670. {block:PreviousPage}<a class="pagi hvr-push" style="float:left;" href="{PreviousPage}">{text:back title}</a>{/block:PreviousPage}
  671. {block:NextPage}<a class="pagi hvr-push" style="float:right;" href="{NextPage}">{text:next title}</a>{/block:NextPage}
  672. </div>
  673.  
  674. </div>
  675.  
  676.  
  677.  
  678. <div id="ask" style="display:none;">
  679. <div class="tabcon">
  680. <div class="h1">Message Me</div><p>
  681.  
  682.  
  683. <iframe frameborder="0" scrolling="no" width="100%" height="190" src="http://www.tumblr.com/ask_form/{Name}.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]-->
  684. <br><br>
  685. <iframe frameborder="0" scrolling="no" width="100%" height="300" src="http://www.tumblr.com/submit_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="submit_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]-->
  686.  
  687. </div>
  688. </div>
  689.  
  690. <div id="about" style="display:none;">
  691. <div class="tabcon">
  692. <div class="h1">About Me</div><p>
  693.  
  694. about here
  695.  
  696. </center><br>
  697.  
  698. </div>
  699. </div>
  700.  
  701. <div id="tag" style="display:none;">
  702. <div class="tabcon">
  703. <div class="h1">Tags</div><p>
  704.  
  705. tags here
  706.  
  707.  
  708. </div>
  709. </div>
  710.  
  711. </td></table></style>
  712.  
  713. {block:ifrender}<div style="position:fixed; left:{text:render left}px; bottom:{text:render bottom}px; z-index:1;"><img src="{image:render}" width="{text:render width}"></div>{/block:ifrender}
  714.  
  715. <div class="credit"><a href="http://linoone.tumblr.com/" title="theme"><img src="http://orig04.deviantart.net/151c/f/2015/334/6/e/tumblr_inline_mij52fv1gc1qz4rgp_by_kittystuff-d9il7w5.gif" /></a></div>
  716.  
  717. </body>
  718. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement