Advertisement
DipperP

Untitled

Aug 28th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.18 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head><title>{Title}</title>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script>
  35. <link rel="shortcut icon" href="{Favicon}">
  36. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  37. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  38.  
  39. <!---- this is theme 30 by Hollywhood
  40. please don't remove the credit
  41. thank yo
  42. --->
  43.  
  44. <meta name="color:Background" content="#ffffff"/>
  45. <meta name="color:Text" content="#458B00"/>
  46. <meta name="color:Link" content="#b8b8b8"/>
  47. <meta name="color:border" content="#F2F2F2"/>
  48. <meta name="color:scrollbar" content="#D6D5D5">
  49. <meta name="color:Link Hover" content="#eeeeee"/>
  50.  
  51. <meta name="image:sidebar" content=""/>
  52.  
  53. <meta name="text:link 1" content="Link 1"/>
  54. <meta name="text:link 1 url" content="/"/>
  55. <meta name="text:link 2" content="Link 2"/>
  56. <meta name="text:link 2 url" content="/"/>
  57. <meta name="text:link 3" content="Link 3"/>
  58. <meta name="text:link 3 url" content="/"/>
  59. <meta name="text:link 4" content="Link 4"/>
  60. <meta name="text:link 4 url" content="/"/>
  61.  
  62. <style type="text/css">
  63. #bite
  64. #bite a{
  65. display:block
  66. }
  67. #bite .death {
  68. margin-top:0px;filter: alpha(opacity = 0);
  69. opacity:0;-webkit-transition: all 0.5s ease-out;
  70. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  71. }
  72.  
  73. #bite:hover .death {
  74. margin-top:0px;
  75. -webkit-transition: all 0.8s ease-out;
  76. -moz-transition: all 0.8s ease-out;
  77. transition: all 0.8s ease-out;
  78. filter: alpha(opacity = 100);
  79. filter: alpha(opacity = 100);
  80. opacity:100;
  81. }
  82.  
  83. #actualnews {
  84. font-family:MV Boli;
  85. font-size:10px;
  86. color: #3D5229;
  87. width:180px;
  88. height:auto;
  89. padding-top:3px;
  90. border:1px solid#458B00;
  91. left:985px;
  92. top:450px;
  93. text-align:center;
  94. position:fixed;
  95. }
  96.  
  97. #thekey img{
  98. width:150px;
  99. top:300px;
  100. left:1000px;
  101. position:fixed;
  102. }
  103.  
  104. .popup_block{
  105. height:400px;
  106. overflow:auto;
  107. display:none;
  108. color: #00000;
  109. background-image:url(https://41.media.tumblr.com/9b3f22e8a13fcf763ea8e4617646bae1/tumblr_ntmomk28Pe1uehou3o1_r2_400.png);;
  110. padding:20px;
  111. border:1px solid #DD88EF; /* if you want a solid white pop-up, delete this */
  112. float:left;
  113. position:fixed;
  114. top:50%;left:50%;
  115. z-index: 99999;
  116. -webkit-box-shadow: 0px 0px 20px #335522; /* delete for solid white */
  117. -moz-box-shadow: 0px 0px 20px #335522; /* delete for solid white */
  118. box-shadow: 0px 0px 20px #335522; /* delete for solid white */
  119. }
  120.  
  121. *html #fade {position: absolute;}
  122. *html .popup_block {position: absolute;}
  123. #fade {
  124. display:none;
  125. position:fixed;
  126. left:0px;
  127. top:0px;
  128. width:100%;
  129. height:100%;
  130. z-index:9999;
  131. background:#000; /* change to #fff for solid white */
  132. opacity:0.5; /* change to opacity:1; */
  133. }
  134.  
  135. ::-webkit-scrollbar-thumb{
  136. height:auto;
  137. }
  138.  
  139. ::-webkit-scrollbar {
  140. height:auto;
  141. width:0px;
  142. }
  143.  
  144.  
  145.  
  146. iframe#tumblr_controls {
  147. white-space:nowrap;
  148. -webkit-filter: invert(100%);
  149. -moz-filter: invert(100%);
  150. -o-filter: invert(100%);
  151. -ms-filter: invert(100%);
  152. filter: invert(100%);
  153. opacity:.2;transition: .8s ease-in-out;
  154. -webkit-transition: .8s ease-in-out;
  155. -moz-transition: .8s ease-in-out;
  156. -o-transition: .8s ease-in-out;
  157. }
  158.  
  159. h1 {
  160. font-weight:normal;
  161. font-size:13px;
  162. text-align:center;
  163. font-style:normal;
  164. line-height:100%;
  165. letter-spacing:1px;
  166. text-transform:normal;
  167. color:{color:text};
  168. }
  169.  
  170. h2 {
  171. font-size:10px;
  172. text-align:center;
  173. line-height:100%;
  174. letter-spacing:-0.5px;
  175. color:{color:#33FF66};
  176. font-weight:bold;
  177. text-transform:uppercase;
  178. padding:5px;
  179. padding-bottom:2px;
  180. }
  181.  
  182.  
  183. blockquote {
  184. border-left:2px solid {color:text};
  185. padding-left:5px;
  186. margin:5px;
  187. }
  188.  
  189.  
  190. body {
  191. background-image:url('http://33.media.tumblr.com/e387688b0c54e03ccb511285d6e983a9/tumblr_ntmgjaCoic1uvh4xuo3_1280.gif');
  192. background-attachment: fixed;
  193. background-image:stretch;
  194. background-repeat:no-repeat;
  195. background-image:Stretch;
  196. Background-color:#442255;
  197. background-position:Top Left;
  198. }
  199.  
  200. a {
  201. text-decoration:none;
  202. outline:none;
  203. -moz-outline-style:none;
  204. color:{color:link};
  205. -moz-transition-duration:0.5s;
  206. -webkit-transition-duration:0.5s;
  207. -o-transition-duration:0.5s;
  208. }
  209.  
  210. a:hover {
  211. text-decoration:none;
  212. outline:none;
  213. -moz-outline-style:none;
  214. color:{color:link hover};
  215. }
  216.  
  217. img {
  218. border:none;
  219. }
  220.  
  221. blockquote {
  222. padding-left:5px;
  223. border-left:2px solid;
  224. }
  225.  
  226. blockquote blockquote {
  227. padding-left:5px;
  228. border-left:2px solid;
  229. }
  230.  
  231. #theme {
  232. width:400px;
  233. margin:0 auto -12px auto;
  234. }
  235.  
  236. #post {
  237. width:320px;
  238. padding-bottom:30px;
  239. margin-top:20px;
  240. }
  241.  
  242.  
  243. #entries {
  244. padding:10px;
  245. left:420px;
  246. top:250px;
  247. position:fixed;
  248. background-color:transparent;
  249. width:340px;
  250. height:180px;
  251. top:290px;
  252. padding:20px;
  253. overflow-x:scroll;
  254. scroll:hidden;
  255. overflow-x:hidden;
  256. }
  257.  
  258. #sidebar {
  259. color:{color:text};
  260. position:fixed;
  261. width:150px;
  262. height:auto;
  263. top:370px;
  264. left:312px;
  265. text-align:Center;
  266. }
  267.  
  268. #sidebarimage img {
  269. width:0px;
  270. margin-top:0px;
  271. margin-bottom:5px;
  272. padding:-1px;
  273. outline-offset:4px;
  274. }
  275.  
  276. #alinks {
  277. position:fixed;
  278. font-family:MV Boli;
  279. width:200px;
  280. top:50px;
  281. left:150px;
  282. font-size:40px;
  283. text-transform:lowercase;
  284. text-align:Center;
  285. line-height:10%;
  286. }
  287.  
  288. #links a{
  289. line-height:100%;
  290. padding:.5px;
  291. top:1px;
  292. left:5px;
  293. color:{color:link};
  294. -moz-transition-duration:.7s;
  295. -webkit-transition-duration:.7s;
  296. -o-transition-duration:.7s;
  297. }
  298.  
  299. #links a:hover {
  300. color: {color:link hover};
  301. -moz-transition-duration:.4s;
  302. -webkit-transition-duration:.4s;
  303. -o-transition-duration:.4s;
  304.  
  305. }
  306. #blinks {
  307. position:fixed;
  308. font-family:cambria;
  309. width:10px;
  310. top:150px;
  311. left:280px;
  312. font-size:40px;
  313. text-transform:lowercase;
  314. text-align:Center;
  315. line-height:10%;
  316. }
  317.  
  318. #links a{
  319. line-height:100%;
  320. padding:.5px;
  321. top:1px;
  322. left:5px;
  323. color:{color:link};
  324. -moz-transition-duration:.7s;
  325. -webkit-transition-duration:.7s;
  326. -o-transition-duration:.7s;
  327. }
  328.  
  329. #links a:hover {
  330. color: {color:link hover};
  331. -moz-transition-duration:.4s;
  332. -webkit-transition-duration:.4s;
  333. -o-transition-duration:.4s;
  334.  
  335. }
  336. #clinks {
  337. position:fixed;
  338. font-family:cambria;
  339. width:10px;
  340. top:250px;
  341. left:260px;
  342. font-size:40px;
  343. text-transform:lowercase;
  344. text-align:Center;
  345. line-height:10%;
  346. }
  347.  
  348. #links a{
  349. line-height:100%;
  350. padding:.5px;
  351. top:1px;
  352. left:5px;
  353. color:{color:link};
  354. -moz-transition-duration:.7s;
  355. -webkit-transition-duration:.7s;
  356. -o-transition-duration:.7s;
  357. }
  358.  
  359. #links a:hover {
  360. color: {color:link hover};
  361. -moz-transition-duration:.4s;
  362. -webkit-transition-duration:.4s;
  363. -o-transition-duration:.4s;
  364.  
  365. }
  366. #dlinks {
  367. position:fixed;
  368. font-family:cambria;
  369. width:10px;
  370. top:350px;
  371. left:260px;
  372. font-size:40px;
  373. text-transform:lowercase;
  374. text-align:Center;
  375. line-height:10%;
  376. }
  377.  
  378. #links a{
  379. line-height:100%;
  380. padding:.5px;
  381. top:1px;
  382. left:5px;
  383. color:{color:link};
  384. -moz-transition-duration:.7s;
  385. -webkit-transition-duration:.7s;
  386. -o-transition-duration:.7s;
  387. }
  388.  
  389. #links a:hover {
  390. color: {color:link hover};
  391. -moz-transition-duration:.4s;
  392. -webkit-transition-duration:.4s;
  393. -o-transition-duration:.4s;
  394.  
  395. }
  396. #elinks {
  397. position:fixed;
  398. font-family:cambria;
  399. width:10px;
  400. top:365px;
  401. left:305px;
  402. font-size:40px;
  403. text-transform:lowercase;
  404. text-align:Center;
  405. line-height:10%;
  406. }
  407.  
  408. #links a{
  409. line-height:100%;
  410. padding:.5px;
  411. top:1px;
  412. left:5px;
  413. color:{color:link};
  414. -moz-transition-duration:.7s;
  415. -webkit-transition-duration:.7s;
  416. -o-transition-duration:.7s;
  417. }
  418.  
  419. #links a:hover {
  420. color: {color:link hover};
  421. -moz-transition-duration:.4s;
  422. -webkit-transition-duration:.4s;
  423. -o-transition-duration:.4s;
  424.  
  425. }
  426.  
  427.  
  428. #description {
  429. width:150px;
  430. font-family:times;
  431. margin-bottom:0px;
  432. top:2px;
  433. left:-2px;
  434. text-align:justify;
  435. font-size:80%;
  436. color: {color:text};
  437. letter-spacing:1px;
  438. line-height:115%;
  439. }
  440.  
  441. #description a {
  442. color:{color:link};
  443. }
  444.  
  445. #description a:hover {
  446. color:{color:link hover};
  447. }
  448.  
  449. #pagination {
  450. font-family:cambria;
  451. width:103px;
  452. font-size:8px;
  453. text-transform:normal;
  454. top:10px;
  455. left:0px;
  456. top:25px;
  457. letter-spacing:1px;
  458. font-style:normal;
  459. text-align:Center;
  460. }
  461.  
  462. #pagination a {
  463. color:{color:link};
  464. }
  465.  
  466. #info {
  467. font-family:cambria;
  468. width:398px;
  469. top:200px;
  470. top:1px;
  471. font-size:8px;
  472. letter-spacing:1px;
  473. color:{color:text};
  474. text-transform:lowercase;
  475. opacity:0;
  476. text-align:left;
  477. -moz-transition-duration:.7s;
  478. -webkit-transition-duration:.7s;
  479. -o-transition-duration:.7s;
  480. }
  481.  
  482. #info a {
  483. color:{color:link};
  484. text-align:right;
  485. }
  486.  
  487. #info a:hover {
  488. color:{color:link hover};
  489. }
  490. #post:hover #info {
  491. margin-top:3px;
  492. opacity:1;
  493. -moz-transition-duration:1.2s;
  494. -webkit-transition-duration:1.2s;
  495. -o-transition-duration:1.2s;
  496. }
  497.  
  498. .tags {
  499. font-family:cambria;
  500. font-style:normal;
  501. width:398px;
  502. text-transform:italic;
  503. color:{color:link};
  504. line-height:120%;
  505. opacity:0;
  506. font-size:8px;
  507. text-align:left;
  508. padding-top:7px;
  509. -moz-transition-duration:0.4s;
  510. -webkit-transition-duration:0.4s;
  511. -o-transition-duration:0.4s;
  512. }
  513.  
  514. #post:hover .tags {
  515. opacity:1;
  516. -moz-transition-duration:0.4s;
  517. -webkit-transition-duration:0.4s;
  518. -o-transition-duration:0.4s;
  519. }
  520.  
  521. .audio{
  522. background-color:#e5e5e5;
  523. height:65px;
  524. overflow:hidden;
  525. }
  526.  
  527. #ask {
  528. float:left;
  529. margin-left:10px;}
  530.  
  531. #credit {
  532. font-size:9px;
  533. font-family:cambria;
  534. font-style:italic;
  535. letter-spacing:1px;
  536. -moz-transition-duration:0.5s;
  537. -webkit-transition-duration:0.5s;
  538. -o-transition-duration:0.5s;
  539. }
  540.  
  541. #credit a {
  542. background-color:#DD88EF;
  543. padding:5px;
  544. border:.5px solid #F0C7F6;
  545. position:fixed;
  546. right:1299px;
  547. bottom:630px
  548. }
  549.  
  550. #credit a:hover {
  551. color:#F0C7F6;
  552. background-color:#DD88EF;
  553. }
  554.  
  555.  
  556. {CustomCSS}</style></head><body>
  557. <div id="bite">
  558. <div id="thekey"><img src="https://38.media.tumblr.com/541ad9b6f75039535ac04a9cfb5cf5b0/tumblr_ntmluyJV0x1uehou3o1_250.gif"></div>
  559. <div class="death">
  560. <div id="actualnews">
  561. <center>Idependent Amethyst <br><br>
  562. Tracking ;; Neveraskedtobemade<br>
  563. </center>
  564. </div>
  565. </div></div>
  566.  
  567. <div id="theme">
  568.  
  569. <div id="sidebar">
  570. <div id="bite">
  571. <div id="sidebarimage">
  572. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}">
  573. <div class=”death”>
  574.  
  575. </a></div></div></div>
  576.  
  577.  
  578. <div id="links">
  579. <div id="elinks"><a href="#?w=300" rel="box4" class="poplight" title="Tags">•</a></div>
  580. <div id="blinks"><a href="#?w=300" rel="box2" class="poplight" title="About">•</a></div>
  581. <div id="clinks"><a href="#?w=300" rel="box5" class="poplight" title="Verses">•</a></div>
  582. <div id="alinks"><a href="#?w=300" rel="box1" class="poplight" title="Questions">•</a></div>
  583. <div id="dlinks"><a href="#?w=300" rel="box3" class="poplight" title="Self">•</a></div>
  584. </div>
  585.  
  586. <div id="description">
  587. {Description}</div>
  588. <p></p><br><br><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">Dawn</a>{/block:PreviousPage}{/block:Pagination}
  589. {block:Pagination}{block:NextPage}— <a href="{NextPage}">Dusk</a>{/block:NextPage}{/block:Pagination}{/block:Pagination} </center></div>
  590.  
  591. <div id="entries">{block:Posts}<div id="post">
  592.  
  593. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  594.  
  595. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  596.  
  597. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  598.  
  599. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  600.  
  601. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  602.  
  603. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  604.  
  605. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  606. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  607.  
  608. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  609.  
  610. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="border-radius:90px; opacity:.9;margin-left:3px;"></div> &nbsp;<em>{Asker}:<br> &nbsp; <big>"{Question}"</big></em><br><br>{Answer}{/block:Answer}
  611.  
  612. {block:Date}<div id="info"><a href="{Permalink}" style="background-color:#999;padding:3px;color:#fff;">{TimeAgo}</a> {block:NoteCount} with <font color=#458B00><big>♥</big></font> <a href="{Permalink}">{NoteCount}</a> {/block:NoteCount} {block:RebloggedFrom} — <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  613. {block:ContentSource} , <a title="{SourceTitle}" href="{SourceURL}">source</a> {/block:ContentSource}{/block:Date}</div>
  614. {block:HasTags}
  615. <div class="tags">
  616. {block:Tags} # <a href="{TagURL}"> {Tag}</a>{/block:Tags}</div>
  617. {/block:HasTags}
  618. <div class="postnote">
  619. {block:PostNotes}{PostNotes}{/block:PostNotes}
  620. </div>
  621. </div>
  622. {/block:Posts}
  623.  
  624. </div>
  625. <div id="credit"><a href="http://hollywhood.tumblr.com">HW+Edits</a></div></div>
  626.  
  627. <div id="box1" class="popup_block">
  628. <h1>Yeah..? ;</h1>
  629. <iframe frameborder="0" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/Neveraskedtobemade.tumblr.com" width="100%"></iframe>
  630. <h1>gifts</h1>
  631. <iframe frameborder="0" id="submit_form" scrolling="yes" src="http://www.tumblr.com/submit_form/neveraskedtobemade.tumblr.com" width="100%"></iframe>
  632. </div>
  633.  
  634. <div id="box2" class="popup_block">
  635.  
  636. <h1>Death</h1><p>
  637.  
  638. <center><div class="aboutlil">Over view</div></center></br>
  639. Hello there, This is Amethyst’s Mun here! My name is BB and I am here and ready to join a new fandom that I have come to love. As all blogs I have a few rules that I would really enjoy that we go by.
  640.  
  641. <br> --I have the right not to follow you.
  642. <br> --This isn’t my first time roleplaying on tumblr but it is my first time as Amethyst on tumblr.
  643. <br> --No godmoding. If I see it I will not reply to the roleplay. Its not fun if someone if godmoding the whole time.
  644. <br> --My range of replies go from one line to paragraphs. Please don’t expect me give out big replies. It also goes on my mood.
  645. <br> --If I don’t reply its most likely I simple forgot don’t be scared to inbox me and remind me I don’t mind at all.
  646. <br> --They seem petty and crazy but they are here for a reasons. Thank you for reading I can wait to start rping!
  647. </br></br>
  648.  
  649.  
  650. <center><div class="aboutlil">Credit</div></center></br>
  651.  
  652. <p>The creator of the re-editing as well as background belong too the mun of ; &nbsp; <a href="http://StarsxChild.tumblr.com/">X</a></p>
  653. </div>
  654.  
  655.  
  656. <div id="quote" class="popup_block" style="height:280px; width:10px; text-align:center;">
  657. <h2 style="font-family: tahoma; line-height:95%; color:#1F1C1C; font-size:15px; text-transform:none; text-align:center;">
  658.  
  659. <br><br><br>
  660. <a href="#?w=400" style="color:#6b5c6e;" rel="box3" class="poplight"><u>say</u></a> </h2></center>
  661. </div>
  662.  
  663.  
  664. <div id="box3" class="popup_block">
  665. <h1>Runt</h1>
  666.  
  667. <center>
  668. <img src="https://40.media.tumblr.com/08cee910f488d6a4acde18e82b962f1c/tumblr_ntmkoyC0HI1uvh4xuo1_100.png">
  669. <img src="https://40.media.tumblr.com/36549f418b8140457a5bf0b48378091c/tumblr_ntmkmqD52K1uvh4xuo1_100.png"></center><br />
  670. <center><div class="aboutlil">Self</div></center></br>
  671. <center><b>Name:</b>Amethyst</center><p>
  672. <center><b>Status:</b>Alive</center><p>
  673. <center><b>Birth Date:</b>Unknown</center><p>
  674. <center><b>Age:</b>Unkown</center><p>
  675. <center><b>Pronouns:</b>She/Her</center><p>
  676. <center><b>Residence:</b> Beach City.</center><p>
  677.  
  678.  
  679. </div>
  680.  
  681.  
  682.  
  683. <div id="box4" class="popup_block">
  684. <a href="http://Neveraskedtobemade.tumblr.com/Amethyst"> Amethyst ;;</a>
  685. <br> <a href="http://Starsxchild.tumblr.com"> Steven ;; </a>
  686.  
  687. </div>
  688.  
  689.  
  690.  
  691. <div id="box5" class="popup_block">
  692. <h2><b>verses</b></h2>
  693.  
  694. <ul id="tab">
  695. <li class="active">
  696. T H E   U N W A N T E D   G E M
  697. <br><br>
  698. <img src="https://40.media.tumblr.com/08cee910f488d6a4acde18e82b962f1c/tumblr_ntmkoyC0HI1uvh4xuo1_100.png" align="Right" style="margin-right:5px;width:100px;height:100px;border:1px solid transparent; padding-top:5px;"><div style="text-indent:10px;">
  699.  
  700. The good 'ol Amethyst we all know and love from the canon of Steven Universe.
  701.  
  702. </div><br>
  703.  
  704. <center>| <a href="/tagged/Main">verse tag</a> |</center>
  705. </li>
  706.  
  707.  
  708. <li>
  709. F R E S H L Y   C O O K E D  
  710. <br><br>
  711. <div class="text"><img src="https://40.media.tumblr.com/316d4bb41deb05859ae2a63a49291abe/tumblr_ntmkleyKxG1uvh4xuo1_250.png" align="Right" style="margin-right:5px;width:100px;height:100px;border:1px solid transparent; padding-top:5px;">
  712. <div style="text-indent:20px;">
  713.  
  714. Following the timeline -- Assumed timeline; in which Amethyst is found by the Gems and up till Rose's depart.
  715.  
  716.  
  717. </div><br>
  718. <center>| <a href="/tagged/Young">verse tag</a> |</center>
  719.  
  720. </li>
  721.  
  722. </ul>
  723.  
  724. </div>
  725.  
  726.  
  727. </div></div></div></div></div></div></div></div></div></div>
  728.  
  729. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement