Advertisement
QueenOfGeckos

Code -6 tabs

Mar 23rd, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.09 KB | None | 0 0
  1. -----------<Javascript part Just delete this, it's the divider>-----------
  2.  
  3. $(document).ready(function(){
  4. $('.wrapper').slideDown('slow');
  5. $('#navButton').click(function(){
  6. $('.menu').slideToggle('slow');
  7. togglemenu();
  8. });
  9. });
  10.  
  11. function togglemenu() {
  12. var div = document.getElementById("navButton");
  13.  
  14. if (div.className == "closed") {open();}
  15. else{close();}
  16. }
  17.  
  18. function open() {
  19. document.getElementById("navButton").innerHTML="- Close - <div class=\"bar left\"></div><div class=\"bar top\"></div><div class=\"bar right\"></div><div class=\"bar bottom\"></div>";
  20. document.getElementById("navButton").className = "open";
  21. }
  22.  
  23. function close() {
  24. document.getElementById("navButton").innerHTML="- Menu - <div class=\"bar left\"></div><div class=\"bar top\"></div><div class=\"bar right\"></div><div class=\"bar bottom\"></div>";
  25. document.getElementById("navButton").className="closed";
  26. }
  27.  
  28. //gallery stuff
  29.  
  30. $(".galleryItem").mouseenter(function() {
  31. var thisoverlay = $(this).find('.galleryOverlay');
  32.  
  33. thisoverlay.stop(true, true).animate({
  34. height: '200',
  35. marginTop: '-230px'
  36. });
  37. });
  38.  
  39. $(".galleryItem").mouseleave(function() {
  40. var thisoverlay = $(this).find('.galleryOverlay');
  41.  
  42. thisoverlay.stop(true, true).animate({
  43. height: '20',
  44. marginTop: '-45px'
  45. });
  46. });
  47.  
  48. -----------<CSS-Just delete this, it's the divider>-----------
  49. @import url(https://fonts.googleapis.com/css?family=Audiowide);
  50. @import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700);
  51.  
  52. * {
  53. margin: 0;
  54. padding: 0;n
  55. }
  56.  
  57.  
  58.  
  59.  
  60. body {
  61. background-image: url("http://i.imgur.com/RGrbt5o.png");
  62. background-repeat: repeat;
  63. background-size: 100% 100%;
  64. background-position: bottom right;
  65. font-family: 'Audiowide', Helvetica;
  66. line-height: 26px;
  67. color:#563333;
  68. text-shadow: 0 0 0.4em #f47142;
  69. padding:15px;
  70. margin: 0;
  71.  
  72. }
  73.  
  74.  
  75. .bar{
  76. background: #f47142;
  77. box-shadow: 0px 0px 0 #f47142,
  78. 0px 0px 4px #f47142,
  79. 0px 0px 8px #f47142,
  80. 0px 0px 16px #FFF;
  81. border-radius: 4px;
  82. position: absolute;
  83. }
  84. .left{
  85. width: 2px;
  86. -webkit-animation: left 10s linear infinite;
  87. -moz-animation: left 10s linear infinite;
  88. }
  89. @-webkit-keyframes left{
  90. 0% {height: 0; top: 100%; left: 0;}
  91. 20% {height: 100%; top: 0; left: 0;}
  92. 40% {height: 0; top: 0; left: 0;}
  93. }
  94. @-moz-keyframes left{
  95. 0% {height: 0; top: 100%; left: 0;}
  96. 20% {height: 100%; top: 0; left: 0;}
  97. 40% {height: 0; top: 0; left: 0;}
  98. }
  99. .top{
  100. height: 2px;
  101. -webkit-animation: top 10s linear infinite;
  102. -moz-animation: top 10s linear infinite;
  103. }
  104. @-webkit-keyframes top{
  105. 0% {width: 0; top: 0; left: 0;}
  106. 20% {width: 0; top: 0; left: 0;}
  107. 40% {width: 100%; top: 0; left: 0;}
  108. 60% {width: 0; top:0; left: 100%;}
  109. }
  110. @-moz-keyframes top{
  111. 0% {width: 0; top: 0; left: 0;}
  112. 20% {width: 0; top: 0; left: 0;}
  113. 40% {width: 100%; top: 0; left: 0;}
  114. 60% {width: 0; top:0; left: 100%;}
  115. }
  116. .right{
  117. width: 2px;
  118. -webkit-animation: right 5s linear infinite;
  119. -moz-animation: right 5s linear infinite;
  120. }
  121. @-webkit-keyframes right{
  122. 0% {height: 0; top: 0; left: 100%;}
  123. 40% {height: 0; top: 0; left: 100%;}
  124. 60% {height: 100%; top: 0; left: 100%;}
  125. 80% {height: 0; top: 100%;left: 100%;}
  126. }
  127. @-moz-keyframes right{
  128. 0% {height: 0; top: 0; left: 100%;}
  129. 40% {height: 0; top: 0; left: 100%;}
  130. 60% {height: 100%; top: 0; left: 100%;}
  131. 80% {height: 0; top: 100%;left: 100%;}
  132. }
  133. .bottom{
  134. height: 2px;
  135. -webkit-animation: bottom 5s linear infinite;
  136. -moz-animation: bottom 5s linear infinite;
  137. }
  138. @-webkit-keyframes bottom{
  139. 0% {width: 0; top: 100%; left: 100%;}
  140. 60% {width: 0; top: 100%; left: 100%;}
  141. 80% {width: 100%; top:100%; left: 0px;}
  142. 100% {width: 0px; top:100%; left: 0px;}
  143. }
  144. @-moz-keyframes bottom{
  145. 0% {width: 0; top: 100%; left: 100%;}
  146. 60% {width: 0; top: 100%; left: 100%;}
  147. 80% {width: 100%; top:100%; left: 0px;}
  148. 100% {width: 0px; top:100%; left: 0px;}
  149. }
  150.  
  151. .cs{
  152. font-family: 'Audiowide', Helvetica;
  153. font-size: 3em;
  154. line-height: 26px;
  155. color:#f47142;
  156. text-shadow: 0 0 0.4em #f47142;
  157. padding-bottom:10px;
  158. padding-left:25px;
  159. margin-top:50px;
  160. margin-left:20%;
  161. margin-right: 20%;
  162. position:relative;
  163. z-index:4;
  164. border-bottom:3px dotted #E6E6E6;
  165. border-left:25px solid #E6E6E6;
  166. opacity:.9;
  167. //display:none;
  168. }
  169.  
  170. @-webkit-keyframes blink{
  171. 0% {border-left:25px solid #E6E6E6;}
  172. 50% {border-left:25px solid #222;}
  173. 100% {border-left:25px solid #E6E6E6;}
  174. }
  175. @-moz-keyframes blink{
  176. 0% {border-left:25px solid #E6E6E6;}
  177. 50% {border-left:25px solid #222;}
  178. 100% {border-left:25px solid #E6E6E6;}
  179. }
  180.  
  181. .cs:hover{
  182. opacity:1;
  183. text-shadow: 0 0 .6em #f47142;
  184. -webkit-animation: blink 1s ease infinite;
  185. -moz-animation: blink 1s ease infinite;
  186. }
  187.  
  188. p{
  189. color:#f47142;
  190. }
  191.  
  192. .circle.cir{
  193. position:absolute;
  194. left:13%;
  195. height:75px;
  196. width:75px;
  197. border-radius: 75px;
  198. -moz-border-radius: 75px;
  199. -webkit-border-radius: 75px;
  200. background:#f47142;
  201. z-index:4;
  202. box-shadow: 0px 0px 15px #f47142;
  203. }
  204.  
  205. .c{
  206. position:relative;
  207. color:#222;
  208. font-size:3em;
  209. line-height: 27px;
  210. left:17px;
  211. top:25px;
  212. text-shadow: 0 0 0.4em #222;
  213. }
  214.  
  215. .wrapper {
  216. width: 70%;
  217. padding: 1%;
  218. margin: 2% auto;
  219. border:1px solid #f47142;
  220. border-radius:5px;
  221. box-shadow: 0px 0px 15px #ffe763;
  222. position:relative;
  223. z-index:2;
  224. background: rgba(160,36,36,.6);
  225. opacity:.9;
  226. display: none;
  227. min-height: 500px;
  228. }
  229.  
  230.  
  231. .clear {
  232. clear: both;
  233. }
  234.  
  235. .circle.one {
  236. border: 15px solid;
  237. top: -27px;
  238. left: -27px;
  239. position: absolute;
  240. border-color: rgba(200,200,255,0.3) rgba(200,200,255,0.3) rgba(0,0,0,0) rgba(0,0,0,0);
  241. border-radius: 50%;
  242. margin: 0px;
  243. height: 100px;
  244. width: 100px;
  245. z-index:-1;
  246.  
  247. animation: move 10s ease infinite;
  248. -moz-animation: move 10s ease infinite;
  249. -webkit-animation: move 10s ease infinite;
  250. -o-animation: move 10s ease infinite;
  251. }
  252.  
  253. .circle.two {
  254. border: 3px dotted;
  255. padding: 0px;
  256. margin: 0px;
  257. border-color: rgba(183,110,0,0.7) rgba(0,0,0,0);
  258. border-radius: 50%;
  259. top: -66px;
  260. left: -40px;
  261. height: 150px;
  262. width: 150px;
  263. position:relative;
  264.  
  265. animation: move 15s ease infinite;
  266. -moz-animation: move 15s ease infinite;
  267. -webkit-animation: move 15s ease infinite;
  268. -o-animation: move 15s ease infinite;
  269. }
  270.  
  271.  
  272. .circle.three {
  273. color: #000;
  274. border: 25px solid;
  275. padding: 0px;
  276. margin: 10px;
  277. position: absolute;
  278. z-index:-1;
  279. border-color: rgba(255,255,255,0.7) rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
  280. border-radius: 50%;
  281. top: -6px;
  282. left: -6px;
  283. height: 90px;
  284. width: 90px;
  285. animation: move 25s ease infinite;
  286. -moz-animation: move 25s ease infinite;
  287. -webkit-animation: move 25s ease infinite;
  288. -o-animation: move 25s ease infinite;
  289. }
  290.  
  291. @keyframes move
  292. {
  293. 0% {transform: rotate(0deg);}
  294. 50%{transform: rotate(200deg);}
  295. 100% {transform: rotate(0deg);}
  296. }
  297.  
  298. @-webkit-keyframes move
  299. {
  300. 0% {-webkit-transform: rotate(0deg); -webkit-transform-origin: center;}
  301. 50%{-webkit-transform: rotate(200deg); -webkit-transform-origin: center;}
  302. 100% {-webkit-transform: rotate(0deg); -webkit-transform-origin: center;}
  303. }
  304.  
  305. @-moz-keyframes move
  306. {
  307. 0% { -moz-transform: rotate(0deg);}
  308. 50%{ -moz-transform: rotate(200deg);}
  309. 100% { -moz-transform: rotate(0deg);}
  310. }
  311.  
  312. @-o-keyframes move
  313. {
  314. 0% {-o-transform: rotate(0deg);}
  315. 50%{-o-transform: rotate(200deg);}
  316. 100% {-o-transform: rotate(0deg);}
  317. }
  318.  
  319.  
  320. a:link {
  321. text-decoration:none;
  322. color: #FFFFFF;
  323. }
  324. a:visited {text-decoration:none; color: #FFFFFF;}
  325.  
  326.  
  327. .my{
  328. position:absolute;
  329. top:5%;
  330. left:5%;
  331. width:75%;
  332. height: 450px;
  333. background: #0b0f16;
  334. opacity: 0.85;
  335. filter: alpha(opacity=85);
  336. -webkit-transition: all 0.6s ease-out;
  337. -moz-transition: all 0.6s ease-out;}
  338.  
  339. #nav {
  340. position: absolute;
  341. height: 5%;
  342. width: 40%;
  343. top: 9%;
  344. right: 20.5%;
  345. font-family: 'lato';
  346. font-size: 50px;
  347. animation: shuffle 3s 1;
  348. -webkit-animation: shuffle 3s 1;
  349. z-index: 99;}
  350.  
  351. #bio, #persona, #info, #friends, #skills, #ooc {
  352. height:96%;
  353. width:95%;
  354. overflow:auto;
  355. font-family: 'Lato';
  356. font-size: 2vh;
  357. letter-spacing: -1.5px;
  358. padding: 10px;
  359. z-index:1;
  360. }
  361.  
  362.  
  363.  
  364. @keyframes shuffle{
  365. from{
  366. bottom: -50%;
  367. opacity: 0;
  368. }
  369. }
  370.  
  371. @-webkit-keyframes shuffle{
  372. from{
  373. bottom: -50%;
  374. opacity: 0;
  375. }
  376. }
  377.  
  378. #host{
  379. height: 100%;
  380. width: 100%;
  381. overflow: hidden;
  382. z-index: 22;
  383. }
  384. .r {float:right;}
  385.  
  386. .pushit{
  387. animation: shuffle 3s 1;
  388. -webkit-animation: shuffle 3s 1;
  389. }
  390.  
  391. h2{
  392. font-size: 22px;
  393. width: 100%;
  394. color: #f5973c;
  395. font-family: 'Audiowide';
  396. letter-spacing: 4px;
  397. font-weight: normal;
  398. line-height: 16px;
  399. text-transform: uppercase;
  400. text-align: center;
  401. border-bottom: 1px solid #fff;}
  402.  
  403. h3{
  404. font-size: 16px;
  405. width: 100%;
  406. color: #f5973c;
  407. font-family: 'Audiowide';
  408. letter-spacing: 4px;
  409. font-weight: normal;
  410. line-height: 16px;
  411. text-transform: uppercase;
  412. text-align: center;
  413. border-bottom: 1px solid #fff;}
  414.  
  415. .wrapper{
  416. height:19px;
  417. line-height:18px;
  418. padding:5px;
  419. font-size:15px;
  420. text-align:left;
  421. color:ffe766;
  422. font-family: 'lato';
  423. word-spacing: 5px;}
  424.  
  425. b{
  426. color:#f47142; /}
  427.  
  428.  
  429.  
  430. table {
  431. margin-top:-9px;
  432. width: 100%;
  433. margin-left:-2px;
  434. background-color: transparent;
  435. border-collapse: collapse;}
  436.  
  437. td {
  438. font-size: 11px;
  439. letter-spacing: 1px;
  440. height: 100px;
  441. overflow: auto;}
  442.  
  443. #rel img {
  444. margin:8px;
  445. border:5px solid #fff; /* relationships icon border color */
  446. width:80px;
  447. height:80px;
  448. padding:5px;
  449. -webkit-transition:all 0.3s ease-out;
  450. -moz-transition:all 0.3s ease-out;
  451. transition:all 0.3s ease-out;}
  452.  
  453. #rel:hover img {
  454. border:5px solid #529ecc; /* relationships icon border hover color */
  455. -webkit-transition:all 0.3s ease-out;
  456. -moz-transition:all 0.3s ease-out;
  457. transition:all 0.3s ease-out;}
  458.  
  459. ::-webkit-scrollbar {width: 5px;}
  460. ::-webkit-scrollbar-thumb:vertical {
  461. height: 10px;background-color: #ffe763;}
  462. ::-webkit-scrollbar-thumb:horizontal {
  463. height: 10px;background-color: #ffe763;border: 0px ;width: 12px;}
  464.  
  465. .lovely {
  466. position: fixed;
  467. bottom: 50px;
  468. right: 8%;
  469. background-color: transparent;
  470. z-index: 20; }
  471.  
  472.  
  473. -----<HTML Just delete this, it's the divider>------------------
  474.  
  475. <div id="nav">
  476. <center><a href="#info"><img src="https://cdn.bigmouthclothing.com/assets/images/designs/resized/300/DES-VIEW-1281-523b14b6215f3.png" width="30px"></a> <a href="#persona"><img src="https://cdn.bigmouthclothing.com/assets/images/designs/resized/300/DES-VIEW-1281-523b14b6215f3.png" width="30px"></a>
  477. <a href="#bio"><img src="https://cdn.bigmouthclothing.com/assets/images/designs/resized/300/DES-VIEW-1281-523b14b6215f3.png" width="30px"></a> <a href="#friends"><img src="https://cdn.bigmouthclothing.com/assets/images/designs/resized/300/DES-VIEW-1281-523b14b6215f3.png" width="30px"></a> <a href="#skills"><img src="https://cdn.bigmouthclothing.com/assets/images/designs/resized/300/DES-VIEW-1281-523b14b6215f3.png" width="30px"></a> <a href="#ooc"><img src="https://cdn.bigmouthclothing.com/assets/images/designs/resized/300/DES-VIEW-1281-523b14b6215f3.png" width="30px"></a></center>
  478. </div>
  479.  
  480. <div class="pushit"><p id="wrap">
  481.  
  482. </p>
  483.  
  484. <h1 class="cs">Son Pan</h1>
  485.  
  486. <div class="circle cir"><p class="c"><font color="#a02424">✮</font></p>
  487. <div class="circle one"></div>
  488. <div class="circle two">
  489. <div class="circle three">
  490. </div>
  491. </div>
  492. </div>
  493. <div class="wrapper">
  494.  
  495. <div class="my">
  496. <div id="host">
  497. <div id="info">
  498. <center><h2>Statistics</h2></center>
  499. <br>
  500. <b>Given Name</b><div class="r">Son Pan</div><br>
  501. <b>Nicknames</b><div class="r">Panny, Pan-chan, Pan</div><bR>
  502. <b>Title</b><div class="r">Hero of Time</div><bR>
  503. <b>Age</b><div class="r">20 y.o</div><bR>
  504. <b>Gender</b><div class="r">Female</div><bR>
  505. <b>Height + Weight</b><div class="r">5'5" + 115 lbs</div><br>
  506. <b>Hair</b><div class="r">Spikey/Bobbed Black//Blond<a href="" target="_blank" title="SSJ">*</a></div><bR>
  507. <b>Eyes</b><div class="r">Black//Green-Teal<a href="" target="_blank" title="SSJ.">*</a></div><bR>
  508. <b>Species//Nationality</b><div class="r">1/4 Human, 3/4 Human</div><bR>
  509. <b>Sexual orientation</b><div class="r">Pansexual</div><bR>
  510. <b>Relationship Status</b><div class="r">Single, uninterested</div><bR>
  511. <b>Affiliation</b>
  512. <div class="r">Time Patrollers/Supreme Kai of Time/Z-warriors</div></br>
  513. <b>Occupation</b><div class="r">Time Patroller <a href="" target="_blank" title="Stranded">*</a></div>
  514.  
  515.  
  516. </center> </div>
  517. <br>
  518. <div id="persona">
  519. <center><h2>Personality</h2><bR>
  520. <p>---</p> </center>
  521. </div>
  522. <br>
  523. <div id="bio">
  524. <center><h2>Biography</h2><bR>
  525. <p> ---</p>
  526. </center>
  527. </div>
  528. <br>
  529. <div id="friends">
  530. <center><h2>Friends</h2></center>
  531.  
  532. <br><br>
  533. <table>
  534.  
  535.  
  536.  
  537. <tr><td> <div id="rel">
  538.  
  539. <a href="/">
  540.  
  541.  
  542. <img src="https://orig00.deviantart.net/d2f7/f/2011/018/2/c/bunny_icon_by_artiedrawings-d37h460.jpg" /></a></div></td>
  543.  
  544.  
  545. <td><div style="height:100px; overflow:auto">--</div></td></tr>
  546.  
  547.  
  548.  
  549. <tr><td> <div id="rel">
  550.  
  551. <a href="/">
  552.  
  553. <img src="https://orig00.deviantart.net/d2f7/f/2011/018/2/c/bunny_icon_by_artiedrawings-d37h460.jp" /></a></div></td>
  554.  
  555. <td><div style="height:100px; overflow:auto">A </div></td></tr>
  556.  
  557. <tr><td> <div id="rel">
  558.  
  559. <a href="/">
  560.  
  561. <img src="https://orig00.deviantart.net/d2f7/f/2011/018/2/c/bunny_icon_by_artiedrawings-d37h460.jpg" /></a></div></td>
  562.  
  563. <td><div style="height:100px; overflow:auto">---</div></td></tr>
  564.  
  565.  
  566.  
  567. </table>
  568.  
  569.  
  570. </div>
  571. <br>
  572. <div id="skills">
  573. <center><h2>Skills</h2><bR></center><br><br>
  574. <b>Super Saiyan 1-</b>
  575. Pan is capable of going Super Saiyan one and is working towards two.<br>
  576.  
  577. <b>Flight –</b>
  578. Pan can manipulate her ki to counter gravity and fly.<br>
  579.  
  580. <b>Ki Blast –</b>
  581. A simple bolt of energy launched at the opponent. Pan's version is yellow.<br>
  582.  
  583. <b>Ki enfused strikes–</b> Encasing her hands and or feet in a decent amount of Ki she gains an aura or wrap around them giving her more strike power. This ability was self taught.<BR>
  584.  
  585. <b>Kamehameha –</b>
  586. The legendary energy wave invented by the great Master Roshi, launches a very powerful, whitish-blue blast at the opponent.<br>
  587.  
  588. <b>Maiden's Rage –</b>
  589. When angered by an enemy, Pan forms a ki orb on each hand and then combines them to unleash a huge ki blast.<br>
  590.  
  591. <b>Maiden Blast–</b>
  592. A short-ranged version of Maiden's Rage, where combines the energy collected into each hand to create a large energy sphere directly in front of her.<br>
  593.  
  594. <b>Maiden Flash –</b>
  595. A weaker version of the Maiden's Rage. <br>
  596.  
  597. <b>Reliable Friend –</b>
  598. Pan charges yellowish-orange energy spheres in both of her hands in a fashion similar to her Maiden's Rage energy wave and fires several powerful energy blasts at a very rapid rate.<br>
  599.  
  600. <b>Scatter Kamehameha–</b> A kamehameha that bursts into multiply blasts.<Br>
  601.  
  602. <b>Dual Destructo disk–</b> Learned from Krillin in her own time.<br>
  603.  
  604. <b>Spirit bomb –</b> Learned from Goku. <br>
  605.  
  606. <b>Final Shine attack </b><Br>
  607.  
  608. <b>Spirit Sword</b><Br>
  609.  
  610. <b>Maiden's Burst –</b><Br>
  611.  
  612. <b>Masenko –</b>
  613. An energy attack passed down from her father Gohan, who was taught the technique to him by Piccolo. Pan's version is red and orange.<br>
  614.  
  615. <b>Feint Shot –</b>
  616. Uses Rapid Movement while moving sideways then suddenly reappears to fire off a pink-colored ki blast. <br>
  617.  
  618. <b>Afterimage Strike –</b>
  619. A technique that allows one to move at high speeds and appear to disappear and reappear. <Br>
  620.  
  621. <b>Explosive Wave –</b>
  622. Pan uses an Explosive Wave.<br>
  623.  
  624. <b>Spirit Attack –</b>
  625. A blue blast of energy fired from both hands used by Pan.<br>
  626.  
  627. <b>Spirit Shot –</b>
  628. A sparkling yellow energy ball with a pink outline.<br>
  629.  
  630. <b>Destructo-Disc</b><Br>
  631. <b>Solar Flare</b></div>
  632. <br>
  633.  
  634. <div id="ooc">
  635. <center><h2>OOC/RULES</h2><br><Br>
  636. 01. <b>PM friendly 99.9999999% of the time.</b><bR>
  637. 02. <b>Don't like how I play her. Please don't approach me then. </b><bR>
  638. 03. <b>Code is a heavily modified from open source off of codepen. If you want a copy please PM me. And if you use it please give me some credit.</b><bR>
  639. 04. <b>Art commissioned by me. The artist is Ishida1694 on deviantart. Givem em a look. They have soem good deals going on. </b><bR>
  640. 05. <b>Constant work in progress.</b><bR>
  641. 06. <b>I can be as sweet as sugar or the biggest bitch you'll ever meet.</b><bR>
  642. 07. <b>Smut can happen. Most likely won't though. Story is required though!</b><bR>
  643. 08. <b>I play MY character not one you give me.</b><bR>
  644. 09. <b>For the most part I'm a nice person.</b><bR>
  645. 10. <b> Start with a post if you really want. But I can't promise I'll be up for responding.</b><bR>
  646. 11. <b>IC =/= OOC.</b><bR>
  647. </center>
  648. </div>
  649. <br>
  650.  
  651.  
  652. <br>
  653. </div>
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661. </div>
  662. <div class="bar left"></div>
  663. <div class="bar top"></div>
  664. <div class="bar right"></div>
  665. <div class="bar bottom"></div>
  666. <div class="clear"></div>
  667. </div>
  668.  
  669.  
  670. <div class="lovely">
  671. <img src="https://i.imgur.com/JhOW0uR.png" height="80%"></div>
  672.  
  673. <div style="position: fixed; bottom: 20px; left: 0px; background-color: transparent;">
  674. <a href="https://roleplay.chat/profile.php?user=Mimi+ray" target="_blank" title="Code was created by MimiRay. Do NOT touch. Please! If you want a copy or want it please ask. She will share. "><img src="http://i.imgur.com/vY7rSz9.png" height="10%"></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement