Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.01 KB | None | 0 0
  1. <!--
  2. This code has been written by http://ddkinzart.tumblr.com
  3. Do not sell, repost, remove credit or claim as your own.
  4.  
  5. __ ____ _ __
  6. ____/ /___/ / /__(_)___ ____ ____ ______/ /_
  7. / __ / __ / //_/ / __ \/_ / / __ `/ ___/ __/
  8. / /_/ / /_/ / ,< / / / / / / /_/ /_/ / / / /_
  9. \__,_/\__,_/_/|_/_/_/ /_/ /___/\__,_/_/ \__/
  10. __ __ __
  11. / /_/ /_ ___ ____ ___ ___ _________ ____/ /__
  12. / __/ __ \/ _ \/ __ `__ \/ _ \ / ___/ __ \/ __ / _ \
  13. / /_/ / / / __/ / / / / / __/ / /__/ /_/ / /_/ / __/
  14. \__/_/ /_/\___/_/ /_/ /_/\___/ \___/\____/\__,_/\___/
  15.  
  16. -->
  17.  
  18. <html>
  19. <head>
  20. <title>{Title}</title>
  21. <link rel="shortcut icon" href="{Favicon}">
  22. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  23. {block:Description}
  24. <meta name="description" content="{MetaDescription}" />
  25. {/block:Description}
  26. </head>
  27.  
  28. <!--tooltip script (it's to edit the way the title of your links look when you hover over them -->
  29. <style>figure{margin:0}.tmblr-iframe{position:absolute}.tmblr-iframe.hide{display:none}</style><link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  30. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  31. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  32. <script>
  33. (function($){
  34. $(document).ready(function(){
  35. $("[title]").style_my_tooltips({
  36. tip_follows_cursor:true,
  37. tip_delay_time:200,
  38. tip_fade_speed:500
  39. });
  40. });
  41. })(jQuery);
  42. </script>
  43.  
  44. <!--verses tabs script-->
  45. <script src="http://static.tumblr.com/dxh5xq2/v6Gn8ju1e/tabs.js"></script>
  46. <!--script end-->
  47.  
  48. <!--tooltip script end-->
  49. <!--pop up script-->
  50. <script type="text/javascript"
  51. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  52. <script>
  53. $(document).ready(function() {
  54. //
  55. $('a.poplight[href^=#]').click(function() {
  56. var popID = $(this).attr('rel'); //Get Popup Name
  57. var popURL = $(this).attr('href'); //Get Popup href to define size
  58. var query= popURL.split('?');
  59. var dim= query[1].split('&');
  60. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  61. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  62. var popMargTop = ($('#' + popID).height() + 80) / 2;
  63. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  64. //Apply Margin to Popup
  65. $('#' + popID).css({
  66. 'margin-top' : -popMargTop,
  67. 'margin-left' : -popMargLeft
  68. });
  69. $('body').append('<div id="fade"></div>');
  70. $('#fade').css({'filter' : 'alpha(opacity=100)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  71. return false;
  72. });
  73. $('a.close, #fade').live('click', function() {
  74. $('#fade , .popup_block').fadeOut(function() {
  75. $('#fade, a.close').remove(); //fade them both out
  76. });
  77. return false;
  78. });
  79. });
  80. </script>
  81. <!--ask pop script end-->
  82. <link href="https://fonts.googleapis.com/css?family=Overpass" rel="stylesheet">
  83.  
  84. <style type="text/css">
  85.  
  86.  
  87.  
  88. /*cursor code, change image to change cursor*/
  89. /*find more at http://pixel-soup.tumblr.com/tagged/cursors */
  90.  
  91. *, body, a { cursor:url("http://i.imgur.com/2qleX.jpg"), auto }
  92. a:hover { cursor:url("http://68.media.tumblr.com/tumblr_m2umkqvNUT1qfamg6.gif"), auto } /*this defines the pointer cursor*/
  93.  
  94. /*these are the custom fonts, you can install more just by pasting the code here*/
  95.  
  96.  
  97.  
  98. @font-face{font-family:"bebas neue";src:url('https://dl.dropboxusercontent.com/s/ve5e59sbnw2vei5/BebasNeue.ttf');}
  99. @font-face{font-family:"nightingale";src:url('https://dl.dropboxusercontent.com/s/pa1adg9sn1490m8/Nightingale.ttf');}
  100. @font-face {font-family: "black jack";src: url('https://dl.dropboxusercontent.com/s/ryf3a4mag4hudp6/blackjar.ttf?dl=1'); format("truetype");}
  101.  
  102.  
  103.  
  104.  
  105. /*selection color*/
  106.  
  107. ::-moz-selection { /* Code for Firefox */
  108. color: #c2c2c2; /*text color of selected text*/
  109. background: #fff; /*color of selection bg*/
  110. }
  111.  
  112. ::selection {
  113. color: #c2c2c2; /*text color of selected text*/
  114. background: #fff; /*color of selection bg*/
  115. }
  116.  
  117. /*selection color end*/
  118.  
  119. ::-webkit-scrollbar-thumb {
  120. background-color:#7c7c7c; /*scrollbar's slider color*/
  121. background-image:url('URL HERE'); /*optional background image*/
  122. height:0px;
  123. }
  124.  
  125. ::-webkit-scrollbar {
  126. height:0px;
  127. width:3px; /*width of slider*/
  128. background-color:transparent; /*scrollbar's main color*/
  129. background-image:url('URL HERE'); /*optional background image*/
  130. }
  131.  
  132. /*the code here is to reduce the opacity of an image and make it more visible on hover, you can remove it if you want your image to always be at 100%*/
  133.  
  134. img, iframe {
  135.  
  136. opacity:1; /*this determines opacity of images*/
  137. -moz-transition-duration: 0.5s;
  138. -o-transition-duration: 0.5s;
  139. -webkit-transition-duration: 0.5s;
  140. transition-duration: 0.5s;
  141. padding:5px;
  142. }
  143.  
  144.  
  145.  
  146. img:hover,iframe:hover {
  147.  
  148. opacity:1;
  149. -webkit-filter:none;
  150. -moz-transition-duration: 0.5s;
  151. -o-transition-duration: 0.5s;
  152. -webkit-transition-duration: 0.5s;
  153. transition-duration: 0.5s;}
  154.  
  155. /*HOVER IMAGE CODE END*/
  156.  
  157.  
  158. body {
  159. background-color:#dadada; /*set this the same color as your background image to avoid black areas on different resolutions*/
  160. background-image:url('http://i.imgur.com/Xto9MP3.png'); /*bg image goes here*/
  161. background-attachment: fixed;
  162. background-repeat: no-repeat;
  163. background-position: left top;
  164. color:#d9d5d5; /*body font color*/
  165. text-shadow: 0px 0px 2px #d9d5d5; /*shadow of body text*/
  166. font-weight:bold;
  167. font-family: 'overpass';
  168. text-align:justify;
  169. font-size: 10px;
  170. letter-spacing:3px;
  171.  
  172. }
  173.  
  174. .pagi {
  175. font-size:35px;
  176. font-family:'overpass';
  177. margin-top:580px; /*change to decide position of pagination*/
  178. margin-left:665px;
  179. color: #a2a2a2;
  180. position:fixed;
  181. -webkit-transition-duration: 0.8s; -moz-transition-duration: 0.8s;
  182. transition-duration: 0.8s; -o-transition-duration: 0.8s;}
  183.  
  184. .pagi a {
  185. color: #7c7c7c; /*color of pagination*/
  186. text-shadow: 0px 0px 5px #a4a4a4; /*shadow | glow of pagination*/
  187. -webkit-filter: blur(1px);
  188. -moz-filter: blur(1px);
  189. -o-filter: blur(1px);
  190. -ms-filter: blur(1px);
  191. filter: blur(1px);
  192. }
  193.  
  194. .pagi a:hover {
  195. color: #c2c2c2; /*color of pagination on hover*/
  196. }
  197.  
  198. /*the tooltip is the text that appears when you hover on a link / tag / etc.
  199. this script stylizes it*/
  200.  
  201. #s-m-t-tooltip{
  202. max-width:400px;
  203. margin:15px;
  204. padding:2px 8px;
  205. background-image: url(""); /*include image if you want a background for the tooltip text*/
  206. background: transparent;
  207. background-repeat:repeat;
  208. background-attachment:fixed;
  209. color:#fff; /*color of tooltip text*/
  210. /*the text shadow determines the outline of the text because there's no easy way to add an outline to it, you can change all the code to another color*/
  211. text-shadow:1px 1px #7c7c7c,
  212. 1px -1px #7c7c7c,
  213. 1px 0px #7c7c7c,
  214. 0px 1px #7c7c7c,
  215. 0px -1px #7c7c7c,
  216. -1px 1px #7c7c7c,
  217. -1px 0px #7c7c7c,
  218. -1px -1px #7c7c7c;
  219. z-index:99999999999999999999;
  220. font-size:15px;
  221. letter-spacing:2px;
  222. font-style:bold;
  223. letter-spacing:2px;
  224. font-family: 'nightingale';
  225. text-transform:lowercase;
  226. box-shadow:0px 0px 0px;}
  227.  
  228.  
  229. #s-m-tooltip:hover {
  230. -webkit-transition: all 0.6s ease-out;
  231. -moz-transition: all 0.6s ease-out;
  232. transition: all 0.6s ease-out;
  233. -o-transition:all 0.6s ease;
  234. -ms-transition: all 0.6s ease-in-out;}
  235.  
  236. /* TOOLTIP END */
  237.  
  238.  
  239. small,sub,sup {
  240. font-size:11px;
  241. }
  242.  
  243. b, bold, strong {
  244. font-size:16px;
  245. letter-spacing:1px;
  246. font-weight:normal;
  247. line-height: 120%;
  248. font-family: 'bebas neue';
  249. color: #423131; /*color of bold text*/
  250. text-shadow:0 0 3px #423131; /*shadow of bold text*/
  251. }
  252.  
  253.  
  254.  
  255. i, italic, em {
  256. font-size:20px;
  257. color: #7f1616;
  258. font-family: 'black jack';
  259. line-height:120%;
  260. text-shadow:0 0 3px #7f1616;
  261. font-weight:normal;
  262. letter-spacing:1px;
  263. text-transform:lowercase;
  264. }
  265.  
  266.  
  267. /* This styles the headers of the sidebar as well as the headers inside the popups */
  268. h3, h4 {
  269. background-image: url('http://i.imgur.com/HhfoKu3.gif');
  270. background-repeat:repeat;
  271. background-attachment:fixed;
  272. padding:2px;
  273. color:#fff; /*text color of sidebar titles*/
  274. text-shadow:1px 1px #191919,
  275. 1px -1px #191919,
  276. 1px 0px #191919,
  277. 0px 1px #191919,
  278. 0px -1px #191919,
  279. -1px 1px #191919,
  280. -1px 0px #191919,
  281. -1px -1px #191919;
  282. /*change all the hex of the text shadow to the same code
  283. to change the outline of the text*/
  284. font-size:8px;
  285. line-height:120%;
  286. font-family:'arial';
  287. text-transform:uppercase;
  288. border: double 3px #333333;
  289. text-align:center;}
  290.  
  291.  
  292. a,a:visited,a:active {
  293. color: #333; /*color of links*/
  294. text-decoration:none;
  295. text-shadow: 0px 0px 0px #000;
  296. -moz-transition-duration: 0.6s;
  297. -o-transition-duration: 0.6s;
  298. -webkit-transition-duration: 0.6s;
  299. transition-duration: 0.6s;
  300. -webkit-filter: blur(.5px);
  301. -moz-filter: blur(.5px);
  302. -o-filter: blur(.5px);
  303. -ms-filter: blur(.5px);
  304. filter: blur(.5px);
  305.  
  306. }
  307.  
  308. a:hover {
  309. color: #7c7c7c; /*color of links on hover*/
  310. text-shadow: 0px 0px 3px #7c7c7c;
  311. -webkit-transition: all 0.6s ease-out;
  312. -moz-transition: all 0.6s ease-out;
  313. transition: all 0.6s ease-out;
  314. -o-transition:all 0.6s ease;
  315. -ms-transition: all 0.6s ease-in-out;}
  316.  
  317. /*POST TITLE SETTINGS*/
  318.  
  319. .titulo {
  320.  
  321. font-family: 'bebas neue';
  322. font-weight:normal;
  323. font-size: 23px; /*size of title*/
  324. text-align: center;
  325. color: #7c7c7c; /*color of title*/
  326. text-shadow: 0px 0px 2px #7c7c7c;
  327.  
  328. }
  329.  
  330.  
  331. /*TITLE SETTINGS END*/
  332.  
  333. #container {
  334. position:absolute;
  335. left:310px; /*position of container from the left*/
  336. top:150px; /*position of container from top*/
  337. height:450px; /*determines height of container*/
  338. overflow-y:scroll;
  339. -webkit-mask-image: -webkit-gradient(
  340. linear, center 75%, center bottom,
  341. from(rgba(0,0,0,10)),
  342. to(rgba(10,0,0,0)));
  343. border:1px solid transparent;
  344. }
  345.  
  346. #entries {
  347. background-color:transparent;
  348.  
  349. }
  350.  
  351. #content {
  352. width:310px; /*determines size of posts*/
  353. margin-bottom:20px;
  354. padding:10px 7px 10px 10px;
  355. }
  356.  
  357.  
  358. #entries img {
  359. max-width: 100%;
  360. height: auto;
  361. opacity:0.7; /*change this to change visibility of post images, set it to 1 if you want it completely visible*/
  362. -moz-transition-duration: 0.5s;
  363. -o-transition-duration: 0.5s;
  364. -webkit-transition-duration: 0.5s;
  365. transition-duration: 0.5s;
  366. padding:5px;
  367.  
  368.  
  369. }
  370.  
  371. #entries img:hover {
  372. opacity: 1; /*image opacity of posts on hover*/
  373. -moz-transition-duration: 0.5s;
  374. -o-transition-duration: 0.5s;
  375. -webkit-transition-duration: 0.5s;
  376. transition-duration: 0.5s;
  377. padding:5px;
  378.  
  379. }
  380.  
  381.  
  382. blockquote {
  383. border-left: 5px solid #7c7c7c; /*color of blockquote*/
  384. border-radius:15px;
  385. padding: 2px 0px 2px 8px;
  386. margin: 3px 0 3px 8px;
  387. }
  388.  
  389. blockquote img {
  390. max-width:100%;
  391. height:auto;
  392. }
  393.  
  394. /*ASK*/
  395.  
  396. #asker {
  397. font-size:15px;
  398. letter-spacing:1px;
  399. margin-bottom:-13px;
  400. color: #7c7c7c; /*color of asker url / anonymous but if a user then it is also determined by 'a' as it will be a link*/
  401. font-family: 'nightingale';
  402. text-shadow:0px 0px 5px #a4a4a4;
  403. text-align:center;
  404. text-decoration:none;
  405. -webkit-transition: all 0.6s ease-out;
  406. -moz-transition: all 0.6s ease-out;
  407. transition: all 0.6s ease-out;
  408. -o-transition:all 0.6s ease;
  409. -ms-transition: all 0.6s ease-in-out;
  410.  
  411. }
  412.  
  413. /*to change the part that says whispered, scroll down to the html*/
  414.  
  415. #asker a {
  416. color: #fff;
  417. }
  418.  
  419. #asker a:hover {
  420. -webkit-filter: blur(1px);
  421. -moz-filter: blur(1px);
  422. -o-filter: blur(1px);
  423. -ms-filter: blur(1px);
  424. filter: blur(1px);
  425. color: #7c7c7c;
  426. transition: all 0.6s ease-out;
  427. }
  428.  
  429. #ask {
  430. background: url("");/*image behind the question*/
  431. background-color:#7c7c7c; /*background color of question if no background image is selected*/
  432. background-repeat:repeat;
  433. font-size:8px;
  434. font-family:arial;
  435. line-height:120%;
  436. text-align:center;
  437. text-transform:uppercase;
  438. color: #ccc; /*color of question text*/
  439. border-top:double 3px #7c7c7c; /*border color of question*/
  440. border-bottom:double 3px #7c7c7c; /*border color of question*/
  441. border-right:solid 1px #7c7c7c;
  442. border-left:solid 1px #7c7c7c;
  443. border-radius:15px;
  444. padding: 10px 20px 10px 20px;
  445. text-shadow: 1px 1px #191919,
  446. 1px -1px #191919,
  447. 1px 0px #191919,
  448. 0px 1px #191919,
  449. 0px -1px #191919,
  450. -1px 1px #191919,
  451. -1px 0px #191919,
  452. -1px -1px #191919;
  453. /*change all the hex of the text shadow to the same code
  454. to change the outline of the text*/
  455. }
  456.  
  457.  
  458. #answer {
  459. padding-top:0px;
  460. }
  461. /*ASK ENDS HERE*/
  462.  
  463. /*CHAT POST BEGINS HERE*/
  464.  
  465. .convo {
  466. font-size: 10px;
  467. line-height:120%;
  468. text-align:left;
  469. padding:0px;
  470.  
  471. }
  472.  
  473. .convo li {
  474. list-style:none;
  475. }
  476.  
  477. .convo .label {
  478. text-transform: uppercase;
  479. font-weight:bold;
  480.  
  481. }
  482.  
  483. .line_odd .label {
  484. color: #fff; /* Color of odd person in the chat */
  485. background: none;
  486. }
  487.  
  488. .line_even .label {
  489. color: #7c7c7c; /* Color of even person in the chat */
  490. }
  491.  
  492. .line_even {
  493. margin:0px 10px;
  494. padding: 5px;
  495. text-align:left;
  496. font-weight:bold;
  497. color: #7c7c7c; /*color of even text*/
  498. text-shadow:none;
  499. padding: 10px 20px 10px 20px;
  500. border-bottom:solid 1px #7c7c7c; /*line seperating chats*/
  501. }
  502.  
  503. .line_odd {
  504. margin:0px 10px;
  505. padding: 5px;
  506. background-color:#a4a4a4; /*background color of odd text*/
  507. text-align:left; /*color of odd text*/
  508. color: #ccc; /*color of odd text*/
  509. text-shadow:none;
  510. border-bottom:solid 1px #7c7c7c; /*line seperating chats*/
  511. padding: 10px 20px 10px 20px;
  512. }
  513.  
  514.  
  515.  
  516.  
  517. /*CHAT POST ENDS HERE*/
  518.  
  519. /*QUOTE BEGINS HERE*/
  520.  
  521.  
  522. .quote {
  523. font-family: "black jack";
  524. font-size: 25px;
  525. font-weight:normal;
  526. line-height:100%;
  527. padding-bottom:30px;
  528. text-align: center;
  529. color: #fff; /*color of quote*/
  530. text-shadow: 0px 0px 2px #fff,
  531.  
  532. }
  533.  
  534. /*QUOTE ENDS HERE*/
  535.  
  536.  
  537. /*LINK POST BEGIN*/
  538.  
  539. #linku {
  540. text-transform:uppercase;
  541. text-align:center;
  542. letter-spacing:0px;
  543. font-weight:normal;
  544. font-family: 'bebas neue';
  545. font-size:10px;
  546. }
  547.  
  548. /*LINK POST END*/
  549.  
  550. /*SIDE BAR / DESCRIPTION BEGINS HERE*/
  551.  
  552. #boxy {
  553. position:fixed;
  554. top:370px; /*position of the box*/
  555. margin-left:460px;
  556. overflow:hidden; /*this keeps the text hidden without hover, change to scroll bar if you want it to scroll and show*/
  557. height:40px; /*determines height of the box - increase it if you have too much text and want to avoid scrollbar*/
  558. transform:rotate(90deg);
  559. width:400px; /*determines width of description*/
  560. opacity:1;
  561. -webkit-transition: all 0.7s ease;
  562. -moz-transition: all 0.7s ease;
  563. -o-transition: all 0.7s ease;}
  564.  
  565. #boxy:hover {
  566. opacity:1;
  567. transform:none;
  568. width:250px;
  569. height:520px; /*height of box on hover*/
  570. top:155px; /*position of box on hover*/
  571. margin-left:680px;
  572. -webkit-transition: all 0.7s ease;
  573. -moz-transition: all 0.7s ease;
  574. -o-transition: all 0.7s ease;
  575. }
  576.  
  577. .anchor {
  578. font-family:'nightingale';
  579. font-size:10px;
  580. letter-spacing:0px;
  581. padding-top:5px;
  582. line-height:100%;
  583. color:#fff; /*color of top bar title, the one reading not all treasure.. */
  584. text-shadow:0px 0px 10px #7c7c7c,
  585. 0px 0px 3px #7c7c7c;
  586. z-index:99999999999;
  587. }
  588.  
  589. #boxy:hover .anchor {
  590. font-size:9px;
  591. color: #fff; /*color of title on hover*/
  592. z-index:9999999999;
  593. }
  594.  
  595. .sail {
  596. width:180px; /*determines width of description — can't be more than width of the box*/
  597. margin-left:20px;
  598. margin-top:5px;
  599. border-radius:15px;
  600. padding:5px;
  601. opacity:0; /*keeps description hidden before hover*/
  602. -webkit-transition: all 0.7s ease;
  603. -moz-transition: all 0.7s ease;
  604. -o-transition: all 0.7s ease;
  605. }
  606.  
  607. #boxy:hover .sail {
  608. opacity:1;/*shows description hidden before hover*/
  609. -webkit-transition: all 0.7s ease;
  610. -moz-transition: all 0.7s ease;
  611. -o-transition: all 0.7s ease;
  612. }
  613.  
  614. #despacito {
  615. margin-top:10px;
  616. text-align:center;
  617.  
  618.  
  619. }
  620.  
  621. /*SIDE BAR / DESCRIPTION END*/
  622.  
  623. /*TAGS AND INFO BEGINS HERE*/
  624. .permalinks {
  625. background-image: url(''); /*you can insert image here for the permalinks bg*/
  626. background-color:transparent; /*color of post links' background*/
  627. color: #333333; /*color of peramalinks' text*/
  628. border-bottom:solid 1px #a2a2a2; /*border of permalinks*/
  629. padding: 1px 5px 5px 1px;
  630. letter-spacing:5px;
  631. text-align:center;
  632. font-size:9px;
  633. text-transform:uppercase;
  634. margin-top:15px;
  635. -moz-transition-duration:.6s;
  636. -webkit-transition-duration:.6s;
  637. -o-transition-duration:.6s;
  638. -webkit-filter: blur(0px);
  639.  
  640.  
  641. }
  642.  
  643. .permalinks a {
  644. font-family:calibri;
  645. color:#333; /*color of permalinks actual links*/
  646. font-weight:bold;
  647. text-shadow: 0px 0px 2px #7c7c7c;
  648. text-decoration:none;
  649. }
  650.  
  651.  
  652. .permalinks a:hover {
  653. color:#fff; /*color of links on hover*/
  654. text-shadow: 0px 0px 2px #000;
  655. -webkit-transition: all 0.5s ease-in-out;
  656. -moz-transition: all 0.5s ease-in-out;
  657. -o-transition: all 0.5s ease-in-out;
  658. -ms-transition: all 0.5s ease-in-out;
  659. transition: all 0.5s ease-in-out;
  660. }
  661.  
  662. .tags {
  663.  
  664. text-align:justify;
  665. padding-left:5px;
  666. padding-right:15px;
  667. margin-bottom:15px;
  668. color: #333; /*this determines the color of the small symbol (by default a ' ; ' but you can change it) next to the tags*/
  669. font-size:10px;
  670. text-shadow:0px 0px 3px #333
  671. }
  672.  
  673. .tags a {
  674. color:#333; /*change this for the actual color of the tags*/
  675. font-size:8px;
  676. font-weight:bold;
  677. font-family:calibri;
  678. text-transform:uppercase;
  679. text-shadow:0px 0px 3px #576d8c
  680. letter-spacing:0px;
  681.  
  682. }
  683.  
  684.  
  685. .tags a:hover {
  686. color: #fff; /*tag color on hover*/
  687. -webkit-transition: all 0.5s ease-in-out;
  688. -moz-transition: all 0.5s ease-in-out;
  689. -o-transition: all 0.5s ease-in-out;
  690. -ms-transition: all 0.5s ease-in-out;
  691. transition: all 0.5s ease-in-out;
  692.  
  693. }
  694.  
  695.  
  696. /*POP UP CODES AND LINKS BEGIN*/
  697.  
  698.  
  699. #pops {
  700. position:fixed;
  701.  
  702. }
  703.  
  704.  
  705. #linku1 {
  706. position:fixed;
  707. font-size:18px;
  708. text-decoration:none;
  709. margin-left:345px;
  710. margin-top:620px;
  711. z-index:99999999999999999999;
  712. }
  713.  
  714.  
  715. #linku1 a {
  716. color: #fff; /*color of custom links*/
  717. text-shadow: 0px 0px 5px #a4a4a4; /*shadow | glow of custom links*/
  718. -webkit-filter: blur(1px);
  719. -moz-filter: blur(1px);
  720. -o-filter: blur(1px);
  721. -ms-filter: blur(1px);
  722. filter: blur(1px);
  723. }
  724.  
  725. #linku1 a:hover {
  726. color: #fff;
  727. }
  728.  
  729. #linku1:hover {
  730. -webkit-filter: blur(2px);
  731. -moz-filter: blur(2px);
  732. -o-filter: blur(2px);
  733. -ms-filter: blur(2px);
  734. filter: blur(2px);
  735. -webkit-transition: all 0.5s ease-in-out;
  736. -moz-transition: all 0.5s ease-in-out;
  737. -o-transition: all 0.5s ease-in-out;
  738. -ms-transition: all 0.5s ease-in-out;
  739. transition: all 0.5s ease-in-out;
  740. }
  741.  
  742. #linku2 {
  743. position:fixed;
  744. font-size:18px;
  745. text-decoration:none;
  746. margin-left:370px;
  747. margin-top:620px;
  748. }
  749.  
  750. #linku2:hover {
  751. -webkit-filter: blur(2px);
  752. -moz-filter: blur(2px);
  753. -o-filter: blur(2px);
  754. -ms-filter: blur(2px);
  755. filter: blur(2px);
  756. -webkit-transition: all 0.5s ease-in-out;
  757. -moz-transition: all 0.5s ease-in-out;
  758. -o-transition: all 0.5s ease-in-out;
  759. -ms-transition: all 0.5s ease-in-out;
  760. transition: all 0.5s ease-in-out;
  761. }
  762.  
  763.  
  764. #linku2 a {
  765. color: #fff; /*color of custom links*/
  766. text-shadow: 0px 0px 5px #a4a4a4; /*shadow | glow of custom links*/
  767. -webkit-filter: blur(1px);
  768. -moz-filter: blur(1px);
  769. -o-filter: blur(1px);
  770. -ms-filter: blur(1px);
  771. filter: blur(1px);
  772. }
  773.  
  774. #linku2 a:hover {
  775. color: #fff;
  776. }
  777.  
  778. #linku3 {
  779. position:fixed;
  780. font-size:18px;
  781. text-decoration:none;
  782. margin-left:395px;
  783. margin-top:620px;
  784. }
  785.  
  786. #linku3:hover {
  787. -webkit-filter: blur(2px);
  788. -moz-filter: blur(2px);
  789. -o-filter: blur(2px);
  790. -ms-filter: blur(2px);
  791. filter: blur(2px);
  792. -webkit-transition: all 0.5s ease-in-out;
  793. -moz-transition: all 0.5s ease-in-out;
  794. -o-transition: all 0.5s ease-in-out;
  795. -ms-transition: all 0.5s ease-in-out;
  796. transition: all 0.5s ease-in-out;
  797. }
  798.  
  799.  
  800. #linku3 a {
  801. color: #fff; /*color of custom links*/
  802. text-shadow: 0px 0px 5px #a4a4a4; /*shadow | glow of custom links*/
  803. -webkit-filter: blur(1px);
  804. -moz-filter: blur(1px);
  805. -o-filter: blur(1px);
  806. -ms-filter: blur(1px);
  807. filter: blur(1px);
  808. }
  809.  
  810. #linku3 a:hover {
  811. color: #fff;
  812. }
  813.  
  814. #linku4 {
  815. position:fixed;
  816. font-size:16px;
  817. text-decoration:none;
  818. margin-left:420px;
  819. margin-top:618px;
  820. }
  821.  
  822. #linku4:hover {
  823. -webkit-filter: blur(2px);
  824. -moz-filter: blur(2px);
  825. -o-filter: blur(2px);
  826. -ms-filter: blur(2px);
  827. filter: blur(2px);
  828. -webkit-transition: all 0.5s ease-in-out;
  829. -moz-transition: all 0.5s ease-in-out;
  830. -o-transition: all 0.5s ease-in-out;
  831. -ms-transition: all 0.5s ease-in-out;
  832. transition: all 0.5s ease-in-out;
  833. }
  834.  
  835. #linku5 {
  836. position:fixed;
  837. font-size:13px;
  838. text-decoration:none;
  839. width:70px;
  840. height:auto;
  841. margin-left:495px;
  842. margin-top:618px;
  843. }
  844.  
  845. #linku5:hover {
  846. -webkit-filter: blur(2px);
  847. -moz-filter: blur(2px);
  848. -o-filter: blur(2px);
  849. -ms-filter: blur(2px);
  850. filter: blur(2px);
  851. -webkit-transition: all 0.5s ease-in-out;
  852. -moz-transition: all 0.5s ease-in-out;
  853. -o-transition: all 0.5s ease-in-out;
  854. -ms-transition: all 0.5s ease-in-out;
  855. transition: all 0.5s ease-in-out;
  856. }
  857.  
  858. #linku6 {
  859. position:fixed;
  860. font-size:13px;
  861. width:70px;
  862. height:auto;
  863. text-decoration:none;
  864. margin-left:570px;
  865. margin-top:618px;
  866.  
  867. }
  868.  
  869. #linku6:hover {
  870. -webkit-filter: blur(2px);
  871. -moz-filter: blur(2px);
  872. -o-filter: blur(2px);
  873. -ms-filter: blur(2px);
  874. filter: blur(2px);
  875. -webkit-transition: all 0.5s ease-in-out;
  876. -moz-transition: all 0.5s ease-in-out;
  877. -o-transition: all 0.5s ease-in-out;
  878. -ms-transition: all 0.5s ease-in-out;
  879. transition: all 0.5s ease-in-out;
  880. }
  881.  
  882.  
  883. #fade { /*--Transparent background layer--*/
  884. display: none; /*--hidden by default--*/
  885. background: #a4a4a4; /*color of pop up fade */
  886. background-image: url(''); /*if you want to add a background image to go behind your popup */
  887. position: fixed; left: 0; top: 0;
  888. width: 100%;
  889. height: 100%;
  890. opacity: 0.7;/* you can make it 0 if you don't want a surrounding color to the popup or set it to 1 to have the background posts and theme invisible and only the pop up showing */
  891. z-index: 9999;
  892. }
  893.  
  894. .popup_block {
  895. display:none;
  896. HEIGHT:auto;
  897. width:auto;
  898. background:transparent;
  899. padding:0px;
  900. float:left;
  901. position:fixed;
  902. margin:auto;
  903. z-index: 99999;
  904. }
  905.  
  906. .popup_boxy {
  907. background:#969696; /*color of popup background*/
  908. background-image:url("http://i.imgur.com/EqkbQFd.png"); /*main image of popup*/
  909. border:solid 1px #969696; /*border color of main popup*/
  910. position:absolute;
  911. box-shadow: 0px 0px 2px #969696; /*shadow color of popup*/
  912. text-align:center;
  913. font-size: 10px; /*font size of the words inside the box */
  914. padding:20px;
  915. margin:auto;
  916. width: 575px; /*width of main pop up*/
  917. height:350px; /*height of main pop up*/
  918. overflow-y:none;
  919. top:235px; /*position of pop up*/
  920. left:450px;
  921. z-index: 99999; /*if the box is hiding behind other things in your theme, add more 9′s */
  922. }
  923.  
  924. .popup_content {
  925. height:321px;
  926. width: 327px;
  927. padding: 10px;
  928. margin:5px;
  929. border: solid 1px #969696; /*border color of square that includes popup content*/
  930. overflow-y:scroll;
  931. background:#969696; /*background color of pop up content, the square that has your text*/
  932. float:right;
  933. }
  934.  
  935. .tabheader {
  936. position:absolute;
  937. top:210px; /*make sure to keep this less than position of box so it floats above it always*/
  938. left:812px;
  939. text-align:center;
  940. width:300px;
  941. background:transparent;
  942. color:#e6e6e6; /* color of hanging pop up header */
  943. text-shadow:0px 0px 10px #7c7c7c,
  944. 0px 0px 3px #7c7c7c;
  945. overflow-y:scroll;
  946. font-family: 'nightingale';
  947. font-size:15px;
  948. font-weight:normal;
  949. letter-spacing:1px;
  950. text-transform:lowercase;
  951. z-index: 999999; /*if the box is hiding behind other things in your theme, add more 9′s */
  952. }
  953.  
  954. /*verses tab begins*/
  955.  
  956. #headerbar{
  957. position:absolute;
  958. top: 355px; /*position of verses navigation*/
  959. left: 1065px; /*position of verses navigation*/
  960. text-align:center;
  961. border:none;
  962. width:auto;
  963. background:transparent; /*background color of pop up side navigation*/
  964. height:auto;
  965. overflow:scroll;
  966. text-align:justify;
  967. padding:5px;
  968. font-size:9px;
  969. font-family:calibri;
  970. text-transform:uppercase;
  971. letter-spacing:1px;
  972. text-align:center;
  973. z-index: 999999; /*if the box is hiding behind other things in your theme, add more 9′s */
  974. }
  975.  
  976. }
  977.  
  978. #tabbar{
  979.  
  980. margin-top:auto; /*– for placing –*/
  981. margin-left:auto; /*– for placing –*/
  982. width: 400px; /*– sets width of your text –*/
  983. height:440px; /*– sets height of your text –*/
  984. overflow: scroll;
  985. text-align:justify;
  986. font-family:calibri;
  987. font-size:10px;
  988. }
  989.  
  990. ul#tabs {text-align: center;}
  991.  
  992. ul#tabs li { /*– your inactive / not viewed tabs –*/
  993. display:block;
  994. width: 100px;
  995. padding: 5px;
  996. margin:10px;
  997. font-size:11px;
  998. background-image: url('');
  999. background:#ccc;
  1000. background-repeat:repeat;
  1001. background-attachment:fixed;
  1002. border: double 3px #7c7c7c;
  1003. box-shadow: 0px 0px 5px #a4a4a4;
  1004. color:#7c7c7c;
  1005. font-family:calibri;
  1006. text-transform:uppercase;
  1007. cursor:pointer;
  1008. }
  1009.  
  1010. ul#tabs li.active { /*– your active tab –*/
  1011.  
  1012. text-align:justify;
  1013. width: 100px;
  1014. box-shadow: 0px 0px 5px #a4a4a4;
  1015. background-image: url('http://i.imgur.com/X3T464H.gif');
  1016. background-repeat:repeat;
  1017. background-attachment:fixed;
  1018. border: double 3px #7c7c7c; /*color of border of the titles of the sidebar*/
  1019. padding:5px;
  1020. margin:10px;
  1021. color:#fff; /*text color of sidebar titles*/
  1022. text-shadow:1px 1px #191919,
  1023. 1px -1px #191919,
  1024. 1px 0px #191919,
  1025. 0px 1px #191919,
  1026. 0px -1px #191919,
  1027. -1px 1px #191919,
  1028. -1px 0px #191919,
  1029. -1px -1px #191919;
  1030. /*change all the hex of the text shadow to the same code
  1031. to change the outline of the text*/
  1032. font-size:11px;
  1033. font-family:calibri;
  1034. text-transform:uppercase;
  1035. letter-spacing:1px;
  1036. text-align:center;
  1037. -webkit-transition:
  1038. all 0.5s ease-out;
  1039. -moz-transition: all 0.5s ease-out;
  1040. transition: all 0.5s ease-out;
  1041. }
  1042.  
  1043. ul#tab, ul#tabs{list-style-type:none;margin:0px;padding:0px;}
  1044. ul#tab li.active {display: block;}
  1045. ul#tab li {display: none;}
  1046.  
  1047. /*end*/
  1048.  
  1049. img.btn_close {
  1050. float: right;
  1051. margin: -5px -5px 0 0;
  1052. }
  1053. /*--Making IE6 Understand Fixed Positioning--*/
  1054. *html #fade {
  1055. position: absolute;
  1056. }
  1057. *html .popup_block {
  1058. position: absolute;
  1059. }
  1060.  
  1061.  
  1062. /*The header of each part of the navigation*/
  1063. .navi_linksu h3 {
  1064. font-size:22px;
  1065. margin-bottom:-5px;
  1066. border:none;
  1067. color: #a4a4a4; /*color of header*/
  1068. font-family: 'selima';
  1069. font-weight:normal;
  1070. letter-spacing:1px;
  1071. text-transform:lowercase;
  1072. background:transparent;
  1073. }
  1074.  
  1075. .navi_linksu {
  1076. text-align:center;
  1077. }
  1078.  
  1079. .navi_linksu a {
  1080. display: inline-block;
  1081. width: 120px;
  1082. padding: 5px;
  1083. margin:5px;
  1084. font-size:11px;
  1085. background-image: url('http://i.imgur.com/X3T464H.gif');
  1086. background:#fff; /*color of navigation links background*/
  1087. background-repeat:repeat;
  1088. background-attachment:fixed;
  1089. border: solid 1px #7c7c7c;
  1090. color:#7c7c7c;
  1091. font-family:calibri;
  1092. text-transform:uppercase;
  1093.  
  1094.  
  1095. }
  1096.  
  1097. .navi_linksu a:hover {
  1098. -webkit-transition: all .5s ease-in-out;
  1099. -moz-transition: all .5s ease-in-out;
  1100. -ms-transition: all .5s ease-in-out;
  1101. -o-transition: all .5s ease-in-out;
  1102. transition: all .5s ease-in-out;
  1103. background:#7c7c7c; /*background color of navi links on hover*/
  1104. border: solid 1px #ccc;
  1105. color:#ccc; /*color of links on hover*/
  1106. }
  1107.  
  1108. .versu {
  1109. width:80px;
  1110. height:auto;
  1111. float:left;
  1112. padding:20px;
  1113. }
  1114.  
  1115.  
  1116. .vee {
  1117. text-align:center;
  1118. padding:10px;
  1119. margin-bottom:20px;
  1120. }
  1121.  
  1122. /*POP UP END*/
  1123.  
  1124.  
  1125. /* DO NOT REMOVE THIS PART OR MAKE A COLOR THAT IS NOT VISIBLE */
  1126. .credit {
  1127. font-weight:bold;
  1128. border-top:dashed 1px #7c7c7c;
  1129. border-right:dashed 1px #7c7c7c;
  1130. border-left:dashed 1px #7c7c7c;
  1131. background:#ccc;
  1132. color:#7c7c7c;
  1133. padding:10px;
  1134. font-size:15px;
  1135. bottom:0px;
  1136. right:20px;
  1137. position:fixed;
  1138. font-family:'sail';
  1139. -webkit-filter: blur(.5px);
  1140. -moz-filter: blur(.5px);
  1141. -o-filter: blur(.5px);
  1142. -ms-filter: blur(.5px);
  1143. filter: blur(.5px);
  1144.  
  1145. }
  1146.  
  1147. .credit a {
  1148. color:#7c7c7c;
  1149. }
  1150.  
  1151. .credit a:hover {
  1152. color: #fff;
  1153. }
  1154. /*CREDIT END*/
  1155.  
  1156. </style>
  1157.  
  1158. <body>
  1159. <!--sidebar begins here-->
  1160. <div id="boxy">
  1161. <div id="despacito">
  1162. <div class="anchor">OH I'M FAR FROM INFALLIBLE !!</div>
  1163. <div class="sail">
  1164.  
  1165. <h4>
  1166. AND TURN THE.
  1167.  
  1168. </h4>
  1169. PRI. SEL. ACTIVE (Hopefully)
  1170. <p>
  1171. <i>ALICE CULLEN</i>
  1172. <br>
  1173. Of The Twilight Series written by Stephenie Meyer
  1174. <br>
  1175. <u>Book based and Slightly canon divergent</u>
  1176. <br>
  1177. Tracking <i>#COLDPIXIE</i>
  1178. <br>
  1179.  
  1180. <h4>
  1181. WHITE SNOW RED.
  1182.  
  1183. </h4>
  1184.  
  1185.  
  1186. RE-EST: 07|18|2016
  1187. <br>
  1188.  
  1189.  
  1190. <h4>
  1191. AS STRAWBERRIES.
  1192.  
  1193. </h4>
  1194.  
  1195. HE/HIM/HIS PRONOUNS
  1196. <p>
  1197. Muns Names is Tyler
  1198. <p>
  1199. DRAFTS: 21
  1200. <p>
  1201. STARTERS: 4
  1202. <p>
  1203. ASK: 10
  1204. <p>
  1205. LAST UPDATED: JUNE 1ST
  1206.  
  1207. <h4>
  1208. IN THE SUMMERTIME.
  1209.  
  1210. </h4>
  1211.  
  1212.  
  1213. </center>
  1214. </div>
  1215. </div>
  1216. </div>
  1217.  
  1218. <!--sidebar end-->
  1219.  
  1220. <!--this is where you edit the size and titles of the scattered links, you can edit their content way below though. The #?w= determines the width of the pop up, make sure to give your popups different box numbers-->
  1221. <div id="pops">
  1222. <div id="linku1"> <a href="/" title="HOME.">✖</a></div>
  1223. <div id="linku2"> <a href="#?w=500" rel="box1" class="poplight" title="ASK.">✖</a></div>
  1224. <div id="linku3"> <a href="#?w=500" rel="box2" class="poplight" title="NAVIGATION.">✖</a></div>
  1225. <div id="linku4"> <a href="#?w=320" rel="box3" class="poplight" title="RULES."><img src="http://i.imgur.com/K6vl0uB.png"></a></div> <!--change image source to change the squares labelled icon-->
  1226. <div id="linku5"> <a href="#?w=320" rel="verses" class="poplight" title="VERSES."><img src="http://i.imgur.com/SQqoHTq.png"></a></div> <!--change image source to change the squares labelled icon-->
  1227. <div id="linku6"> <a href="#?w=320" rel="box5" class="poplight" title="ABOUT."><img src="http://i.imgur.com/tNTKIyz.png"></a></div> <!--change image source to change the squares labelled icon-->
  1228. </div>
  1229. </div>
  1230. </div>
  1231.  
  1232. <!--/* DO /NOT/ REMOVE THIS PART OR MAKE A COLOR THAT IS NOT VISIBLE */-->
  1233. <div class="credit"><a href="http://ddkinzart.tumblr.com" title="code by ddkinzart">D.</a></div>
  1234.  
  1235. <!--below is where the post structure begins, don't edit below this point if you're not familiar with coding or tumblr theme attritibutes-->
  1236.  
  1237. {block:Pagination}
  1238. <div class="pagi">
  1239. {block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  1240. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}
  1241. </div>
  1242. {/block:Pagination}
  1243. <div id="container">
  1244. <div id="entries">
  1245.  
  1246. {block:Posts}
  1247.  
  1248. <div id="content">
  1249. {block:Text}{block:Title}<div class="titulo">{Title}</div>{/block:Title}{Body}{/block:Text}
  1250. {block:Photo}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1251. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  1252.  
  1253. {block:Photoset}{Photoset}{block:Caption}{Caption}{/block:Caption}
  1254. {/block:Photoset}
  1255.  
  1256. {block:Quote}<div class="quote">❝{Quote}❞</div>{block:Source}{Source}{/block:Source}{/block:Quote}
  1257. {block:Link}
  1258. {block:Thumbnail}
  1259. <img src="{Thumbnail}" alt="{Name}" style="width:95%;border-radius:25px">
  1260. {/block:Thumbnail}
  1261. <div id="linku">
  1262. <span style="font-size:20px">❝ </span> <a href="{URL}" class="link" {Target}>{Name}</a><span style="font-size:20px"> ❞</span>
  1263. </div>
  1264. {/block:Link}
  1265.  
  1266. {block:Chat}
  1267. {block:Title}
  1268. <div class="titulo">{Title}</div>{/block:Title}<br>
  1269. <ul class="convo">{block:Lines}<li class="line_{Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label}
  1270. {Line}</li>{/block:Lines}</ul>
  1271. {/block:Chat}
  1272.  
  1273. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  1274. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1275. {block:Answer}
  1276. <div id="asker">{Asker}<span style="font-size:13px; font-family:bebas neue;"> whispered: </span></div><div id="ask">{Question}</div>
  1277. <div id="answer">
  1278. {Answer}</div>
  1279. {/block:Answer}
  1280. <div class="permalinks">
  1281. {block:RebloggedFrom}
  1282. <a href="{ReblogParentURL}" title="via: {ReblogParentName}" >✖</a>
  1283. {/block:RebloggedFrom}
  1284. <a href="{Permalink}" title="{timeago}">✖</a>{block:NoteCount}
  1285. <a href="{Permalink}" title="{NoteCount} hits.">✖</a>{/block:NoteCount}
  1286. {block:ContentSource}
  1287. <a href="{SourceURL}" title="source: {SourceTitle}">✖</a>
  1288. {/block:ContentSource}
  1289. <a href="{ReblogURL}" title="reblog" target="_blank">✖</a>
  1290. {/block:RebloggedFrom}
  1291. </div>
  1292. <div class="tags">
  1293. {block:HasTags}
  1294. {block:Tags}
  1295. <!--you can change symbol before tags to something else-->; <a href="{TagURL}" title="{Tag}">{Tag}</a>
  1296. {/block:Tags}
  1297. {/block:HasTags}
  1298. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1299.  
  1300. </div></div>
  1301. {/block:Posts}
  1302. </div>
  1303. </div>
  1304. </body>
  1305.  
  1306.  
  1307. <!--This is where the pop up begins, you can edit beyond this point-->
  1308.  
  1309. <div id="box1" class="popup_block" style="top:50%;left:50%">
  1310. <i style="text-align:center;">{AskLabel}</i>
  1311. <br>
  1312. <div class="queque">
  1313. {block:ShowHeaderImage}<img src="{HeaderImage}">{/block:ShowHeaderImage} <!-- this will automatically display your mobile header image, but you can substitute with the url of another image, try to choose image which's width matches your pop up-->
  1314. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/coldpixie.tumblr.com" width="100%"></iframe>
  1315. </div></div>
  1316. </div>
  1317. <div id="box2" class="popup_block">
  1318. <div class="tabheader">Navigation.</div><div class="popup_boxy">
  1319. <div class="popup_content">
  1320. <h3>navigation</h3>
  1321. <div class="navi_linksu">
  1322. <h3>Main</h3>
  1323.  
  1324. <a href="/tagged/%7C░%7C-I-REMEMBER-NOTHING-OF-BEING-HUMAN-%28Alice%29">ALICE.</a>
  1325. <a href="/tagged/%7C░%7C-HE-KEPT-ME-WAITING-FAR-TO-LONG-%28Jasper%29">JASPER.</a>
  1326. <a href="/tagged/%7C░%7C-AS-A-BROTHER-YOU-ARE-SOMETIMES-A DISAPPOINTMENT %28Edward%29">EDWARD.</a>
  1327. <a href="/tagged/%7C░%7C-WE-CANT-PLAY-CHESS-ANYMORE-%28Emmett%29">EMMETT.</a>
  1328. <a href="/tagged/%7C░%7C-TOGETHER-WERE-A-FORCE-TO-BE RECKON WITH-%28Rosalie%29">ROSALIE.</a>
  1329. <a href="/tagged/%7C░%7C-HE-TOOK-US-IN-AND-BECAME-THE-FATHER-I-NEVER-HAD-%28Carlisle%29">CARLISLE.</a>
  1330. <a href="/tagged/%7C░%7C-SHE-CANT-REPLACE-BUT-FILLS-THE-GAPS-IN-ANYWAYS-%28Esme%29">ESME.</a>
  1331. <a href="/tagged/%7C░%7C-SHES-ALREADY-APART-OF-THE-FAMILY-%28Bella%29">BELLA.</a>
  1332. <a href="/tagged/%7C░%7C-I-SAW-US-TOGETHER-AND-KNEW-THE-FUTURE-WOULDN%27T-CHANGE-%28JasperXAlice%29">ALICE / JASPER.</a>
  1333. <h3>other</h3>
  1334. <a href="/tagged/%7C░%7C-PASSION-FOR-FASHION-%28Aesthetic%29">AESTHETIC.</a>
  1335. <a href="/tagged/%7C░%7C-MY-NAME-IS-MARY-ALICE-BRANDON-%28Musings%29">MUSING.</a>
  1336. <a href="/tagged/%7C░%7C-meme">MEME.</a>
  1337. <a href="/tagged/%7C░%7C-OPEN">OPEN.</a>
  1338. <a href="/tagged/%7C░%7C-STARTER-CALL">STARTER CALL.</a>
  1339. </div>
  1340. </div>
  1341. </div>
  1342. </div>
  1343.  
  1344. <div id="box3" class="popup_block"><div class="tabheader">Rules.</div><div class="popup_boxy">
  1345. <div class="popup_content">
  1346.  
  1347. <h3>GUIDELINES.</h3>
  1348.  
  1349. <p><strong style="font-size: 11px; line-height: 18px;"><strong>WRITING STYLE / INTERACTION</strong></strong></p>
  1350. <ul>
  1351. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i am more than happy to accept ask memes, but I would like to make it into a new text post rather than reblog the ask itself.</li>
  1352. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">ask memes can come from <a href="http://dxx">anyone</a>! that being said i&rsquo;m more likely to respond to mutuals first.</li>
  1353. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i am okay with both one-liners and multi-para but please let me know ahead of time.</li>
  1354. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i reserve the right to decline interaction, please respect that.</li>
  1355. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i&rsquo;m more than willing to interact with ocs, but only if they have a dossier page, backstory, etc. just so i can get a good grasp on what kind of character your oc is!</li>
  1356. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">if i don&rsquo;t follow you back, i don&rsquo;t have any interest in interaction, <strong>sorry.</strong></li>
  1357. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i do ask that you use icons<em>.</em> but you DO NOT HAVE TO FORMAT YOUR POSTS<em>.</em>&nbsp;i care more about writing than if you underline stuff or make it small.</li>
  1358. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;"><strong>THIS IS NOT A SPOILER FREE BLOG</strong>. death mentions will be shared.&nbsp;</li>
  1359. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">smut will always be under a read more but i&rsquo;m not very good at writing it so??? idk if there will be any.&nbsp;</li>
  1360. </ul>
  1361. <p>.</p>
  1362. <h3>Stealing.</h3>
  1363. <ul>
  1364. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">PSD &nbsp;/ background were made by @telepathiclion and they have given permission for me to use them !&nbsp;</li>
  1365. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">any other graphic / icons that are posted on this blog have been made by me.</li>
  1366. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">please DO NOT STEAL anything on this blog as none of it is for free use.&nbsp;</li>
  1367. </ul>
  1368. <h3>Shipping.</h3>
  1369. <ul>
  1370. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i&rsquo;m open to any sort of shipping, whether it&rsquo;s <strong>platonic, or romantic. </strong>but i&rsquo;d prefer development and a lot of interaction between our muses before shipping is even mentioned.&nbsp;</li>
  1371. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i ship Alice X Chemistry, If i find their is nothing between them please do not get angry.</li>
  1372. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i ship Alice X Jasper heavily, so that ship will always come first for me.</li>
  1373. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i am 18, and of age but i will <em>not</em> write smut with anyone under age.&nbsp;</li>
  1374. </ul>
  1375. <h3>Triggers.</h3>
  1376. <ul>
  1377. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i have triggers, and i would&nbsp;<strong>really</strong> appreciate it if you tagged triggering posts accordingly. with that being said, my triggers are as follows&mdash;&mdash;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &mdash;-rape.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &mdash;-suicide.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &mdash;-self harm.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &mdash;-balloons. <strong>( I&rsquo;M COMPLETELY SERIOUS )</strong></li>
  1378. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i have everything blacklisted so as long as you tag it i&rsquo;ll be okay.</li>
  1379. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">this is Twilight so flashbacks may include <strong>blood and gore</strong>, as well as procedures done by Mental Institutions such as shock therapy and hydro therapy.&nbsp;</li>
  1380. </ul>
  1381. <h3>Mun.</h3>
  1382. <ul style="line-height: 19.6px;">
  1383. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i&rsquo;m 18 years old from Canada.</li>
  1384. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i&rsquo;m currently attending university.</li>
  1385. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">my life is also very busy and i am in the process of running four blogs, so my replies will be slow&nbsp;</li>
  1386. </ul>
  1387. <h3>Exlusive.</h3>
  1388. <ul>
  1389. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">i&rsquo;m okay with exclusivity, but i&rsquo;d prefer it if we&rsquo;ve interacted an&nbsp;<strong>abundant</strong> amount of times beforehand, both IC &amp; OOC.</li>
  1390. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">if you are interested in coming a main or exclusive then just hit me up with a message.</li>
  1391. <li style="color: #333333; font-family: calibri; font-size: 11px; line-height: 18px;">Skype is given to mutuals who ask for it.&nbsp;</li>
  1392. </ul>
  1393. <p>PEOPLE WHO I AM EXCLUSIVE WITH:&nbsp;<br /><span style="color: #333333; font-family: calibri; font-size: 11px;"><a href="https://matriarcheart.tumblr.com/">ESME CULLEN</a><br /><a href="http://missblake.co.vu/">DAPHNE BLAKE<br /></a><a href="http://seenhope.tumblr.com/">JASPER HALE<br /></a><a href="http://beautycaused.tumblr.com/">ROSALIE HALE<br /></a><a href="https://brawnfilled.tumblr.com/">EMMETT CULLEN</a><br /><a href="https://leniencys.tumblr.com/">CARLISLE CULLEN</a></span></p>
  1394. <p><span style="font-size: 11px;"><br /></span>PEOPLE WHO I AM MAINS WITH:&nbsp;<br /><span><a href="http://strcngeheart.tumblr.com/" style="color: #333333; font-family: calibri; font-size: 11px;">RENESMEE CULLEN<br /></a></span><a href="https://stonesculpted.tumblr.com/" style="color: #333333; font-family: calibri; font-size: 11px;">EDYTHE CULLEN<br /></a><a href="https://freesiaveined.tumblr.com/" style="color: #333333; font-family: calibri; font-size: 11px;">BELLA SWAN</a></p>
  1395. <p><span>&nbsp;</span></p>
  1396. </div></div></div></div>
  1397.  
  1398. <div id="verses" class="popup_block"><div class="tabheader">Verses.</div>
  1399. <div id="headerbar">
  1400. <ul id="tabs">
  1401. <li class="active">main.</li>
  1402. <li>AU.</li>
  1403. <li>OTHER.</li>
  1404. </ul></div>
  1405.  
  1406. <div class="popup_boxy"><div class="popup_content">
  1407.  
  1408. <div id="tabbar">
  1409. <ul id="tab">
  1410.  
  1411. <li class="active">
  1412.  
  1413. <h3>MAIN</h3>
  1414.  
  1415. <!--start copying from here if you want more verse blocks-->
  1416.  
  1417. <div class="vee">
  1418.  
  1419. <img class="versu" src="http://i.imgur.com/YOITrKd.gif"> <!--REPLACE WITH IMAGE URL-->
  1420.  
  1421. <p><a href="VERSE TAG"><b>MAIN</b></a>
  1422.  
  1423. <br><br><br><br>This verse contains anything within the twilight timeline, from before Bella even comes to forks, to the end of breaking dawn where Renesmee continues to grow and the coven adapts to having such a young child around the house.
  1424.  
  1425. </div>
  1426.  
  1427. <!--paste here-->
  1428. <!--start copying from here if you want more verse blocks-->
  1429.  
  1430. <div class="vee">
  1431.  
  1432. <img class="versu" src="http://i.imgur.com/OUIwage.gif"> <!--REPLACE WITH IMAGE URL-->
  1433.  
  1434. <p><a href="VERSE TAG"><b>JUST BITTEN.</b></a>
  1435.  
  1436. <br><br><br><br>Takes place right after Alice was bitten and escapes the Mental Institution. Learning to live with her newly found and increased abilities with no recollection of what happened to her before she turned, confused and alone things become messy very quickly without knowledge of common rules and morals to follow.
  1437.  
  1438. </div>
  1439.  
  1440. <!--paste here-->
  1441. <!--start copying from here if you want more verse blocks-->
  1442.  
  1443. <div class="vee">
  1444.  
  1445. <img class="versu" src="http://i.imgur.com/rxSNG9J.gif"> <!--REPLACE WITH IMAGE URL-->
  1446.  
  1447. <p><a href="VERSE TAG"><b>VOLTURI.</b></a>
  1448.  
  1449. <br><br><br><br>Alice was approached by the Voltrui soon after she was changed and was taken to Volterra where she immediately became apart of the guard per Aro’s orders. On human blood her visions are intensified and she works with the Volturi guard to capture and bring in those who betray the Volturi.
  1450.  
  1451. </div>
  1452.  
  1453. <!--paste here-->
  1454. <!--start copying from here if you want more verse blocks-->
  1455.  
  1456. <div class="vee">
  1457.  
  1458. <img class="versu" src="http://i.imgur.com/hD2wh55.png"> <!--REPLACE WITH IMAGE URL-->
  1459.  
  1460. <p><a href="VERSE TAG"><b>HUMAN.</b></a>
  1461.  
  1462. <br><br><br><br>Alice, still coping with the untimely death of her mother continues to grow and learn as she adjusts to life with her fathers new wife. As a teenager in the small town of Biloxi theirs not much she can do besides stir up trouble. Her ‘gift’ however does cause some problems around the house and often leaves her an outcast at her fathers social events.
  1463. <p>
  1464. (In this AU Alice does not see her mothers death and her father does not try and kill her as well, instead he plans to marry her off as fast as possible for both the social aspect and the wealth)
  1465.  
  1466. </div>
  1467.  
  1468. <!--paste here-->
  1469.  
  1470.  
  1471.  
  1472. </li>
  1473.  
  1474. <li>
  1475.  
  1476. <h3>AU</h3>
  1477.  
  1478. <!--start copying from here if you want more verse blocks-->
  1479.  
  1480. <div class="vee">
  1481.  
  1482. <img class="versu" src="http://i.imgur.com/yjwagqZ.png"> <!--REPLACE WITH IMAGE URL-->
  1483.  
  1484. <p><a href="VERSE TAG"><b>THE HUNGER GAMES.</b></a>
  1485.  
  1486.  
  1487. <br><br><br><br>Alice is the victor of the 63rd annual Hunger Games from District 8, her strategy was to hide for most of the games, using her physical appearance to make the other tributes think she wasn’t a danger to them. Once it got down to the nitty gritty however that’s when she struck. She lived a rather normal life, falling for another Victor by the name of Jasper Hale. But their love didn’t last long as the rebellion slowly grew.
  1488. <p>
  1489. She was reaped into the 75th annual Hunger Games alongside her old friend Woof and there she was faced with the ultimate solution to the problem plaguing their country.
  1490. <p>
  1491. She joined the rebellion, signed up to protect Katniss Everdeen at whatever cost and vowed to make sure Jasper got out safe as well.
  1492. <p>
  1493. When the arena collapsed Alice alongside Peeta and Johanna were taken to the Captiol where she was tortured with intense shock therapy to try and get answers out of her. Leaving her with total Amnesia. Once rescued from the Capitol and in the hands of District 13 Alice continued to help out in any way that she could. But ultimately had to stay behind when the Squad went to storm the Capitol building because she wasn’t fit to fight anymore.
  1494.  
  1495. </div>
  1496.  
  1497. <!--paste here-->
  1498. <!--start copying from here if you want more verse blocks-->
  1499.  
  1500. <div class="vee">
  1501.  
  1502. <img class="versu" src="http://i.imgur.com/v5lAx74.png"> <!--REPLACE WITH IMAGE URL-->
  1503.  
  1504. <p><a href="VERSE TAG"><b>DIVERGENT.</b></a>
  1505.  
  1506. <br><br><br><br>UNDER CON.
  1507.  
  1508. </div>
  1509.  
  1510. <!--paste here-->
  1511. <!--start copying from here if you want more verse blocks-->
  1512.  
  1513. <div class="vee">
  1514.  
  1515. <img class="versu" src="http://i.imgur.com/NPKUFiR.png"> <!--REPLACE WITH IMAGE URL-->
  1516.  
  1517. <p><a href="VERSE TAG"><b>THE WALKING DEAD.</b></a>
  1518.  
  1519. <br><br><br><br>Same as Human verse EXCEPT after a terrible accident Alice wakes up in a hospital run completly by survivors of the outbreak with hardly any memory of what happened before the military and police started fighting back against the undead. After sending a flare to signal any humans nearby Alice meets up with twins Rosalie and Jasper.
  1520. <p>
  1521. (This AU doesn’t meet up with the TWD or FOTWD timeline as the trio is just a small group roaming through the southern united states BUT we can definitely plot something out where they meet up with the group !)
  1522.  
  1523. </div>
  1524.  
  1525. <!--paste here-->
  1526. <!--start copying from here if you want more verse blocks-->
  1527.  
  1528. <div class="vee">
  1529.  
  1530. <img class="versu" src="http://i.imgur.com/HBTjs62.png"> <!--REPLACE WITH IMAGE URL-->
  1531.  
  1532. <p><a href="VERSE TAG"><b>LIFE AND DEATH.</b></a>
  1533.  
  1534. <br><br><br><br>Canon Divergent from the Life and Death books, Archie has the same backstory as Alice does and meets Jessamine the same way.
  1535.  
  1536. </div>
  1537.  
  1538. <!--paste here-->
  1539. <!--start copying from here if you want more verse blocks-->
  1540.  
  1541. <div class="vee">
  1542.  
  1543. <img class="versu" src="http://i.imgur.com/BkxjPzU.gif"> <!--REPLACE WITH IMAGE URL-->
  1544.  
  1545. <p><a href="VERSE TAG"><b>HARRY POTTER.</b></a>
  1546.  
  1547. <br><br><br><br>Alice is a half-blooded witch who has already graduated from Ilvermorny School of Witchcraft and Wizardry and was sorted into Pukwudgie at the age of 11. (UNDER CON)
  1548.  
  1549. </div>
  1550.  
  1551. <!--paste here-->
  1552. <!--start copying from here if you want more verse blocks-->
  1553.  
  1554. <div class="vee">
  1555.  
  1556. <img class="versu" src="http://i.imgur.com/BkxjPzU.gif"> <!--REPLACE WITH IMAGE URL-->
  1557.  
  1558. <p><a href="VERSE TAG"><b>X-MEN.</b></a>
  1559.  
  1560. <br><br><br><br>Alice has the mutant ability of seeing glimpses into the future, at first when she was a child it starting out as predicting the weather for the day. But as she grew older it progressed into seeing her mothers murder and her father getting away with it. Fleeing her home town she traveled upstate to New York to seek help from Charles Xavier, after seeing a vision of herself living there with several other mutants. After ‘graduating’ from the school Alice decides not to Join the X-Men instead she moves back home and works to uncover her fathers secrets and arrest him when the times right.
  1561.  
  1562. </div>
  1563.  
  1564. <!--paste here-->
  1565.  
  1566. </li>
  1567.  
  1568. <li>
  1569.  
  1570. <h3>OTHER</h3>
  1571.  
  1572. <!--start copying from here if you want more verse blocks-->
  1573.  
  1574. <div class="vee">
  1575.  
  1576. <img class="versu" src="http://i.imgur.com/vqOdAl4.gif"> <!--REPLACE WITH IMAGE URL-->
  1577.  
  1578. <p><a href="VERSE TAG"><b>THE VAMPIRE DIARIES.</b></a>
  1579.  
  1580. <br><br><br><br>Pretty much exactly the same, Alice feeds on animals and can still see glimpses into the future but instead of sparkling in the sunlight alice wears a small choker necklace with the Cullen crest on it that allows her to walk in the daylight (pretty much exactly the same as the salvatore rings)
  1581.  
  1582. </div>
  1583.  
  1584. <!--paste here-->
  1585.  
  1586. <!--start copying from here if you want more verse blocks-->
  1587.  
  1588. <div class="vee">
  1589.  
  1590. <img class="versu" src="http://i.imgur.com/Q2MTQxo.png"> <!--REPLACE WITH IMAGE URL-->
  1591.  
  1592. <p><a href="VERSE TAG"><b>SUPERNATURAL.</b></a>
  1593.  
  1594. <br><br><br><br>Pretty much exactly the same, Alice feeds on animals and can still see glimpses into the future. The sun cant hurt her and the only way she can die is through beheading.
  1595.  
  1596. </div>
  1597.  
  1598. <!--paste here-->
  1599. <!--start copying from here if you want more verse blocks-->
  1600.  
  1601. <div class="vee">
  1602.  
  1603. <img class="versu" src="http://i.imgur.com/E9TUduZ.png"> <!--REPLACE WITH IMAGE URL-->
  1604.  
  1605. <p><a href="VERSE TAG"><b>SUPERNATURAL HUNTER.</b></a>
  1606.  
  1607. <br><br><br><br>Alice was born into a fairly well off family in Biloxi Mississippi, she showed signs of her Psychic ability at an early age, it had scared her father but amazed her mother. Instead of consulting doctors about her condition her father was just going to send her to the nearby Hospitals Psych ward. Before he could however, he and most of Alice’s family were killed by a demon. She had been staying at a nearby friends house and only came home during the night because she felt extremely sick. Mostly because of the vision she had hours before. The years past and she hopped from one family members house to another. Her visions becoming more violent and painful Unable to control who’s future she looked into. She started researching about her abilities and it lead her to become obsessed with the supernatural, knowing that her families death wasnt just a murder. She had met Jasper along the way, who was a Hunter well before she even knew what the job meant. He taught her what she needed to know and they had stuck together ever since. Alongside his sister Rose the trio travel all throughout the United States taking down whatever monster rears its ugly head.
  1608.  
  1609. </div>
  1610.  
  1611. <!--paste here-->
  1612. <!--start copying from here if you want more verse blocks-->
  1613.  
  1614. <div class="vee">
  1615.  
  1616. <img class="versu" src="http://i.imgur.com/FbwBRG8.gif"> <!--REPLACE WITH IMAGE URL-->
  1617.  
  1618. <p><a href="VERSE TAG"><b>TEEN WOLF.</b></a>
  1619.  
  1620. <br><br><br><br>Abandoned by her creator Alice had to learn how to survive on her own without drawing to much attention to herself. She never met up with the Cullens or Jasper and lives her life as a Nomad moving from place to place. It took a very long time for her to learn how to control her thirst and just recently she started feeding only on animals as every time she killed someone the guilt became to much to handle. She was drawn to Beacon Hills, unsure why she would even choose California in the first place, but shes careful. Only hunting on the weekends and attending school during the weekdays under a false name with false signatures to prove her parents are with her. (UNDER CON)
  1621.  
  1622. </div>
  1623.  
  1624. <!--paste here-->
  1625.  
  1626.  
  1627. </li>
  1628.  
  1629. </ul> <!--important don't delete-->
  1630. </div></div></div></div></div></div></div></div></div></div></div></div></div>
  1631.  
  1632. </div>
  1633. </div></div>
  1634.  
  1635. <div id="box5" class="popup_block"><div class="tabheader">About.</div>
  1636. <div id="headerbar">
  1637. <ul id="tabs">
  1638. <li class="active">main.</li>
  1639. <li>appearance.</li>
  1640. <li>interests.</li>
  1641. <li>personality</li>
  1642. <li>abilities.</li>
  1643. <li>biography.</li>
  1644. </ul></div>
  1645. <div class="popup_boxy">
  1646. <div class="popup_content">
  1647. <div id="tabbar">
  1648. "The short girl was pixie-like, thin in the extreme, with small features. Her hair was deep black, cropped short and pointing in every direction."
  1649.  
  1650. <ul id="tab">
  1651. <li class="active">
  1652.  
  1653. <h3>General Information</h3>
  1654.  
  1655. </li>
  1656.  
  1657. <li>
  1658.  
  1659. <h3>Appearance</h3>
  1660. <p>Alice is a very beautiful person, petite, the shortest of the Cullens at 4'10", "thin in the extreme", with small, "pixie-like" features. She is also described to have large eyes and long, delicate eyebrows. Her hair is cropped short, spiky, and inky black because her head was shaved in a mental hospital and was in the process of growing out when she became a vampire. Her original dark brown eye color was replaced by medium gold after she became a vegetarian vampire.
  1661. <p>
  1662. <p>She moves very gracefully, continually cited as dancing, with a carriage that would "break any ballerina's heart". Also in Twilight, James states that, when they were human, Alice's blood smelled much better than Bella's. This could indicate that Alice was James's singer.
  1663. </li>
  1664.  
  1665. <li>
  1666.  
  1667. <h3>Interests</h3>
  1668. TBA.
  1669. </li>
  1670.  
  1671. <li>
  1672.  
  1673. <h3>Personality</h3>
  1674. <p>Alice is portrayed as being optimistic, and she loves and cares for Bella like a sister. She often ignores other people's advice and does things her own way, which usually results in the outcome being better than predicted. She is kind and cares for those she loves. She loves to sing with music three octaves higher than the song really is with her silvery bell-like voice. She has vicarious fun dressing up Bella "like a three-dimensional paper doll" and decorating for and throwing parties.
  1675. <p>
  1676. <p>She also loves shopping at expensive shops in large malls as well as makeovers and playing the stock market to make money. Alice seems to think that Bella should do everything a normal teenager should do (i.e. love to shop, party whenever possible, etc.). Alice is also described as being a very fashionable person, going on massive shopping sprees with the money she helps her family make by predicting the stock markets.
  1677. </li>
  1678.  
  1679. <li>
  1680.  
  1681. <h3>Abilities</h3>
  1682. <p>Alice is known as the most agile vampire in the family, supported with her precognitive powers. Despite her tiny size, she is a very capable fighter. She uses a very agile and somewhat artistic style of combat, performing leaps and jumps around and over her opponents, distracting them and than easily defeating them. She has shown great mastery in martial arts (almost rivaling those of her mate), being the best female fighter of her coven, as well as possibly second or third best overall fighter in the family. Her fighting style is very creative and somehow logical, as she doesn't only use sheer strength and speed, but can incapacitate her enemy by several methods of sneaky attacks and tactics, by attacking from above or down to the opponent.
  1683. <p>
  1684. <p>Alice has also a very good evasive skill, able to dodge an attack seconds before touching her, usually by some athletic feats, and be still fully concentrated to attack back immediately. Despite her tiny body structure, Alice has also proved her surprising physical strength, as she could deliver lethal punches, palm thrusts, and kicks to much bigger and heavier opponents and sending them flying away.
  1685. <p>
  1686. <p>Alice has the power to see into the future. The premonitions she experienced as a human are intensified in her vampire life, and she uses them to her advantage in order to keep her family safe. It mainly works by her focusing on a certain object or person and keeping track of its decisions. She can also focus on several objects at the same time, up to the limit her mind allows. Her power is also one of few not affected by Bella's shield. She makes extra money by using her power to predict windfall investments in the stock market. As a human, she only received visions at certain times while at most times, she felt the predictions.
  1687. <p>
  1688. <p>The vision shows up after someone´s decision, that probably means that her power is working all the time like a system alarm, no matter the distance of the target.
  1689. <p>
  1690. <p>However, Alice's foresight has many limitations: she can only see the outcome of someone's decision once it is made - meaning the future can change all too quickly; and if the decision is not firmly rooted, she can see several possible futures at the same time. Also, her vision can be clouded if someone else's decision is involved. Her greatest limitation is that she cannot see any future that involves Quileute shape-shifters or vampire/human hybrids, even if it could be someone else's decision that she is tracking. This is a mystery that Carlisle has theorized is due to the nature of the shape-shifters, who, in the split second it takes for them to phase, don't technically "exist". Carlisle also believes that there may be a link with the shape-shifters and Renesmee having 24 chromosome pairs. Alice theorized that she cannot see Renesmee and the shape-shifters or anything connected to them because she has no experience as being one of them; she sees vampires best because she is one, and can see humans "okay" because she used to be one. Alice, while talking about her talent, describes herself as being "far from infallible". Alice also has the ability to draw a scene that she sees in her visions without looking, and also rather quickly.
  1691. </li>
  1692.  
  1693. <li>
  1694.  
  1695. <h3>Biography</h3>
  1696. <p>Alice was born into a middle-class home in Biloxi, Mississippi, in 1901. Her father was a jeweler and a pearl trader. Alice&rsquo;s mother tended to their home because her father traveled often. Alice was prone to having premonitions of the future since she was a child, though they weren&rsquo;t always correct. Though she rarely spoke of her power, people in town talked a lot during her adolescent years. On two occasions, she tried to warn a friend and a cousin with her unfortunate predictions, but they refused to listen and when the predictions came true, she was blamed for cursing them, earning her the epithets of &ldquo;witch&rdquo; and &ldquo;changeling&rdquo; from the townsfolk.</p>
  1697. <p>Alice had a horrifying vision of her mother being murdered by a stranger and tried to warn her about it. Though she believed her, her father did not. After months of precautions with nothing serious happening, her mother put her guard down, and was eventually killed. While Alice saw it happen and tried to explained that it was murder, it was declared accidental and her father silenced her.</p>
  1698. <p>Within six months, her father remarried a blonde Yankee from Illinois whose father was a promising customer. Alice&rsquo;s stepmother treated her coldly while making a pet of her sister. Alice suspected that the marriage and her mother&rsquo;s murder were all planned and carried out by her stepmother. Her father raged at her for suggesting ill of his new wife.</p>
  1699. <p>Then, Alice had a vision of her father and her mother&rsquo;s killer planning to kill her, revealing the true face of her father. She tried to hide in her closest relatives&rsquo; house, but they drove her away as they still blamed her for the death of their son. Alice then rushed to the town&rsquo;s marshal, but her father was already one step ahead of her. He told the townsfolk that his daughter had gone mad, and had her trapped in a mental asylum two counties away.</p>
  1700. <p>While in the asylum, her head was shaved during the threat of typhoid outbreak. She also endured electroshock therapy which rendered her with total amnesia, but it also restored her naturally cheerful and humorous self. A vampire who worked at the asylum befriended Alice and treated her like a daughter. He also frequently visited her with objects hidden in his hands to test her powers, and shielded her from other horrifying treatments as best as he was able.</p>
  1701. <p>One day, Alice had a vision of a powerful tracker named James coming after her, which occurred the moment he caught her faint scent. She informed the vampire of this, and he planned to escape with her, but Alice still saw James catching up to her, and every option he offered her ended the same way. When he decided to change her, Alice saw that this would be very close, and they might not have enough time. The vampire immediately bit her, took her away and went to distract James, sacrificing himself in the process. When James finally found her, her blood was already fully turned and he decided to let her live a savaged existence to see how she might turn out in the future. When she woke up, the pain of the venom erased all of her memories, just like the shocking treatments did. But her premonitions were also intensified and her first vision was of Jasper Whitlock becoming her mate and of a happy future with the Cullen family.</p>
  1702. </li>
  1703.  
  1704. </ul> <!--important don't delete-->
  1705. </div></div></div></div></div></div></div></div></div></div></div></div>
  1706. </div>
  1707.  
  1708. </div></div>
  1709.  
  1710. </div></div></div></div></div></div></div></div></div></div></div>
  1711.  
  1712. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement