Advertisement
lojsan7

sadie

Apr 16th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.64 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2. <head>
  3. <script type="text/javascript"
  4. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function() {
  7. //
  8. $('a.poplight[href^=#]').click(function() {
  9. var popID = $(this).attr('rel'); //Get Popup Name
  10. var popURL = $(this).attr('href'); //Get Popup href to define size
  11. var query= popURL.split('?');
  12. var dim= query[1].split('&');
  13. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  14. $('#' + popID).fadeIn().css({ 'width': 400 }).prepend('<a href="#" class="close"></a>');
  15. var popMargTop = ($('#' + popID).height() + 80) / 2;
  16. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  17. //Apply Margin to Popup
  18. $('#' + popID).css({
  19. 'margin-top' : -popMargTop,
  20. 'margin-left' : -popMargLeft
  21. });
  22. $('body').append('<div id="fade"></div>');
  23. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  24. return false;
  25. });
  26. $('a.close, #fade').live('click', function() {
  27. $('#fade , .popup_block').fadeOut(function() {
  28. $('#fade, a.close').remove(); //fade them both out
  29. });
  30. return false;
  31. });
  32. });
  33. </script>
  34. <title>{Title}</title>
  35. <link rel="shortcut icon" href="http://38.media.tumblr.com/60f94d3a55604325d2f2eb7d33c10a53/tumblr_inline_n9dppi19zy1snulow.gif">
  36. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  37.  
  38. <!---- this is theme 44 by Hollywhood
  39. please don't remove the credit
  40. thank you
  41. --->
  42.  
  43. <meta name="color:Background" content="#ffffff"/>
  44. <meta name="color:Text" content="#9B9B9B"/>
  45. <meta name="color:Link" content="#b8b8b8"/>
  46. <meta name="color:scrollbar" content="#6e6c6c">
  47. <meta name="color:title" content="#999999">
  48. <meta name="color:Link Hover" content="#eeeeee"/>
  49.  
  50. <meta name="image:sidebar" content=""/>
  51. <meta name="text:sidebartitle" content="">
  52. <meta name="image:background image" content="">
  53. <meta name="image:info image" content="">
  54. <meta name="image:sidebar" content=""/>
  55. <meta name="text:sidebartitle" content="">
  56. <meta name="image:thekey" content=""/>
  57.  
  58. <meta name="text:link1" content="" />
  59. <meta name="text:link1 url" content="/">
  60. <meta name="text:link2" content="" />
  61. <meta name="text:link2 url" content="/">
  62. <meta name="text:link3" content="" />
  63. <meta name="text:link3 url" content="/">
  64. <meta name="text:link4" content="" />
  65. <meta name="text:link4 url" content="/">
  66. <meta name="text:link5" content="" />
  67. <meta name="text:link5 url" content="/">
  68.  
  69.  
  70. <style type="text/css">
  71.  
  72.  
  73.  
  74. ::-webkit-scrollbar-thumb{
  75. background-color: transparent;
  76. border: 2px solid transparent;
  77. height:2px;
  78. }
  79.  
  80. ::-webkit-scrollbar {
  81. height:auto;
  82. width:2px;
  83. background-color: transparent;
  84. border:5px solid transparent;
  85. }
  86.  
  87.  
  88. iframe#tumblr_controls {
  89. white-space:nowrap;
  90. -webkit-filter: invert(100%);
  91. -moz-filter: invert(100%);
  92. -o-filter: invert(100%);
  93. -ms-filter: invert(100%);
  94. filter: invert(100%);
  95. opacity:.2;transition: .8s ease-in-out;
  96. -webkit-transition: .8s ease-in-out;
  97. -moz-transition: .8s ease-in-out;
  98. -o-transition: .8s ease-in-out;
  99. }
  100.  
  101. h1 {
  102. font-weight:normal;
  103. font-size:17px;
  104. text-align:center;
  105. font-style:normal;
  106. line-height:100%;
  107. letter-spacing:1px;
  108. text-transform:normal;
  109. color:{color:text};
  110. }
  111.  
  112. h2 {
  113. font-size:21px;
  114. text-align:center;
  115. line-height:100%;
  116. letter-spacing:-0.5px;
  117. color:#444343;
  118. text-shadow:1px 1px 1px #022e40;
  119. font-weight:bold;
  120. text-transform:uppercase;
  121. padding:5px;
  122. padding-bottom:2px;
  123. }
  124.  
  125.  
  126. blockquote {
  127. border-left:1px solid #e4e2e3;
  128. padding:17px;
  129. margin:10px 2px 0px 10px
  130. background-color:#c9c9c9;
  131. }
  132.  
  133.  
  134. body {
  135. background:{color:background};
  136. background-image: url('http://i.imgur.com/KBV6pKX.png');
  137. background-repeat: no-repeat;
  138. background-size: center;
  139. background-attachment: fixed;
  140. position: absolute;
  141. margin-left:700px;
  142. color:{color:text};
  143. font-family:arial;
  144. font-size:12px;
  145. line-height:100%;
  146. }
  147.  
  148. b,bold,strong {
  149. color:#d65672;
  150. font-family:arial;
  151. font-size:16px;
  152. text-shadow: 1px 1px 1px #d65672;
  153. }
  154.  
  155. i,em,italic {
  156. color:#f49c95;
  157. font-family:arial;
  158. font-size:16px;
  159. text-shadow: 1.5px 1.5px 1px #ffffff;
  160. }
  161.  
  162. a {
  163. text-decoration:none;
  164. text-transform:uppercase;
  165. text-shadow: 0 0 0.1em ;
  166. color: #eeeeee;
  167. outline:none;
  168. -moz-outline-style:none;
  169. color:{color:link};
  170. -moz-transition-duration:0.5s;
  171. -webkit-transition-duration:0.5s;
  172. -o-transition-duration:0.5s;
  173. }
  174.  
  175. a:hover {
  176. text-decoration:none;
  177. outline:none;
  178. -moz-outline-style:none;
  179. color:{color:link hover};
  180. }
  181.  
  182. img {
  183. border:none;
  184. }
  185.  
  186.  
  187. #post {
  188. width:400px;
  189. margin-top:0px;
  190. margin-bottom:50px;
  191. }
  192.  
  193.  
  194. #container {margin: auto;
  195. position:fixed;
  196. width: 900px;}
  197.  
  198.  
  199. #entries {
  200. padding:10px;
  201. left:430px;
  202. top:70px;
  203. position:fixed;
  204. background-color:transparent;
  205. width:400px;
  206. height:337px;
  207. top:130px;
  208. padding: 20px;
  209. overflow-x:scroll;
  210. scroll:left;
  211. overflow-x:hidden;
  212. }
  213.  
  214.  
  215. #theme {
  216. width:250px;
  217. margin:0 auto -12px auto;
  218. }
  219.  
  220. #sidebar {
  221. color:{color:text};
  222. width:100px;
  223. height:auto;
  224. margin-top:90px;
  225. margin-left:165px;
  226. text-align:left;
  227. }
  228.  
  229. #sidebarimage img {
  230. width:100px;
  231. opacity:.9;
  232. margin-top:-10px;
  233. margin-bottom:0px;
  234. margin-left:43px;
  235. }
  236.  
  237. #actualnews {
  238. font-family:arial;
  239. font-size:10px;
  240. color: #b8b8b8;
  241. width:110px;
  242. height:360;
  243. padding-top:3px;
  244. border:1px solid#ffffff;
  245. margin-left: -450px;
  246. margin-top:130px;
  247. text-align:center;
  248. position:fixed;
  249. }
  250.  
  251.  
  252.  
  253. #alinks {
  254. font-family:arial;
  255. width:220px;
  256. margin-top:10px;
  257. margin-left:10px;
  258. font-size:20px;
  259. text-transform:uppercase;
  260. text-align:center;
  261. line-height:280%;
  262. }
  263.  
  264. #links a{
  265. line-height:280%;
  266. border-bottom:0px solid #fff;
  267. margin-top:4px;
  268. margin-left:10px;
  269. color: #323031;
  270. -moz-transition-duration:.2s;
  271. -webkit-transition-duration:.2s;
  272. -o-transition-duration:.2s;
  273. }
  274.  
  275. #links a:hover {
  276. color: {color:link hover};
  277. width:60px;
  278. -moz-transition-duration:0.2s;
  279. -webkit-transition-duration:0.2s;
  280. -o-transition-duration:0.2s;
  281. }
  282.  
  283.  
  284. #blinks {
  285. font-family:arial;
  286. width:220px;
  287. margin-top:-25px;
  288. margin-left:-10px;
  289. font-size:15px;
  290. text-transform:uppercase;
  291. text-align:center;
  292. line-height:280%;
  293. }
  294.  
  295. #links a{
  296. line-height:280%;
  297. border-bottom:0px solid #fff;
  298. margin-top:4px;
  299. margin-left:30px;
  300. color: #d4d5d6;
  301. -moz-transition-duration:.2s;
  302. -webkit-transition-duration:.2s;
  303. -o-transition-duration:.2s;
  304. }
  305.  
  306. #links a:hover {
  307. color: {color:link hover};
  308. width:60px;
  309. -moz-transition-duration:0.2s;
  310. -webkit-transition-duration:0.2s;
  311. -o-transition-duration:0.2s;
  312. }
  313.  
  314.  
  315. #clinks {
  316. font-family:arial;
  317. width:220px;
  318. margin-top:-75px;
  319. margin-left:-5px;
  320. font-size:15px;
  321. text-transform:uppercase;
  322. text-align:center;
  323. line-height:280%;
  324. }
  325.  
  326. #links a{
  327. line-height:280%;
  328. border-bottom:0px solid #fff;
  329. margin-top:4px;
  330. margin-left:30px;
  331. color: #d4d5d6;
  332. -moz-transition-duration:.2s;
  333. -webkit-transition-duration:.2s;
  334. -o-transition-duration:.2s;
  335. }
  336.  
  337. #links a:hover {
  338. color: {color:link hover};
  339. width:60px;
  340. -moz-transition-duration:0.2s;
  341. -webkit-transition-duration:0.2s;
  342. -o-transition-duration:0.2s;
  343. }
  344.  
  345.  
  346. #dlinks {
  347. font-family:arial;
  348. width:220px;
  349. margin-top:-20px;
  350. margin-left:-25px;
  351. font-size:15px;
  352. text-transform:uppercase;
  353. text-align:center;
  354. line-height:280%;
  355. }
  356.  
  357. #links a{
  358. line-height:280%;
  359. border-bottom:0px solid #fff;
  360. margin-top:4px;
  361. margin-left:30px;
  362. color: #d4d5d6;
  363. -moz-transition-duration:.2s;
  364. -webkit-transition-duration:.2s;
  365. -o-transition-duration:.2s;
  366. }
  367.  
  368. #links a:hover {
  369. color: {color:link hover};
  370. width:60px;
  371. -moz-transition-duration:0.2s;
  372. -webkit-transition-duration:0.2s;
  373. -o-transition-duration:0.2s;
  374. }
  375.  
  376.  
  377. #elinks {
  378. font-family:arial;
  379. width:220px;
  380. margin-top:-25px;
  381. margin-left:15px;
  382. font-size:15px;
  383. text-transform:uppercase;
  384. text-align:center;
  385. line-height:280%;
  386. }
  387.  
  388. #links a{
  389. line-height:280%;
  390. border-bottom:0px solid #fff;
  391. margin-top:4px;
  392. margin-left:30px;
  393. color: #d4d5d6;
  394. -moz-transition-duration:.2s;
  395. -webkit-transition-duration:.2s;
  396. -o-transition-duration:.2s;
  397. }
  398.  
  399. #links a:hover {
  400. color: {color:link hover};
  401. width:60px;
  402. -moz-transition-duration:0.2s;
  403. -webkit-transition-duration:0.2s;
  404. -o-transition-duration:0.2s;
  405. }
  406.  
  407. #flinks {
  408. font-family:arial;
  409. width:220px;
  410. margin-top:-80px;
  411. margin-left:-30px;
  412. font-size:15px;
  413. text-transform:uppercase;
  414. text-align:center;
  415. line-height:280%;
  416. }
  417.  
  418. #links a{
  419. line-height:280%;
  420. border-bottom:0px solid #fff;
  421. margin-top:4px;
  422. margin-left:30px;
  423. color: #d4d5d6;
  424. -moz-transition-duration:.2s;
  425. -webkit-transition-duration:.2s;
  426. -o-transition-duration:.2s;
  427. }
  428.  
  429. #links a:hover {
  430. color: {color:link hover};
  431. width:60px;
  432. -moz-transition-duration:0.2s;
  433. -webkit-transition-duration:0.2s;
  434. -o-transition-duration:0.2s;
  435. }
  436.  
  437.  
  438. .sidebartitle {
  439. width:300px;
  440. text-align:center;
  441. font-family:'californian fb';
  442. line-height:120%;
  443. margin-left:-58px;
  444. word-spacing:2px;
  445. font-style:italic;
  446. font-size:16px;
  447. margin-top:10px;
  448. color:{color:title};
  449. }
  450.  
  451. #pagination {
  452. font-family:corbel;
  453. width:250px;
  454. font-size:9px;
  455. margin-top:25px;
  456. margin-left:-8px;
  457. padding-left:5px;
  458. letter-spacing:1px;
  459. text-align:center;
  460. text-transform:uppercase;
  461. }
  462.  
  463. #pagination a {
  464. color:{color:link};
  465. }
  466.  
  467. #info {
  468. font-family:arial;
  469. width:400px;
  470. margin-top:8px;
  471. padding-top:4px;
  472. font-size:10px;
  473. border-top:1px solid #ddd;
  474. opacity:0;
  475. color:#ee6b8c;
  476. text-transform:uppercase;
  477. font-style:normal;
  478. text-align:left;
  479. -moz-transition-duration:0.5s;
  480. -webkit-transition-duration:0.5s;
  481. -o-transition-duration:0.5s;
  482. background-image:url('{image:info image}');
  483. border: 1px solid #ffffff;
  484. border-radius: 0px;
  485. }
  486.  
  487. #info a {
  488. color:#3f3f3f;
  489. }
  490.  
  491. #info a:hover {
  492. color:{color:link hover};
  493. }
  494.  
  495. .tags {
  496. font-family:arial;
  497. font-style:normal;
  498. width:400;
  499. margin-top:4px;
  500. text-transform:normal;
  501. font-style:normal;
  502. line-height:120%;
  503. padding-top:0px;
  504. font-size:8px;
  505. opacity:0;
  506. letter-spacing:1px;
  507. text-align:left;
  508. -moz-transition-duration:0.5s;
  509. -webkit-transition-duration:0.5s;
  510. -o-transition-duration:0.5s;
  511. }
  512. .tags a{
  513. color:{color:link};
  514. -moz-transition-duration:0.2s;
  515. -webkit-transition-duration:0.2s;
  516. -o-transition-duration:0.2s;
  517. }
  518. .tags a:hover{
  519. color:{color:link hover};
  520. -moz-transition-duration:0.2s;
  521. -webkit-transition-duration:0.2s;
  522. -o-transition-duration:0.2s;
  523. }
  524.  
  525. #post:hover #info{
  526. opacity:1;
  527. -moz-transition-duration:1s;
  528. -webkit-transition-duration:1s;
  529. -o-transition-duration:1s;
  530. }
  531. #post:hover .tags{
  532. opacity:1;
  533. -moz-transition-duration:1s;
  534. -webkit-transition-duration:1s;
  535. -o-transition-duration:1s;
  536. }
  537.  
  538. /*audio*/
  539. .albumart img {
  540. width: 70px;
  541. padding: 3px;
  542. border: 1px solid {color:border};
  543. }
  544.  
  545. .albumart {
  546. text-align: center;
  547. }
  548.  
  549. .audio {
  550. margin-bottom: 5px;
  551. width: 370px;
  552. }
  553.  
  554. #ask {
  555. float:left;
  556. color:{color:text};
  557. }
  558.  
  559. #credit {
  560. font-size:9px;
  561. font-family:cambria;
  562. font-style:italic;
  563. letter-spacing:1px;
  564. -moz-transition-duration:0.5s;
  565. -webkit-transition-duration:0.5s;
  566. -o-transition-duration:0.5s;
  567. }
  568.  
  569. #credit a {
  570. background-color:#fff;
  571. padding:5px;
  572. border:1px solid #e9e9e9;
  573. position:fixed;
  574. right:15px;
  575. bottom:25px
  576. }
  577.  
  578. #credit a:hover {
  579. color:#fff;
  580. background-color:#191919;
  581. }
  582.  
  583. {CustomCSS}
  584.  
  585.  
  586.  
  587. .popup_block {
  588. display:none;
  589. background:#ffffff;
  590. padding:0px;
  591. border:1px solid #ffffff; /* if you want a solid white pop-up, delete this */
  592. float:left;
  593. position:fixed;
  594. left:689px;
  595. top:360px;
  596. max-width: 400px;
  597. height: 378px;
  598. overflow-y:scroll;
  599. overflow-x:hidden;
  600. z-index: 99999;
  601. }
  602.  
  603. *html #fade {position: absolute;}
  604. *html .popup_block {position: absolute;}
  605. #fade {
  606. display:none;
  607. position:fixed;
  608. left:0px;
  609. top:0px;
  610. width:100%;
  611. height:100%;
  612. z-index:9999;
  613. background:#000; /* change to #fff for solid white */
  614. opacity:0; /* change to opacity:1; */
  615. }
  616.  
  617.  
  618.  
  619. </style><!--------------- TYPING/MOVING TITLE ----------------------->
  620.  
  621. <script type="text/javascript">
  622. var rev = "fwd";
  623. function titlebar(val)
  624. {
  625. var msg = "PINK MATTER.";
  626. var res = " ";
  627. var speed = 100;
  628. var pos = val;
  629. msg = "PINK MATTER.";
  630. var le = msg.length;
  631. if(rev == "fwd"){
  632. if(pos < le){
  633. pos = pos+1;
  634. scroll = msg.substr(0,pos);
  635. document.title = scroll;
  636. timer = window.setTimeout("titlebar("+pos+")",speed);}
  637. else{
  638. rev = "bwd";
  639. timer = window.setTimeout("titlebar("+pos+")",speed);}}
  640. else{
  641. if(pos > 0){
  642. pos = pos-1;
  643. var ale = le-pos;
  644. scrol = msg.substr(ale,le);
  645. document.title = scrol;
  646. timer = window.setTimeout("titlebar("+pos+")",speed);}
  647. else{
  648. rev = "fwd";
  649. timer = window.setTimeout("titlebar("+pos+")",speed);
  650. }}}
  651. titlebar(0);
  652. </script></head><body>
  653.  
  654. <div id="bite">
  655. <div id="thekey"><img src="{image:thekey}"></div>
  656. <div class="death">
  657. <div id="actualnews">
  658. *fixes the fur around my teddy bears eyes because he looks mad*<br /><br />
  659. <img src="http://i.imgur.com/9S8zSNL.png" height="5" width="100"><br><br />
  660. independent, private & selective rp account for an original character.<br /><EM>written by lou.</EM><br /><br /> est april, 2016. <BR /><BR/><img src="http://i.imgur.com/9S8zSNL.png" height="5" width="100"><br><br />
  661. nsfw <em>&</em> triggering. <br />read rules and about before interacting.<BR /><BR/><img src="http://i.imgur.com/9S8zSNL.png" height="5" width="100"><br><br /><a href="http://notherbody.tumblr.com/">other blog.</a><br /><strong><small>#DERBYDIVA</small></strong>
  662. </div>
  663. </div></div>
  664.  
  665.  
  666. </div>
  667.  
  668. <div id="theme">
  669.  
  670. <div id="container">
  671.  
  672. <div id="sidebar">
  673.  
  674. <div id="sidebarimage">
  675. <a href="/"><img src="{image:sidebar}"></a></div>
  676.  
  677. <div class="sidebartitle">{text:sidebartitle}</div>
  678.  
  679. <div id="alinks">
  680. <a href="{text:link1 url}" title="refresh.">1</a></div>
  681.  
  682. <div id="blinks">
  683. <a href="#?w=400" rel="box1" class="poplight" a title="ask.">2</a></div>
  684.  
  685. <div id="clinks">
  686. <a href="#?w=400" rel="box2" class="poplight"a title="rules.">3</a></div>
  687.  
  688. <div id="dlinks">
  689. <a href="#?w=400" rel="box3" class="poplight"a title="start.">4</a></div>
  690.  
  691. <div id="elinks">
  692. <a href="#?w=400" rel="box4" class="poplight"a title="navi.">5</a></div>
  693.  
  694. <div id="flinks">
  695. <a href="http://notherbody.tumblr.com/archive" title="archive.">6</a></div>
  696.  
  697.  
  698.  
  699.  
  700. </div>
  701.  
  702. <div id="entries">{block:Posts}<div id="post">
  703.  
  704. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  705.  
  706. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  707.  
  708. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  709.  
  710. {block:Quote}<big><center>"{Quote}"</center></big>{block:Source}<br><br> <div style="text-align: center;">— {Source}</div>{/block:Source}{/block:Quote}
  711.  
  712. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  713.  
  714. {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}
  715.  
  716. {block:Audio}<div class="capt">
  717. <div class="albumart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div>
  718. <div class="audio"><div id="play">
  719. <div class="button">{AudioPlayerWhite}</div></div>
  720. <div style="padding-top: 20px; {block:ifnot500pxposts}width: 400px;{/block:ifnot500pxposts} {block:if500pxposts}width: 416px;{/block:if500pxposts} text-align: center; padding-bottom: 20px; border: 1px solid {color:border}; max-height: 70px;"><b>Track:</b> {block:TrackName}{TrackName}{/block:TrackName}<br>
  721. <b>Artist:</b> {block:Artist}{Artist}{/block:Artist}<br>
  722. <b>Album:</b> {block:Album}{Album}{/block:Album}</div></div>
  723. {block:Caption}{Caption}{/block:Caption}</div>{/block:Audio}
  724.  
  725. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  726.  
  727. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  728.  
  729. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  730. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#bb3b5c>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  731.  
  732. {block:RebloggedFrom}&nbsp; <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; <a href="{ReblogURL}"target="_blank" title="reblog this post"><big>+</big> </a>
  733. </div>
  734.  
  735.  
  736. {block:HasTags}
  737. <div class="tags">
  738. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  739. {/block:HasTags}
  740. <div class="postnote">
  741. {block:PostNotes}{PostNotes}{/block:PostNotes}
  742. </div>
  743. </div>
  744. {/block:Posts}
  745.  
  746. <div id="pagination">
  747. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">GO FORWARD.</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}"><big><big>go back.</big></big></a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  748.  
  749.  
  750. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</a></div></div>
  751.  
  752.  
  753. </body>
  754. <div id="box1" class="popup_block">
  755. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/derbydiva.tumblr.com" width="100%"></iframe>
  756. </div>
  757. </div>
  758.  
  759. <div id="box2" class="popup_block">
  760. <p style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px 0px 15px; padding: 0px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; box-sizing: border-box;"><strong>INTRODUCTION:</strong></p>
  761. <ul style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px 0px 0px 35px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; list-style: none; box-sizing: border-box;">
  762. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i&rsquo;m lou, i&rsquo;m seventeen and i live in sweden. my timezone is gmt +1</li>
  763. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">english is not my first language, and i&rsquo;m still learning, so. don&rsquo;t judge me for my spelling? thanks!</li>
  764. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i&rsquo;m usually p nice and open minded ( at least i try to be ) but i do have aspergers, which means that sometimes my social skills might not be on point. i also have kind of a hard time understanding people&rsquo;s feelings, and certain jokes / sarcasm. if i offend you, it&rsquo;s never on purpose. don&rsquo;t be scared to let me know so i can apologize!</li>
  765. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">my askbox is open for plotting ( even if i myself am not the best at it ).</li>
  766. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">ALWAYS TAKE YOUR TIME WITH REPLIES. if you feel like i&rsquo;m rushing you, tell me!! i can assure you that it&rsquo;s not intentional, sometimes i just get excited.</li>
  767. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i don&rsquo;t know how active i&rsquo;ll be, and there&rsquo;s a big chance i&rsquo;ll have to leave for a while sometimes because i just get anxious, so. apologies!</li>
  768. </ul>
  769. <p style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; box-sizing: border-box;"><strong>GENERAL / DISCLAIMER:</strong></p>
  770. <ul style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px 0px 0px 35px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; list-style: none; box-sizing: border-box;">
  771. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">please don&rsquo;t save the icons used on this blog. i made the border psd myself, and i do make all of them from scratch ( aka i save screencaps from fansites of the fcs i use, and crop them etc ). the icon psd can be found&nbsp;<a href="http://bruhofrps.tumblr.com/post/118610624006/bruhofrps-psd-1-if-u-download-pls-like" style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: rgba(26, 26, 26, 0.298039); margin: 0px; padding: 0px 0px 0.15em; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; text-decoration: none; cursor: pointer; box-sizing: border-box; background-image: linear-gradient(rgba(68, 68, 68, 0) 50%, rgba(68, 68, 68, 0.247059) 50%); background-size: 1em 2px; background-position: 0px 1.15em; background-repeat: repeat-x;">here</a>.</li>
  772. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">sadie as a character is my creation. don&rsquo;t steal anything.</li>
  773. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i&rsquo;m gonna be really picky about who i follow. if i don&rsquo;t follow you back it&rsquo;s generally to keep my stress and anxiety levels as low as possible. sorry.</li>
  774. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i will only roleplay with mutuals. if i don&rsquo;t follow you, please don&rsquo;t like any of my starter calls / reply to my opens. the same goes for blogs that aren&rsquo;t roleplay ones, but i&rsquo;m guessing those guys won&rsquo;t read this. oh well!</li>
  775. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i am up for roleplaying with both canons and ocs. if i follow you, i most likely want to write with you.</li>
  776. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">always feel free to turn memes into threads. but if you do, please place them in a new text post and don&rsquo;t reblog the ask itself.</li>
  777. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">NO GODMODDING.</li>
  778. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">fandoms i&rsquo;m part of or / and have verses for include: the walking dead, fear the walking dead, harry potter, teen wolf. if you&rsquo;re a canon from something that isn&rsquo;t listed here and i follow you, feel free to IM/message me about plotting something out.</li>
  779. </ul>
  780. <p style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; box-sizing: border-box;"><strong>TRIGGERS / NSFW:</strong></p>
  781. <ul style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px 0px 0px 35px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; list-style: none; box-sizing: border-box;">
  782. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">triggering subjects will occur, and i&rsquo;ll do my best to tag everything accordingly. if you feel like i&rsquo;ve missed something, please send me a message regarding it.</li>
  783. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i am up for roleplaying smut as i am of legal age ( in sweden the legal age is 15 ), but i will not smut with everyone. it depends on the thread, the dynamic and how comfortable i am with the mun i&rsquo;m writing with. most of the time. i prefer to do it in private on skype. i, of course, won&rsquo;t force anyone to smut with me. if you think the thread is going in that direction and/or you feel uncomfortable with our thead, please let me know! i won&rsquo;t be mad, i promise. i will tag all my nsfw threads with nsfw or nsfw text. ALSO: i do realize that laws are different depending on where you&rsquo;re from, and that tumblr is an american website so the laws in america apply to it. so, like i said, if it seems to be leading in that direction and you&rsquo;re uncomfortable with it, just let me know and we&rsquo;ll skip it.</li>
  784. </ul>
  785. <p style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; box-sizing: border-box;"><strong>SHIPPING:</strong></p>
  786. <ul style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px; padding: 0px 0px 0px 35px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; list-style: none; box-sizing: border-box;">
  787. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i love ships!! like honestly, i ship things so easily that most of the time i have to force myself not write to people in all caps about it. that being said, if i do <strong>not</strong> ship something and you do, feel free to mention it to me. just don&rsquo;t force it.</li>
  788. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i am up for all kinds of relationships! while i do love me some romantic ships, i am also totally up for friendships / enemy&hellip;ships, etc.</li>
  789. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">it should be mentioned that sadie can be very flirtatious if she finds your character attractive. if you feel uncomfortable with that, again, please let me know.</li>
  790. <li style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 0px; padding: 0px 0px 0px 5px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; list-style-type: disc; animation-duration: 1ms; animation-name: nodeInserted; box-sizing: border-box;">i&rsquo;m a multi verse / multi ship blog. for each relationship sadie has with another character, there&rsquo;s usually a separate verse. so unless stated otherwise, expect all interactions to be in separate verses.</li>
  791. </ul>
  792. <p style="-webkit-font-smoothing: antialiased; outline: none 0px; -webkit-tap-highlight-color: transparent; margin: 15px 0px 0px; padding: 0px; border: 0px; font-stretch: inherit; line-height: 21px; vertical-align: baseline; box-sizing: border-box;">more to be added ?</p>
  793. </div>
  794. </div>
  795.  
  796. <div id="box3" class="popup_block">
  797. <p><img src="https://40.media.tumblr.com/388a777fc62a47101f376afd3fc35585/tumblr_inline_o4g3tdojE81u3vy8z_500.png" /></p>
  798. <p></p>
  799. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="#?w=400" rel="pttwo" class="poplight">2</a>.</strong></p>
  800. <p></p>
  801. <p></p>
  802. </div>
  803. </div>
  804.  
  805. <div id="box4" class="popup_block">
  806. <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://derbydiva.tumblr.com/tagged/LOOSE-LIPS-MIGHT-SINK-SHIPS-%28-main-fc-%29.">fc 1&nbsp;<em><strong>(</strong> </em>ashley benson&nbsp;<em><strong>)</strong></em></a>, <a href="http://derbydiva.tumblr.com/tagged/LOOSE-KISSES-MIGHT-TAKE-TRIPS-%28-secondary-fc-%29.">fc 2 <strong><em>(</em></strong> gabriella wilde<strong><em> )</em></strong></a>,&nbsp;<a href="http://derbydiva.tumblr.com/tagged/DO-WHATEVER-GETS-YOU-SEEN-%28-older-fc-%29.">older fc <strong><em>(</em></strong> rachel mcadams <strong><em>)</em></strong></a>&nbsp;<a href="http://derbydiva.tumblr.com/tagged/PHYSIQUE.">body</a>, <a href="http://derbydiva.tumblr.com/tagged/CLOSET.">wardrobe</a>, <a href="http://derbydiva.tumblr.com/tagged/ISMS.">isms</a>, <a href="http://derbydiva.tumblr.com/tagged/NARRATIVE.">narrative</a>, <a href="/verses">verses</a>,&nbsp;<a href="http://derbydiva.tumblr.com/tagged/WANTS.">desires</a>, <a href="http://derbydiva.tumblr.com/tagged/AESTHETIC.">aesthetic</a>, <a href="http://derbydiva.tumblr.com/tagged/HEADCANON.">headcanons</a>, <a href="http://derbydiva.tumblr.com/tagged/ABOUT.">about</a>, <a href="http://derbydiva.tumblr.com/tagged/IPOD.">music</a>, <a href="http://derbydiva.tumblr.com/tagged/THREAD.">threads</a>, <a href="http://derbydiva.tumblr.com/tagged/WISHLIST.">plots</a>, <a href="http://derbydiva.tumblr.com/tagged/ZAMN-ZANIEL-%28-ooc-%29.">ooc</a>, <a href="http://derbydiva.tumblr.com/tagged/MEME.">memes</a>, <a href="http://derbydiva.tumblr.com/tagged/mun%20face%20for%20ts">mun face</a>, <a href="http://derbydiva.tumblr.com/tagged/IC%20ASK.">ic ask</a>, <a href="http://derbydiva.tumblr.com/tagged/OOC%20ASK.">ooc ask</a>, <a href="http://derbydiva.tumblr.com/tagged/OPEN.">open starters</a>.</p>
  807. </div>
  808. </div>
  809.  
  810. <div id="pttwo" class="popup_block">
  811. <p>december 1st, 1998. you&rsquo;re born screaming, just like most kids are. you have a mother, a father and an older brother. your parents smile at you, happy that you&rsquo;re finally there. your brother has his arms crossed, a pout on his lips. he&rsquo;s four years old and he is <em>angry</em>. angry that you&rsquo;re a girl, angry that your mom and dad won&rsquo;t be paying as much attention to him anymore and angry because your dad wouldn&rsquo;t get him a candy bar out of the hospital&rsquo;s vending machine.</p>
  812. <p>after a while your mother convinces him into turning around. he reaches out, and you grab his finger. he laughs, and so do your parents. this, by definition, is a happy family.&nbsp;</p>
  813. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong> &nbsp;<a href="#?w=400" rel="ptthree" class="poplight">3</a>.</strong>.</p></strong></h2>
  814. </div>
  815. </div>
  816.  
  817.  
  818.  
  819. <div id="ptthree" class="popup_block">
  820. <p>on your eight birthday your parents get you a pair of roller skates. they&rsquo;re pink, and the wheels are shining white, like your teeth when you flash them a smile. your grandma says something along the lines of<em> &lsquo;look at her. she could be a pageant queen&rsquo;</em>. you don&rsquo;t know what pageant mean, but you know what queen means, and you tell her that you&rsquo;d rather be a princess. your brother gives you a card. on the outside, he&rsquo;s made a drawing of you and him. you&rsquo;re holding hands. your hair is the same color as the sun. you smile at him. he smiles at you, even though he&rsquo;s embarrassed.</p>
  821. <p>you are, by definition, still a happy family.</p>
  822. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <strong><a href="#?w=400" rel="ptfour" class="poplight">4</a>.</strong></p>
  823. </div>
  824. </div>
  825.  
  826. <div id="ptfour" class="popup_block">
  827. <h2>&mdash;911, what&rsquo;s your emergency?</h2>
  828. <p>&lsquo;my brother, he&rsquo;s not breathing,&rsquo; your voice breaks, your breath getting caught in your throat. your throat feels like it&rsquo;s filled with glue. your arms hurt from trying to hold him up. you feel like you&rsquo;re about to pass out. when you drop the phone on the floor, you curse for the first time in your life. the wheels of your skates still rolling, where they lay thrown next to you, you press your head against your brother&rsquo;s and it is <em>cold</em>. your tears stain his eyelids as you rock him back and forth, remembering what your mom used to do when he was having one of his panic attacks. it doesn&rsquo;t help. when you&rsquo;re pulled away from him, he drops onto the floor with a loud thud. unmoving, arms by his sides, frozen like he&rsquo;d turned into ice.</p>
  829. <p>three weeks after his funeral your mother and father tell you they&rsquo;re getting a divorce, but that they&rsquo;re going to keep living together. you force a smile, the not genuine version of your pageant queen one. by definition, you&rsquo;re no longer a happy family. you throw your skates on and rush out the door. your tears flying off your cheeks as the wind, hard and cold, hits your cheeks.&nbsp;</p>
  830. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong><a href="#?w=400" rel="stats1" class="poplight">stats</a>.</p>
  831. </div>
  832. </div>
  833.  
  834. <div id="stats1" class="popup_block">
  835. <p><strong>1.</strong> your name is sadie rose holstein. nicknames include, but aren&rsquo;t limited to: s, sades, rose, sadie rose, roller girl, <strike>princess peach</strike>.</p>
  836. <p><strong>2.</strong> you were born december first in 1998. this makes you 17 years old. sometimes you feel older, and sometimes you feel younger.</p>
  837. <p><strong>3.</strong> you&rsquo;ve been playing roller derby since you were thirteen. that was when your brother told you about the sport that spotlighted girls on roller skates. to your teammates you&rsquo;re known as <span style="text-decoration: underline;">princess peach</span>.</p>
  838. <p><strong>4.</strong> more than anything else, you&rsquo;re a teenage girl. things that sum you up are personality tests in seventeen magazine, sleeping with your makeup on, staring at cute boys and girls, hoping they&rsquo;ll notice you, putting flowers in your hair <strong><em>&amp;</em></strong> glitter on your eyelids.</p>
  839. <p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<strong><a href="#?w=400" rel="stats" class="poplight">more stats</a>.</strong>.</p>
  840. </div>
  841. </div>
  842.  
  843. <div id="stats" class="popup_block">
  844. <p><em><small>general.</small></em></p>
  845. <p><small><strong>name:</strong> sadie rose holstein </small></p>
  846. <p><small><strong>nicknames:</strong> s, sades, rollergirl, princess peach<strong><em> (</em> </strong>derby name <strong><em>)</em></strong><br /></small></p>
  847. <p><small><strong>dob / age:</strong> december 1st, 1998<em><strong> ( </strong></em>17 <em><strong>)</strong></em></small></p>
  848. <p><small><strong>species:</strong> human</small></p>
  849. <p><small><strong>gender:</strong> cis female</small></p>
  850. <p><small><strong>orientation:</strong> pansexual panromantic</small></p>
  851. <p><small><strong>nationality:</strong> american</small></p>
  852. <p><small><strong>spoken languages: </strong>english, french.</small></p>
  853. <p><small><strong>occupation:</strong> student / beauty vlogger</small></p>
  854. <p><small><strong>religion:</strong> atheist</small></p>
  855. <p><em><small>visage.</small></em></p>
  856. <p><small><strong>face claim: </strong>ashley benson&nbsp;<strong>alt</strong>: gabriella wilde.<strong><br /></strong></small></p>
  857. <p><small><strong>voice claim: </strong><a href="https://www.youtube.com/watch?v=PzkKufz1P_I">mykie<strong><em> (</em> </strong>glam <strong><em>&amp;</em></strong> gore<strong><em> )</em></strong></a>.</small></p>
  858. <p><small><strong>height: </strong>5'3 without her roller skates on, aprox. 5'5 with them on.</small></p>
  859. <p><small><strong>hair:</strong> previously blonde and wavy, it&rsquo;s now dyed a pastel pink. it reaches down to the middle of her back, and is almost always let loose. </small></p>
  860. <p><small><strong>style:</strong> hip<em><strong>?</strong></em> lots of crop tops and high waisted jeans / shorts, chokers, pastels etc. 60s + 90s inspired.&nbsp;<strong style="font-size: 11.6667px; line-height: 16.3333px;"><a href="http://heavilyimplied.tumblr.com/post/141391005537/psa">SADIE ALWAYS WEARS ROLLER SKATES</a>.</strong></small></p>
  861. <p><small><strong>distinguishing features:</strong> besides the bright<strong><em> &amp;</em></strong> uniquely colored hair, she has lots of moles / birthmarks scattered across her body. <a href="http://www.tattoochief.com/wp-content/uploads/2015/07/TC-559d3642116de-hip-rose-tattoo-3-145x145.jpg">a tattoo of a rose on her hip</a>, a small scar on her chin from a fall as a child. a belly button piercing. <strong><a href="http://heavilyimplied.tumblr.com/post/141391005537/psa">SADIE ALWAYS WEARS ROLLER SKATES</a>.</strong></small></p>
  862. <p><small><strong>eye color:</strong> greenish blue.</small></p>
  863. <p><small><strong>build: </strong>definitely on the curvier side, but not big enough for the people in her school to call her fat <em><strong>(</strong> </em>most of the time, at least <em><strong>)</strong></em>. her thighs rub together when she walks, which is a pain in the ass during the summers. she&rsquo;s got a fair amount of muscle, due to her part in the local roller derby team, the derby divas. her chest is large enough for her to almost never wear tops that shows it off.</small></p>
  864. <p><em><small>background.</small></em></p>
  865. <p><small><strong>hometown:</strong> pittsboro, north carolina.</small></p>
  866. <p><small><strong>current residence:</strong> in the suburbs. specific location depends on interactions.</small></p>
  867. <p><small><strong>education level:</strong> currently a senior in high school.</small></p>
  868. <p><small><strong>father:</strong> bill holstein<em><strong> (</strong></em> alive<em><strong> )</strong></em></small></p>
  869. <p><small><strong>mother:</strong> deborah holstein <em><strong>( </strong></em>alive <em><strong>)</strong></em></small></p>
  870. <p><small><strong>siblings:</strong> jackson holstein<em><strong> ( </strong></em>deceased<em><strong> )</strong></em></small></p>
  871. <p><em><small>psych.</small></em></p>
  872. <p><small><strong>moral alignment:</strong> neutral good</small></p>
  873. <p><small><strong>usual mood / expression:</strong> due to her brother&rsquo;s passing, sadie smiles less than she would have, otherwise. but she still tries</small></p>
  874. <p><small><strong>jung:</strong> ENFP</small></p>
  875. <p><small><strong>enneagram</strong>: type 7 <em><strong>(</strong> </em>the generalist <em><strong>)</strong></em></small></p>
  876. <p><small><strong>temperament: </strong>Phlegmatic </small></p>
  877. <p><small><strong>hogwarts house: </strong>gryffindor</small></p>
  878. <p><small><strong>prominent traits: </strong>caring, out going, smart, hard working, creative, out doorsy</small></p>
  879. <p><small><strong>skills: </strong>crafting, math, socializing, more tbd </small></p>
  880. <p><small><strong>character tropes:</strong> adorkable, the ditz, girly bruiser, innocent blue eyes, nice girl, the pollyanna, smarter than you look, badass adorable.</small></p>
  881. <p><small><strong>disorders: </strong>tbd</small></p>
  882. <p><small><strong>sin: </strong>envy</small></p>
  883. <p><small><strong>virtue: </strong>diligence</small></p>
  884. </div>
  885. </div>
  886. </div></div></div></div></div></div></div></div></div></div>
  887. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement