Advertisement
aminacorey

scott.

Aug 6th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 61.05 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>
  4.  
  5. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11. <!---- this is theme 44 by Hollywhood
  12. please don't remove the credit
  13. thank you
  14. --->
  15.  
  16. <meta name="color:Background" content="#ffffff"/>
  17. <meta name="color:Text" content="#9B9B9B"/>
  18. <meta name="color:Link" content="#fff"/>
  19. <meta name="color:scrollbar" content="#999999">
  20. <meta name="color:title" content="#999999">
  21. <meta name="color:Link Hover" content="#eeeeee"/>
  22.  
  23. <meta name="image:sidebar" content=""/>
  24. <meta name="text:sidebartitle" content="">
  25. <meta name="image:background" content=""/>
  26. <meta name="image:thekey" content=""/>
  27. <meta name="image:pop" content""/>
  28.  
  29. <meta name="text:link 1" content="Link 1 Title"/>
  30. <meta name="text:link 1 url" content="/"/>
  31. <meta name="text:link 2" content="Link 2 Title"/>
  32. <meta name="text:link 2 url" content="/"/>
  33. <meta name="text:link 3" content="Link 3 Title"/>
  34. <meta name="text:link 3 url" content="/"/>
  35. <meta name="text:link 4" content="Link 4 Title"/>
  36. <meta name="text:link 4 url" content="/"/>
  37. <meta name="text:link 5" content="Link 5 Title"/>
  38. <meta name="text:link 5 url" content="/"/>
  39. <meta name="text:link 6" content="Link 6 Title"/>
  40. <meta name="text:link 6 url" content="/"/>
  41.  
  42. <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:700' rel='stylesheet' type='text/css'>
  43. <link href='https://fonts.googleapis.com/css?family=La+Belle+Aurore' rel='stylesheet' type='text/css'>
  44.  
  45. <!--Pop-up-->
  46. <script type="text/javascript"
  47. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  48. <script>
  49. $(document).ready(function() {
  50. //
  51. //When you click on a link with class of poplight and the href starts with a #
  52. $('a.poplight[href^=#]').click(function() {
  53. var popID = $(this).attr('rel'); //Get Popup Name
  54. var popURL = $(this).attr('href'); //Get Popup href to define size
  55. //Pull Query & Variables from href URL
  56. var query= popURL.split('?');
  57. var dim= query[1].split('&');
  58. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  59. //Fade in the Popup and add close button
  60. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) });
  61. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  62. var popMargTop = ($('#' + popID).height() + 0) ;
  63. var popMargLeft = ($('#' + popID).width() + 35) / 2;
  64. //Apply Margin to Popup
  65. $('#' + popID).css({
  66. 'margin-top' : -popMargTop,
  67. 'margin-left' : -popMargLeft
  68. });
  69. //Fade in Background
  70. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  71. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  72. return false;
  73. });
  74. //Close Popups and Fade Layer
  75. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  76. $('#fade , .popup_block').fadeOut(function() {
  77. $('#fade, a.close').remove(); //fade them both out
  78. });
  79. return false;
  80. });
  81. });
  82.  
  83. </script>
  84. <!--Pop-up ends-->
  85.  
  86. <!--askerpopup-->
  87. <script type="text/javascript"
  88. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  89. <script>
  90. $(document).ready(function() {
  91. //
  92. $('a.poplight[href^=#]').click(function() {
  93. var popID = $(this).attr('rel'); //Get Popup Name
  94. var popURL = $(this).attr('href'); //Get Popup href to define size
  95. var query= popURL.split('?');
  96. var dim= query[1].split('&');
  97. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  98. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  99. var popMargTop = ($('#' + popID).height() + 80) / 2;
  100. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  101. //Apply Margin to Popup
  102. $('#' + popID).css({
  103. 'margin-top' : -popMargTop,
  104. 'margin-left' : -popMargLeft
  105. });
  106. $('body').append('<div id="fade"></div>');
  107. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  108. return false;
  109. });
  110. $('a.close, #fade').live('click', function() {
  111. $('#fade , .popup_block').fadeOut(function() {
  112. $('#fade, a.close').remove(); //fade them both out
  113. });
  114. return false;
  115. });
  116. });
  117. </script>
  118.  
  119. <script type="text/javascript">
  120. WebFontConfig = {
  121. google: { families: [ 'Source+Sans+Pro:700:latin' ] }
  122. };
  123. (function() {
  124. var wf = document.createElement('script');
  125. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  126. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  127. wf.type = 'text/javascript';
  128. wf.async = 'true';
  129. var s = document.getElementsByTagName('script')[0];
  130. s.parentNode.insertBefore(wf, s);
  131. })(); </script>
  132.  
  133. <script type="text/javascript">
  134. WebFontConfig = {
  135. google: { families: [ 'La+Belle+Aurore::latin' ] }
  136. };
  137. (function() {
  138. var wf = document.createElement('script');
  139. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  140. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  141. wf.type = 'text/javascript';
  142. wf.async = 'true';
  143. var s = document.getElementsByTagName('script')[0];
  144. s.parentNode.insertBefore(wf, s);
  145. })(); </script>
  146.  
  147. <style type="text/css">
  148.  
  149.  
  150.  
  151. #bite
  152. #bite a{
  153. display:block
  154. }
  155. #bite .death {
  156. margin-top:0px;filter: alpha(opacity = 0);
  157. opacity:0;-webkit-transition: all 0.5s ease-out;
  158. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  159. }
  160.  
  161. #bite:hover .death {
  162. margin-top:0px;
  163. -webkit-transition: all 0.8s ease-out;
  164. -moz-transition: all 0.8s ease-out;
  165. transition: all 0.8s ease-out;
  166. filter: alpha(opacity = 100);
  167. filter: alpha(opacity = 100);
  168. opacity:0.6;
  169. }
  170.  
  171.  
  172. .scroll{
  173. text-align:left;
  174. padding:10px;
  175. width: 270px; /* width of scroll box */
  176. height: 280px; /* height of scroll box */
  177. background-color: #000; /* background of box */
  178. opacity:0.7;
  179. left:60%;
  180. color: #fff; /* TEXT color */
  181.  
  182. font-size: 10px;
  183. font-family: 'calibri';
  184.  
  185. overflow: auto;
  186. }
  187.  
  188. /*
  189.  
  190. ----------------------------------
  191. Scroll bar code
  192. ----------------------------------
  193.  
  194. */
  195.  
  196. .scroll::-webkit-scrollbar {
  197. height: 10px;
  198. width: 10px;
  199. background: #aaa; /* Scrollbar background color */
  200. }
  201.  
  202. .scroll::-webkit-scrollbar-thumb {
  203. background-color: #aaa; /* Scroll bar color */
  204. border:1px solid #ffffff;
  205.  
  206. -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
  207. }
  208.  
  209. .scroll::-webkit-scrollbar-corner {
  210. background: #aaa;
  211. }
  212.  
  213.  
  214.  
  215. /*pops*/
  216.  
  217. #fade {
  218. display: none;
  219. background: transparent;
  220. position: fixed;
  221. left: 0;
  222. top: 200;
  223. width: 100%;
  224. height: 100%;
  225. opacity: .0;
  226. z-index: 9999;
  227. }
  228.  
  229. .popup_block{
  230. display: none;
  231.  
  232.  
  233. padding-left: 10px;
  234. padding-right: 0px;
  235. padding-top: 10px;
  236. padding-bottom: 10px;
  237. text-align:center;
  238. float: center;
  239. position: fixed;
  240. top:340px;
  241. width:240px;
  242. left:65%;
  243. opacity:0.4;
  244. z-index: 99999;
  245. }
  246.  
  247. img.btn_close {
  248. float: right;
  249. margin: -55px -55px 0 0;
  250. }
  251.  
  252. *html #fade {
  253. position: absolute;
  254. }
  255.  
  256. *html .popup_block {
  257. position: absolute;
  258. }
  259.  
  260. /* Pop-up END */
  261.  
  262.  
  263.  
  264. .popup_block{
  265. display:none;
  266. background:#000;
  267. opacity:0px;
  268. padding:-5px;
  269. border:0px /* if you want a solid white pop-up, delete this */
  270. float:left;
  271. width:200px;
  272. position:fixed;
  273. z-index: 99999;
  274. opacity:1;
  275. -webkit-box-shadow: 0px 0px 0px #b3b3b3; /* delete for solid white */
  276. -moz-box-shadow: 0px 0px 0px #b3b3b3; /* delete for solid white */
  277. box-shadow: 0px 0px 0px #b3b3b3; /* delete for solid white */
  278. }
  279.  
  280. *html #fade {position: absolute;}
  281. *html .popup_block {position: absolute;}
  282. #fade {
  283. display:none;
  284. left:550px;
  285. position:fixed;
  286. top:150px;
  287. width:50%;
  288. height:50%;
  289. z-index:9999;
  290. background-image: url("https://41.media.tumblr.com/458af1ebbb1cbd4b427a0042b7478dd3/tumblr_inline_o4myf86p3w1u529ru_540.png"); /* change to #fff for solid white */
  291. background-size: 470px 320px;
  292. background-repeat: no-repeat;
  293. background-position: 0px 0px;
  294. opacity:1; /* change to opacity:1; */
  295. }
  296.  
  297.  
  298.  
  299.  
  300. /* UPDATES TAB */
  301.  
  302. /* okay so this is the hover code don't touch it because if you do you will break everything sorry */
  303.  
  304. #hover
  305. #hover a{
  306. display:block
  307. }
  308. #hover .meow {
  309. margin-top:0px;filter: alpha(opacity = 0);
  310. opacity:0;-webkit-transition: all 0.8s ease-out;
  311. -moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;
  312. }
  313.  
  314. #hover:hover .meow {
  315. margin-top:0px;
  316. -webkit-transition: all 0.8s ease-out;
  317. -moz-transition: all 0.8s ease-out;
  318. transition: all 0.8s ease-out;
  319. filter: alpha(opacity = 100);
  320. filter: alpha(opacity = 100);
  321. opacity:100;
  322. }
  323.  
  324. /* ok end of hover code now you can edit things woohoo */
  325.  
  326.  
  327.  
  328. ::-webkit-scrollbar-thumb{
  329. background-color: #b3b3b3;
  330. border: 2px solid #b3b3b3;
  331. height:auto;
  332. }
  333.  
  334. ::-webkit-scrollbar {
  335. height:auto;
  336. width:11px;
  337. background-color: #b3b3b3;
  338. border:5px solid #b3b3b3;
  339. }
  340.  
  341.  
  342. iframe#tumblr_controls {
  343. white-space:nowrap;
  344. -webkit-filter: invert(100%);
  345. -moz-filter: invert(100%);
  346. -o-filter: invert(100%);
  347. -ms-filter: invert(100%);
  348. filter: invert(100%);
  349. opacity:.2;transition: .8s ease-in-out;
  350. -webkit-transition: .8s ease-in-out;
  351. -moz-transition: .8s ease-in-out;
  352. -o-transition: .8s ease-in-out;
  353. }
  354.  
  355. h1 {
  356. font-weight:normal;
  357. font-size:13px;
  358. text-align:center;
  359. font-style:normal;
  360. line-height:100%;
  361. letter-spacing:1px;
  362. text-transform:normal;
  363. color:{color:text};
  364. }
  365.  
  366. h2 {
  367. font-size:10px;
  368. text-align:center;
  369. line-height:100%;
  370. letter-spacing:-0.5px;
  371. color:{color:text};
  372. font-weight:bold;
  373. text-transform:uppercase;
  374. padding:5px;
  375. padding-bottom:2px;
  376. }
  377.  
  378.  
  379. blockquote {
  380. padding:2px 7px;
  381. margin:3px 0 3px 8px;
  382. background-color:transparent;
  383. border-left:2px solid #666 ;
  384. border-radius:10px;
  385. }
  386.  
  387.  
  388.  
  389. body {
  390. margin:0px;
  391. font-family:arial;
  392. text-transform:bold;
  393. line-height:100%;
  394. font-size:12px;
  395. text-align:justify;
  396. background-repeat: no-repeat;
  397. color:{color:text};
  398. background:{color:background} url('{image:background}')
  399. }
  400.  
  401. a {
  402. text-decoration:none;
  403. outline:none;
  404. -moz-outline-style:none;
  405. color:{color:link};
  406. -moz-transition-duration:0.5s;
  407. -webkit-transition-duration:0.5s;
  408. -o-transition-duration:0.5s;
  409. }
  410.  
  411. a:hover {
  412. text-decoration:none;
  413. outline:none;
  414. -moz-outline-style:none;
  415. color:{color:link hover};
  416. }
  417.  
  418. img {
  419. border:none;
  420. }
  421.  
  422. /* --- UPDATES ---*/
  423.  
  424. #updates {
  425. font-size:9px;
  426. color:#fff;
  427. text-align:right;
  428. height:15px;
  429. width:100px;
  430. padding:4px;
  431. top:400px;
  432. left:430px;
  433. z-index:10;
  434. position:fixed;
  435. overflow:hidden;
  436. -webkit-transition: all 0.5s ease-in-out;
  437. -moz-transition: all 0.5s ease-in-out;
  438. -o-transition: all 0.5s ease-in-out;
  439. }
  440.  
  441. #updates:hover {
  442. height:295px;
  443. -webkit-transition: all 0.5s ease-in-out;
  444. -moz-transition: all 0.5s ease-in-out;
  445. -o-transition: all 0.5s ease-in-out;
  446. }
  447.  
  448. #updatestitle {
  449. font-size:10px;
  450. text-transform:uppercase;
  451. font-family:arial;
  452. font-weight:bold;
  453. color:#fff;
  454. }
  455.  
  456. #container {margin: auto;
  457. width: 900px;}
  458.  
  459. #pcontainer {
  460. background-color: #000;
  461. width:270px;
  462. height:295px;
  463. padding: 0px;
  464. top:206px;
  465. left:472px;
  466. position:fixed;
  467. overflow-y:scroll;
  468. overflow-x:hidden;
  469. border:0px solid {color:Link Hover};
  470. background:rgba(255,255,255,0.0);
  471. background-size:cover;
  472. box-shadow:rgba(100,100,100,0.0) 0px 0px 0px;
  473. }
  474.  
  475. #post {
  476. width:250px;
  477. padding-bottom:20px;
  478. margin-top:3px;
  479. opacity:0.5;
  480. -webkit-transition: all 0.7s ease;
  481. -moz-transition: all 0.7s ease;
  482. -o-transition: all 0.7s ease;
  483. }
  484.  
  485. #post:hover {
  486. opacity:0.8;
  487. }
  488.  
  489. #entries {
  490. padding:10px;
  491. width:250px;
  492. margin-left:0px;
  493. margin-top:3px;
  494. margin-bottom:20px;
  495. }
  496.  
  497. b, strong {
  498. font-family: 'Source Sans Pro', sans-serif;
  499. font-size:10px;
  500. font-style:normal;
  501. padding-left:3px;
  502. padding-right:3px;
  503. text-transform:uppercase;
  504. padding: 0px;
  505. text-shadow: 0px 0px 0px #eee;
  506. color:#fff;
  507. }
  508.  
  509.  
  510. i, em {
  511. font-family: 'La Belle Aurore', cursive;
  512. font-size: 11px;
  513. font-style:normal;
  514. padding-left:3px;
  515. padding-right:3px;
  516. text-transform:lowercase;
  517. padding: 0px;
  518. text-shadow: 1px 1px 2px #eee;
  519. color:#fff;
  520. }
  521.  
  522. #theme {
  523. width:400px;
  524. margin:0 auto -12px auto;
  525. }
  526.  
  527. #sidebar {
  528. color:{color:text};
  529. width:0px;
  530. height:auto;
  531. margin-top:90px;
  532. margin-left:165px;
  533. text-align:left;
  534. }
  535.  
  536. #sidebarimage img {
  537. width:0px;
  538. opacity:.9;
  539. margin-top:-10px;
  540. margin-bottom:0px;
  541. margin-left:403px;
  542. }
  543.  
  544.  
  545. #links {
  546. font-family: 'Source Sans Pro', sans-serif;
  547. width:220px;
  548. margin-top:115px;
  549. margin-left:-250px;
  550. font-size:12px;
  551. opacity:0.6;
  552. text-transform:uppercase;
  553. text-align:center;
  554. line-height:280%;
  555. }
  556.  
  557. #links a{
  558. line-height:280%;
  559. border-bottom:1px solid #fff;
  560. margin-top:4px;
  561. margin-left:13px;
  562. color:{color:link};
  563. text-decoration:none;
  564. -moz-transition-duration:.2s;
  565. -webkit-transition-duration:.2s;
  566. -o-transition-duration:.2s;
  567. }
  568.  
  569. #links a:hover {
  570. color: {color:link hover};
  571. width:60px;
  572. -moz-transition-duration:0.2s;
  573. -webkit-transition-duration:0.2s;
  574. -o-transition-duration:0.2s;
  575. }
  576. #description {
  577. width:100px;
  578. font-family:arial;
  579. margin-top:108px;
  580. margin-left:75px;
  581. text-align:center;
  582. font-size:9.5px;
  583. opacity:0.7;
  584. color: {color:text};
  585. text-transform:lowercase;
  586. text-transform:italic;
  587. letter-spacing:0px;
  588. line-height:170%;
  589. -moz-transition-duration:1s;
  590. -webkit-transition-duration:1s;
  591. -o-transition-duration:1s;
  592. }
  593.  
  594. #description a {
  595. color:{color:link};
  596. }
  597.  
  598. #description a:hover {
  599.  
  600. color:{color:link hover};
  601. }
  602.  
  603. .sidebartitle {
  604. width:0px;
  605. text-align:center;
  606. font-family:'californian fb';
  607. line-height:120%;
  608. margin-left:-58px;
  609. word-spacing:2px;
  610. font-style:italic;
  611. font-size:16px;
  612. margin-top:10px;
  613. color:{color:title};
  614. }
  615.  
  616. #pagination {
  617. font-family:arial;
  618. width:250px;
  619. font-size:9px;
  620. margin-top:25px;
  621. margin-left:-8px;
  622. padding-left:5px;
  623. letter-spacing:1px;
  624. text-align:center;
  625. text-transform:uppercase;
  626. }
  627.  
  628. #pagination a {
  629. color:{color:link};
  630. }
  631.  
  632. #info {
  633. font-family:arial;
  634. width:250px;
  635. margin-top:8px;
  636. padding-top:4px;
  637. font-size:10px;
  638. border-top:1px solid #ddd;
  639. opacity:1;
  640. color:{color:text};
  641. text-transform:uppercase;
  642. font-style:normal;
  643. text-align:left;
  644.  
  645. }
  646.  
  647. #info a {
  648. color:{color:link};
  649. }
  650.  
  651.  
  652.  
  653. .tags {
  654. font-family:arial;
  655. font-style:normal;
  656. width:250px;
  657. margin-top:4px;
  658. text-transform:normal;
  659. font-style:normal;
  660. line-height:120%;
  661. padding-top:0px;
  662. font-size:8px;
  663. opacity:1;
  664. letter-spacing:1px;
  665. text-align:left;
  666.  
  667. }
  668. .tags a{
  669. color:{color:link};
  670.  
  671. }
  672.  
  673.  
  674.  
  675.  
  676. .audio{
  677. background-color:#e5e5e5;
  678. height:65px;
  679. overflow:hidden;
  680. }
  681.  
  682. #ask {
  683. float:left;
  684. color:{color:text};
  685. }
  686.  
  687. #credit {
  688. font-size:9px;
  689. font-family:cambria;
  690. font-style:italic;
  691. letter-spacing:1px;
  692. -moz-transition-duration:0.5s;
  693. -webkit-transition-duration:0.5s;
  694. -o-transition-duration:0.5s;
  695. }
  696.  
  697. #credit a {
  698. background-color:#e6e6e6;
  699. padding:5px;
  700. color:#000000;
  701. border:1px solid #000;
  702. position:fixed;
  703. right:15px;
  704. bottom:10px
  705. }
  706.  
  707. #credit a:hover {
  708. color:#fff;
  709. background-color:#191919;
  710. }
  711.  
  712. {CustomCSS}</style>
  713.  
  714. </head><body>
  715.  
  716.  
  717. <div id="updates">
  718. <div id="updatestitle"></div>
  719.  
  720. <div style="padding-top:10px;">
  721.  
  722.  
  723.  
  724. </div></div>
  725.  
  726.  
  727.  
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734. <div id="theme">
  735.  
  736. <div id="sidebar">
  737.  
  738. <div id="sidebarimage">
  739. <a href="/"><img src="{image:sidebar}"></a></div>
  740.  
  741. <div class="sidebartitle">{text:sidebartitle}</div>
  742.  
  743.  
  744. <div id="links">
  745. <a href="/" title="index.}">01.</a>
  746. <a href="#?w=300" rel="box1" class="poplight" title="message.">02.</a>
  747. <a href="#?w=300" rel="box2" class="poplight" title="guidelines.">03.</a>
  748. <a href="#?w=300" rel="box3" class="poplight" title="verses.">04.</a>
  749. <a href="#?w=300" rel="box4" class="poplight" title="stats.">05.</a> </a>
  750. </div>
  751.  
  752.  
  753.  
  754.  
  755.  
  756. <div id="description"><div style="height:285px;width:165px;border:0px solid #ccc;font:9.5px/arial;overflow:auto;"><embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=false&f0=https://dl.dropboxusercontent.com/s/9bth7knm0tza0t0/in%20your%20head.mp3&t0=in your head.&f1=https://dl.dropboxusercontent.com/s/kz287nlev21a7jz/female%20robbery%20_%20jessica%20jones.mp3&t1=female robbery.&f2=https://dl.dropboxusercontent.com/s/lxvsu9qr6898thr/Jessica%20Jones%20-%20INFECTION.mp3&t2=infection.&f3=https://dl.dropboxusercontent.com/s/0y77zbnp58le53g/Gasoline%20-%20Jessica%20Jones%20%28S1%20Spoilers%29.mp3&t3=gasoline.&f4=https://dl.dropboxusercontent.com/s/t1gxq3oxzqsn96w/Jessica%20Jones%20%26%20Kilgrave%20__%20one%20way%20or%20another.mp3&t4=one way.&total=5" quality="high" wmode="transparent" width="160" height="10" name="billy" align="middle" type="application/x-shockwave-flash" /><p>ind. <strong><em>&</em></strong> private scott mccall from the mtv series, teen wolf. primarily based in season three as of now.<p><center><em>❛</em> they say everyone's <strong>born a hero.</strong> but if you let it, life will push you <u>over the line</u> until you're the villain. problem is <strong>—</strong> you don't always know that you've <em>crossed</em> that line.<em>❜</em><p><center><img src="https://41.media.tumblr.com/47a76b2ed98b18ca971b609cbf88f1e1/tumblr_inline_o4mvj0Bx4C1u529ru_540.png"></center><p> <script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5256764";
  757. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x " + window.screen.height;
  758. fhs.src = "//s1.freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=&e2=&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  759. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");
  760. </script> / <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3113794";
  761. fhsh.src = "//s1.freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=&a=1";
  762. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  763. </script><br><strong>established:</strong> april 2016.<br> written by amina. nineteen. she/her.<p> take the parts you love <strong><em>&</em></strong> make a monster, <em>make a war</em> <strong>—</strong> make a garden, make sin. because that's all <strong>these bones can,</strong> ever hold. hollow <strong><em>&</em></strong> sickly <strong><em>&</em></strong> bitten <strong>;</strong> through by winter's <strong>early</strong> <u>sunsets</u>. </div></div>
  764.  
  765.  
  766. <div id="pcontainer">
  767. <div id="entries">{block:Posts}<div id="post">
  768.  
  769. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  770.  
  771. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  772.  
  773. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  774.  
  775. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  776.  
  777. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  778.  
  779. {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}
  780.  
  781. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  782.  
  783. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  784.  
  785. {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}
  786.  
  787. {block:Date}<div id="info"><a href="{Permalink}">{TimeAgo}</a> {block:NoteCount}with <a href="{Permalink}">{NoteCountWithLabel}</a> {/block:NoteCount}{block:RebloggedFrom} via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  788. {block:ContentSource} ( source: <a href="{SourceURL}">{SourceLink}</a> ){/block:ContentSource}{/block:Date}</div>
  789. {block:HasTags}
  790. <div class="tags">
  791. {block:Tags} #<a href="{TagURL}"> {Tag}</a>{/block:Tags}</div>
  792. {/block:HasTags}
  793.  
  794.  
  795.  
  796. <div class="postnote">
  797. {block:PostNotes}{PostNotes}{/block:PostNotes}
  798. </div>
  799. </div>
  800. {/block:Posts}
  801.  
  802. <div id="pagination">
  803. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←&nbsp;&nbsp;&nbsp; fall.</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">rise.&nbsp;&nbsp;&nbsp; →</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  804.  
  805. </div>
  806.  
  807.  
  808. </body>
  809.  
  810. <div id="box1" class="popup_block"> <div class="scroll">
  811. <div style="font-size:10px;color:#fff;text-align:center;letter-spacing:1px;font-family:calibri"><strong>ALIAS INVESTIGATIONS — HOW CAN WE HELP<EM>?</EM></strong><p></div>
  812. <p><iframe frameborder="0" height="200" id="ask_form" src="http://www.tumblr.com/ask_form/strongalias.tumblr.com" width="100%"></iframe></p>
  813. </div></div>
  814.  
  815. </div></div></div></div></div></div></div></div></div></div>
  816.  
  817. <div id="box2" class="popup_block"> <div class="scroll">
  818. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px margin-top:100px width:200px"></div>
  819. <center><strong><a href="#?w=300" rel="box2" class="poplight">RULES.</a> <a href="#?w=300" rel="box7" class="poplight">EXCLUSIVES.</a> </strong></center><p>
  820. <center><strong>GUIDELINES.</strong><p>
  821. <center> hello, <strong><em>&</em></strong> thank you very much for reading this page. i don't have many rules, so this shouldn't take too long. i would just like to point out early on that i love season 3 of teen wolf <strong><em>&</em></strong> most of my writing will likely center around that season.</center><p>
  822. <center> <strong>01.</strong>
  823.  
  824. i am not associated with scott mccall, tyler posey, teen wolf, or mtv. i don’t claim to own any canon story lines or plots. i only own the writing on this blog <strong><em>&</em></strong> the graphics, icons, etc.
  825. <p>
  826. <strong>02.</strong>
  827.  
  828. i am a selective writer, <strong><em>&</em></strong> will likely keep my interactions to mutuals only. if you have an idea, don't be afraid to come into my inbox <strong><em>&</em></strong> yell at me about it <strong><em>&</em></strong> also feel free to like any starter calls, no matter how long ago they were posted. i may say currently accepting or no longer accepting but let's be honest i'll probably do them anyways.
  829. <p>
  830. <strong>03.</strong>
  831.  
  832. i spend a lot of time on my icons, themes, graphics, etc. <strong><em>&</em></strong> make them all myself, so please don't steal them. of course, if you'd like help with psds, themes, or icons, you can always ask questions or even ask for me to make something for you. but be warned, i take my time so please don't rush anything.
  833. <p>
  834. <strong>04.</strong>
  835.  
  836. my writing is set within all canon seasons of teen wolf, though there will be an emphasis on season three. his verses will progress when the show returns <strong><em>&</em></strong> i will have several crossover verses set up on this page. for now, any post-season five verses will be depicted <strong><em>&</em></strong> written as how i personally feel, until the season six premiere.
  837. <p>
  838. <strong>05.</strong>
  839.  
  840. as i may not have all crossover verses set up immediately, here is a list of all fandoms i have knowledge of: the originals, supernatural, scream, pretty little liars, the flash, daredevil, jessica jones, arrow, all marvel movies, once upon a time, scream queens, american horror story, agents of shield, finding carter, faking it, the 100, doctor who, quantico, criminal minds, how to get away with murder, the walking dead, bates motel, legends of tomorrow, star wars, <strong><em>&</em></strong> fear the walking dead.
  841. <p>
  842.  
  843. <strong>06.</strong>
  844.  
  845. i love shipping <strong><em>&</em></strong> if you have a ship in mind, feel free to come to me. as always, the key is chemistry, but i'm open to a lot. that being said, i do have a few main teen wolf ships that i love: scydia, scallison, scalia, <strong><em>&</em></strong> scira. i'd also love crossover ships <strong><em>&</em></strong> maybe some ocs<strong><em>?</em></strong> like i said, i'm pretty much down for anything.
  846. <p>
  847.  
  848. <strong>07.</strong>
  849.  
  850. i apologize if this was a bit long, <strong><em>&</em></strong> i'm glad you've made it till the end<strong><em>!</em></strong> my name is amina, i'm nineteen years old, she/her. i swear i'm really friendly <strong><em>&</em></strong> you can always come to me for a chat or as i've said, help with graphics, themes, resources, etc. any mutual can also ask me for my skype username or i will probably have a few skype drops somewhere on this blog.
  851. <p>
  852. </center>
  853. </div></div>
  854.  
  855.  
  856.  
  857. </div></div></div></div></div></div></div></div></div></div>
  858.  
  859.  
  860. <div id="box3" class="popup_block"> <div class="scroll">
  861. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  862. <center><strong><a href="#?w=300" rel="box3" class="poplight">MAIN.</a> <a href="#?w=300" rel="box5" class="poplight">CANON.</a> <a href="#?w=300" rel="box6" class="poplight">ALTERNATE.</a></strong></center>
  863. <p>
  864. <center><strong> MAIN VERSES.</strong></center>
  865.  
  866. <p>
  867. <center><strong>season 3a verse:
  868. <br>
  869. tag: i. ' i felt the points pressing against my lungs — and each breath felt like a hard won war. </strong>
  870. <br>
  871. set within the canon season 3a storyline of <strong>teen wolf</strong>. s</center>
  872. <p>
  873.  
  874.  
  875. <center><strong>post-season one verse:
  876. <br>
  877. tag: i. ' the gods thread your skeleton with their yarns — and weave you into the warrior they always wanted.</strong>
  878. <br>
  879. set after the canon season one storyline of <strong>jessica jones</strong>. jessica is continuing her work as a private investigator, <strong><em>&</em></strong> has remained in hell's kitchen. the storyline is murky as of now, but any post-season one threads will be placed under this verse. it was also revealed at the end of daredevil's season two, that alias investigations is now in an office across the hall from nelson <strong><em>&</em></strong> murdock.
  880. <p>
  881.  
  882.  
  883. </div></div>
  884.  
  885.  
  886.  
  887. </div></div></div></div></div></div></div></div></div></div>
  888.  
  889.  
  890. <div id="box4" class="popup_block"> <div class="scroll">
  891. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  892.  
  893. <center><strong> STATS.</strong></center><p>
  894.  
  895.  
  896. <blockquote><strong>BASICS:</strong></blockquote>
  897.  
  898. <strong>FULL NAME:</strong> jessica jones.<br>
  899. <strong>NICKNAME(S):</strong> jess, jessie, karen accord, sherlock, j. pannuccio, the sandwich, jewel, cameltoe, harpy, freakish thug, cougar, katya bell-hortense, p.i. lady.<br>
  900. <strong>ARCHETYPE:</strong> protagonist.<br>
  901. <strong>SPECIES:</strong> human, (enhanced.)<br>
  902. <strong>NATIONALITY:</strong> american.<br>
  903. <strong>GENDER:</strong> female.<br>
  904. <strong>PREFERRED PRONOUNS:</strong> she/her.<br>
  905. <strong>SEXUAL ORIENTATION:</strong> bisexual.<br>
  906. <strong>OCCUPATION:</strong> private investigator, vigilante.<br>
  907.  
  908. <blockquote><strong>RELATIONSHIPS:</strong></blockquote>
  909.  
  910. <strong>PARENTS:</strong> brian jones † <strong><em>&</em></strong> alisa jones. †<br>
  911. <strong>SIBLINGS:</strong> phillip jones. †<br>
  912. <strong>SIGNIFICANT OTHER(S):</strong> verse dependent.<br>
  913. <strong>CLOSEST FRIENDS:</strong> trish walker.<br>
  914. <strong>ENEMIES:</strong> kilgrave. †<p>
  915.  
  916. <blockquote><strong>PHYSICAL TRAITS:</strong></blockquote>
  917.  
  918. <strong>EYE COLOR:</strong> hazel.<br>
  919. <strong>HAIR COLOR:</strong> black.<br>
  920. <strong>HEIGHT:</strong> 5'9.<br>
  921. <strong>WEIGHT:</strong> 127 pounds.<br>
  922. <strong>BODY TYPE:</strong> athletic, slender.<p>
  923.  
  924. <blockquote><strong>STATS:</strong></blockquote>
  925.  
  926. <strong>COMPASSION:</strong> 7/10<br>
  927. <strong>EMPATHY:</strong> 9/10<br>
  928. <strong>CREATIVITY:</strong> 9/10<br>
  929. <strong>MENTAL FLEXIBILITY:</strong> 9/10<br>
  930. <strong>PASSION/MOTIVATION:</strong> 8/10<br>
  931. <strong>EDUCATION:</strong> 8/10<br>
  932. <strong>STAMINA:</strong> 9/10<br>
  933. <strong>PHYSICAL STRENGTH:</strong> 10/10<br>
  934. <strong>BATTLE SKILL:</strong> 9/10<br>
  935. <strong>RESTRAINT:</strong> 4/10<br>
  936. <strong>AGILITY:</strong> 8/10<br>
  937. <strong>STRATEGY: </strong> 9/10<br>
  938. <strong>TEAMWORK:</strong> 6/10
  939. <p>
  940.  
  941. <blockquote><strong>PERSONALITY:</strong></blockquote>
  942.  
  943. <strong>MORAL ALIGNMENT:</strong> chaotic good.<br>
  944. <strong>FOUR TEMPERAMENTS:</strong> choleric.<br>
  945. <strong>USUAL MOOD:</strong> anxious, neutral, annoyed, hungover.<p>
  946.  
  947. <blockquote><strong>MISC:</strong></blockquote>
  948.  
  949. <strong>SKILLS:</strong> intuitive, resourceful, investigative.<br>
  950. <strong>WEAKNESSES:</strong> booze, kilgrave's control (pre-series), new found duty to protect.<br>
  951. <strong>HOBBIES:</strong> investigation, hard drinking.<p>
  952.  
  953.  
  954.  
  955.  
  956. </div></div>
  957.  
  958. <div id="box5" class="popup_block"> <div class="scroll">
  959. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  960. <center><strong><a href="#?w=300" rel="box3" class="poplight">MAIN.</a> <a href="#?w=300" rel="box5" class="poplight">CANON.</a> <a href="#?w=300" rel="box6" class="poplight">ALTERNATE.</a></strong></center><p>
  961.  
  962. <center><strong>CANON VERSES.</strong></center><p>
  963.  
  964. <p>
  965. <center><strong>season one verse:
  966. <br>
  967. tag: i. ' you taught me what it meant to bruise — what a hundred collapsing stars sounded like. </strong>
  968. <br>
  969. set within the canon season one storyline of <strong>teen wolf</strong>. scott mccall is a sophomore in high school, <strong><em>&</em></strong> gets bitten by a werewolf. this verse will follow him throughout his adjustments to his new situation, <strong><em>&</em></strong> his <strong><em>&</em></strong> derek's search for the alpha. scott also learns that killing the alpha may cure him, which ignites his desire to help derek. he also attempts to keep the secret from anyone but stiles, though jackson makes this difficult once he finds out. not to mention allison's family is full of hunters that are out to kill him. in the end, it's discovered that peter hale is the alpha, <strong><em>&</em></strong> he is eventually killed by derek.</center>
  970. <p>
  971.  
  972.  
  973. <center><strong>season two verse:
  974. <br>
  975. tag: i. ' in the blistering heat of the sun — and the comforting cold of the moon. </strong>
  976. <br>
  977. set within the canon season two storyline of <strong>teen wolf</strong>. everyone in beacon hills is dealing with the aftermath of season one. scott is still trying to be with allison, though her family is making that very difficult. there's also new threats like allison's grandfather gerard, who is out to kill every werewolf in beacon hills <strong><em>&</em></strong> the kanima who is eventually revealed to be jackson. derek is attempting to build up his pack, no matter how much scott tries to stop him because of the threat of the alpha pack. matt daehler has an obsession with allison as well as an obsession with getting revenge <strong><em>&</em></strong> he uses the kanima to do it. after matt is killed, gerard takes control of the kanima <strong><em>&</em></strong> uses him to get the werewolf bite because he's dying. lydia becomes more involved with the supernatural world <strong><em>&</em></strong> is used by peter to resurrect himself. </center>
  978. <p>
  979.  
  980. </div></div>
  981.  
  982. <div id="box6" class="popup_block"> <div class="scroll">
  983. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  984.  
  985. <center><strong><a href="#?w=300" rel="box3" class="poplight">MAIN.</a> <a href="#?w=300" rel="box5" class="poplight">CANON.</a> <a href="#?w=300" rel="box6" class="poplight">ALTERNATE.</a></strong></center><p>
  986. <center><strong>ALTERNATE VERSES.</strong></center>
  987. <p>
  988. <center>alternate verses will be placed here as they come about.</center>
  989.  
  990. </div></div>
  991.  
  992. <div id="box7" class="popup_block"> <div class="scroll">
  993. <div style="font-size:11px;color:#fff;text-align:center;letter-spacing:3px;font-family:calibri; font-color:#fff border-bottom:1px solid #fff;padding-bottom:10px"></div>
  994.  
  995. <center><strong><a href="#?w=300" rel="box2" class="poplight">RULES.</a> <a href="#?w=300" rel="box7" class="poplight">EXCLUSIVES.</a> </strong></center><p>
  996. <center><strong>EXCLUSIVES LIST.</strong></center>
  997. <p>
  998. <center>exclusives <strong><em>&</em></strong> mains will be placed here if they come about. there will be a name, link, <strong><em>&</em></strong> the level of exclusivity whether it's simply a main, a full exclusive, or ship exclusive.</strong></center> i may not be willing to become fully exclusive with teen wolf characters for awhile, as i would like to play with different versions of the characters, but if our writing clicks, then i'm all for it.
  999.  
  1000. <p>
  1001. </div></div>
  1002.  
  1003.  
  1004. </div></div></div></div></div></div></div></div></div></div>
  1005.  
  1006. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div> </div>
  1007.  
  1008.  
  1009. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement