Advertisement
bbrose

cursedburden - Lucky

Feb 2nd, 2020
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.23 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}
  7. <meta name="description" content="{MetaDescription}" />
  8. {/block:Description}
  9. </head>
  10.  
  11. <!---Lucky // Theme #23 by Weiss Wolf--->
  12.  
  13. <!---POPUP BOXES--->
  14.  
  15. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  16. <script>
  17. $(document).ready(function() {
  18. //
  19. $('a.poplight[href^=#]').click(function() {
  20. var popID = $(this).attr('rel'); //Get Popup Name
  21. var popURL = $(this).attr('href'); //Get Popup href to define size
  22. var query= popURL.split('?');
  23. var dim= query[1].split('&');
  24. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  25. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  26. var popMargTop = ($('#' + popID).height() + 80) / 2;
  27. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  28. //Apply Margin to Popup
  29. $('#' + popID).css({
  30. 'margin-top' : -popMargTop,
  31. 'margin-left' : -popMargLeft
  32. });
  33. $('body').append('<div id="fade"></div>');
  34. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  35. return false;
  36. });
  37. $('a.close, #fade').live('click', function() {
  38. $('#fade , .popup_block').fadeOut(function() {
  39. $('#fade, a.close').remove(); //fade them both out
  40. });
  41. return false;
  42. });
  43. });
  44. </script>
  45.  
  46. <!---POP UP ASK BOX--->
  47. <script type="text/javascript"
  48. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  49. <script>
  50. $(document).ready(function() {
  51. //
  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. var query= popURL.split('?');
  56. var dim= query[1].split('&');
  57. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  58. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  59. var popMargTop = ($('#' + popID).height() + 80) / 2;
  60. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  61. //Apply Margin to Popup
  62. $('#' + popID).css({
  63. 'margin-top' : -popMargTop,
  64. 'margin-left' : -popMargLeft
  65. });
  66. $('body').append('<div id="fade"></div>');
  67. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  68. return false;
  69. });
  70. $('a.close, #fade').live('click', function() {
  71. $('#fade , .popup_block').fadeOut(function() {
  72. $('#fade, a.close').remove(); //fade them both out
  73. });
  74. return false;
  75. });
  76. });
  77. </script>
  78.  
  79. <!---POP UP TABS--->
  80.  
  81. <script>
  82.  
  83. $(document).ready(function(){
  84. $("ul#tabs li").click(function(e){
  85. if (!$(this).hasClass("active")) {
  86. var tabNum = $(this).index();
  87. var nthChild = tabNum+1;
  88. $("ul#tabs li.active").removeClass("active");
  89. $(this).addClass("active");
  90. $("ul#tab li.active").removeClass("active");
  91. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  92. }
  93. });
  94. });
  95.  
  96. </script>
  97.  
  98. <!---DROP DOWN MENU--->
  99.  
  100. <script type="text/javascript" src="https://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  101. <script type="text/javascript">
  102. $(document).ready(function(){
  103. $(".links_body").hide();
  104. $(".links_head").click(function(){
  105. $(this).next(".links_body").slideToggle('fast');
  106. }); }); </script>
  107. <style type="text/css">
  108. .links_list { margin:0px; padding:0px; width:100%;}
  109. .links_head { padding-top:5px; padding-bottom:5px; cursor:pointer; position:relative; margin:1px; text-align:center;}
  110. .links_body { padding:10px; text-align:left; display:none;}
  111. </style>
  112.  
  113.  
  114. <!---END--->
  115.  
  116.  
  117. <!---COLORS--->
  118.  
  119. <meta name="color:background" content="#1c1c1c">
  120.  
  121. <meta name="color:links" content="#fb84b6b">
  122. <meta name="color:links hover" content="#ffffff">
  123.  
  124. <meta name="color:navigation" content="#f38aaa">
  125. <meta name="color:navigation shadow" content="#000000">
  126. <meta name="color:navigation hover" content="#ffffff">
  127.  
  128. <meta name="color:text" content="#c63b79">
  129. <meta name="color:text shadow" content="#000000">
  130.  
  131. <meta name="color:blockquote" content="#b64d73">
  132. <meta name="color:blockquote text" content="#b64d73">
  133.  
  134. <meta name="color:numeral list" content="#890057">
  135. <meta name="color:bullet list" content="#b5317c">
  136. <meta name="color:list shadow" content="#000000">
  137.  
  138. <meta name="color:strikethrough" content="#ad5367">
  139. <meta name="color:strike shadow" content="#000000">
  140.  
  141. <meta name="color:header 1" content="#b3367d">
  142. <meta name="color:header 1 shadow" content="#000000">
  143.  
  144. <meta name="color:header 2" content="#972a5b">
  145. <meta name="color:header 2 shadow" content="#000000">
  146.  
  147. <meta name="color:header 3" content="#8a043c">
  148. <meta name="color:header 3 shadow" content="#000000">
  149.  
  150. <meta name="color:header 4" content="#f554e5">
  151.  
  152. <meta name="color:small" content="#8c6676">
  153. <meta name="color:small shadow" content="#000000">
  154.  
  155. <meta name="color:bold" content="#8c0d6c">
  156. <meta name="color:bold shadow" content="#000000">
  157.  
  158. <meta name="color:italic" content="#8f0c56">
  159. <meta name="color:italic shadow" content="#000000">
  160.  
  161. <meta name="color:ask text" content="#f88f8f">
  162. <meta name="color:ask bg" content="#222222">
  163. <meta name="color:ask border" content="#000000">
  164.  
  165. <meta name="color:quote text" content="#f5b2df">
  166. <meta name="color:quote bg" content="#222222">
  167.  
  168. <meta name="color:info text" content="#f8c6c6">
  169. <meta name="color:info hover" content="#ffffff">
  170. <meta name="color:info bg" content="#222222">
  171. <meta name="color:info border" content="#000000">
  172.  
  173. <meta name="color:tags" content="#c1548d">
  174. <meta name="color:tags hover" content="#f2992e">
  175.  
  176. <meta name="color:credit" content="#000000">
  177.  
  178. <meta name="color:tip" content="#fffeff">
  179.  
  180. <meta name="color:highlight background" content="#880a64">
  181. <meta name="color:highlight text" content="#ffb9d0">
  182.  
  183. <!---IMAGES--->
  184.  
  185. <meta name="image:background" content="https://static.tumblr.com/jrwgidj/I5jptaxmi/_2_-the_detective_prince---2.png"/>
  186.  
  187. <meta name="image:tags" content="https://static.tumblr.com/jhua2co/nzFp7i1to/glsd546-texture03.png"/>
  188.  
  189. <meta name="image:ask" content="https://static.tumblr.com/jhua2co/HhPp7i1x2/022_glsd546.png"/>
  190.  
  191. <meta name="image:quote" content="https://static.tumblr.com/jhua2co/qIDp4ay0o/texture3__6_.png"/>
  192.  
  193. <meta name="image:banner" content="https://static.tumblr.com/jhua2co/wn7p4ay4d/p_-_rosesylla__2_.png"/>
  194.  
  195. <meta name="image:tip" content="https://static.tumblr.com/jhua2co/wn7p4ay4d/p_-_rosesylla__2_.png"/>
  196.  
  197. <meta name="image:credit" content="https://static.tumblr.com/jhua2co/76colu2s1/txt1.jpg"/>
  198.  
  199. <!---CUSTOM FONTS--->
  200. <!---if you don't want these fonts, feel free to change and replace them~ --->
  201.  
  202. <link href='https://fonts.googleapis.com/css?family=Trochut' rel='stylesheet' type='text/css'>
  203. <link href="https://fonts.googleapis.com/css?family=Ranga" rel="stylesheet" type="text/css">
  204. <link href="https://fonts.googleapis.com/css?family=Vast+Shadow" rel="stylesheet" type="text/css">
  205. <link href="https://fonts.googleapis.com/css?family=Gruppo" rel="stylesheet" type="text/css">
  206. <link href="https://fonts.googleapis.com/css?family=Qwigley" rel="stylesheet" type="text/css">
  207. <link href="https://fonts.googleapis.com/css?family=Encode+Sans+Condensed" rel="stylesheet" type="text/css">
  208. <link href="https://fonts.googleapis.com/css?family=Economica" rel="stylesheet" type="text/css">
  209. <link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
  210. <link href="https://fonts.googleapis.com/css?family=Rochester" rel="stylesheet">
  211. <link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
  212. <link href="https://fonts.googleapis.com/css?family=Cinzel" rel="stylesheet" type="text/css">
  213. <link href="https://fonts.googleapis.com/css?family=Antic" rel="stylesheet" type="text/css">
  214. <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
  215. <link href="https://fonts.googleapis.com/css?family=Wire+One" rel="stylesheet">
  216. <link href="https://fonts.googleapis.com/css?family=Federo" rel="stylesheet">
  217. <link href="https://fonts.googleapis.com/css?family=Allura" rel="stylesheet">
  218. <link href="https://fonts.googleapis.com/css?family=Advent+Pro" rel="stylesheet">
  219. <link href="https://fonts.googleapis.com/css?family=Unica+One" rel="stylesheet">
  220. <link href="https://fonts.googleapis.com/css?family=Norican" rel="stylesheet">
  221.  
  222.  
  223.  
  224. <style type="text/css">
  225.  
  226.  
  227. /*--SCROLLBAR--*/
  228.  
  229. ::-webkit-scrollbar-thumb{
  230. background-color: transparent;
  231. border-radius:0px;
  232. height:auto;
  233. }
  234.  
  235. ::-webkit-scrollbar {
  236. height:auto;
  237. width:4px;
  238. border: 1px transparent;
  239. border-radius:0px;
  240. }
  241.  
  242. /*--HIGHLIGHT COLORS--*/
  243.  
  244. ::selection {
  245. background: {color:highlight background};
  246. color: {color:highlight text};
  247. }
  248. ::-moz-selection {
  249. background: {color:highlight background};
  250. color: {color:highlight text};
  251. }
  252.  
  253. /*--CURSOR--*/
  254.  
  255. *,body, a:hover {cursor: url(https://33.media.tumblr.com/tumblr_lqs4qdUu8n1qfoi4t.png), progress !important;}
  256.  
  257. /*--BLOG BUILDING--*/
  258.  
  259. /*--BACKGROUND & BODY--*/
  260.  
  261. body {
  262. background-color:{color:background};
  263. background-image: url("{image:background}"); /*can be changed, if you want to use a link instead, just delete {image:background} */
  264. font-family:'Economica';
  265. background-position: top left;
  266. background-repeat: no-repeat;
  267. background-attachment: fixed;
  268. font-size:20px;
  269. color:{color:text};
  270. }
  271.  
  272. /*--LINKS--*/
  273.  
  274. a {
  275. color:{color:links};
  276. text-decoration:none;
  277. }
  278.  
  279. a:hover {
  280. color:{color:links hover};
  281. }
  282.  
  283. /*--START OF TEXT DECORATIONS--*/
  284.  
  285. /*--BOLD--*/
  286.  
  287. b, strong {
  288. color:{color:bold};
  289. font-size:15px;
  290. font-family: 'Abril Fatface';
  291. }
  292.  
  293. /*--ITALICS--*/
  294.  
  295. i, em {
  296. color:{color:italic};
  297. font-size:17px;
  298. font-family: 'Rochester';
  299. }
  300.  
  301. /*--STRIKETHROUGH--*/
  302.  
  303. strike, strikethrough {
  304. color:{color:strikethrough};
  305. font-size:17px;
  306. font-family:'Ranga';
  307. }
  308.  
  309. /*--SMALL TEXT--*/
  310.  
  311. small, sub, sup {
  312. color:{color:small};/
  313. font-size:20px;
  314. font-family:'Encode Sans Condensed';
  315. }
  316.  
  317. /*--HEADER 1 (aka post title)--*/
  318.  
  319. h1 {
  320. font-size: 40px;
  321. color: {color:header 1};
  322. font-family: 'Wire One';
  323. line-height:120%;
  324. }
  325.  
  326. /*--HEADER 2 (header used IN posts)--*/
  327.  
  328. h2 {
  329. font-family:'Federo';
  330. font-size:30px;
  331. color: {color:header 2};
  332. text-align:center;
  333. line-height:100%;
  334. padding:0 6px 0 6px;
  335. }
  336.  
  337. /*--HEADER 3 (aka quote source)--*/
  338.  
  339. h3 {
  340. font-size: 30px;
  341. color: {color:header 3};
  342. font-family: 'Qwigley';
  343. text-transform: none;
  344. }
  345.  
  346. /*--HEADER 4 (aka banners)--*/
  347.  
  348. h4 {
  349. background-image: url("{image:banner}");
  350. background-repeat: repeat;
  351. background-attachment: fixed;
  352. border:1px solid white;
  353. outline:1px dotted white;
  354. outline-offset: 2px;
  355. padding:5px;
  356. color:{color:header 4};
  357. font-size:15px;
  358. font-family:'Economica';
  359. text-transform:none;
  360. letter-spacing:1px;
  361. text-align:center;}
  362.  
  363. /*--END OF TEXT DECORATIONS--*/
  364.  
  365.  
  366. /*--START OF POSTS--*/
  367.  
  368. /*--CONTAINER--*/
  369.  
  370. #container {
  371. position:absolute;
  372. top:65px;
  373. left:475px;
  374. /* If you want a border, just add 'border: _px solid #color;' */
  375. height:560px;
  376. width:540px;
  377. word-wrap: break-word;
  378. z-index:999;
  379. overflow-y:scroll;
  380. background:transparent;
  381. -webkit-mask-image: -webkit-gradient(
  382. linear, center 90%, center bottom,
  383. from(rgba(0,0,0,10)),
  384. to(rgba(10,0,0,0)));
  385. }
  386.  
  387. /*--POSTS--*/
  388.  
  389. .posts {
  390. width:500px;
  391. padding:10px;
  392. margin-bottom:30px;
  393. }
  394.  
  395. /*--BLOCKQUOTE--*/
  396.  
  397. blockquote {
  398. padding:2px 7px;
  399. margin:3px 0 3px 8px;
  400. font-size:15px;
  401. border-left: solid 3px {color:blockquote};
  402. color:{color:blockquote text};
  403. font-family:'Advent Pro';
  404. border-radius: 10px 0px 0px 10px;
  405. -moz-border-radius: 10px 0px 0px 10px;
  406. -webkit-border-radius: 10px 0px 0px 10px;
  407. }
  408.  
  409. blockquote img {
  410. max-width:100%;
  411. height:auto;
  412. opacity:1;
  413. }
  414.  
  415.  
  416. img {
  417. max-width: 100%;
  418. opacity:1;
  419. }
  420.  
  421.  
  422. /*--LIST--*/
  423.  
  424. /*--ORDERED LIST (NUMERALS)--*/
  425.  
  426. ol {
  427. list-style-type:upper-roman;
  428. font-family:'Vast Shadow';
  429. font-size:15px;
  430. color: {color:numeral list};
  431. }
  432.  
  433. /*--UNORDERED LIST (BULLETS)--*/
  434.  
  435. ul {
  436. list-style-type:square;
  437. font-family:'Cinzel';
  438. font-size:15px;
  439. color: {color:bullet list};
  440. }
  441.  
  442. /*--END OF POSTS--*/
  443.  
  444. /*--START OF UPDATE BOX--*/
  445.  
  446. #updates {
  447. position:absolute;
  448. text-align:center;
  449. /* to add a border, just add: "border: _px solid #color" */
  450. left:505px;
  451. top:720px;
  452. height:150px;
  453. width:470px;
  454. overflow-y:scroll;
  455. -webkit-mask-image: -webkit-gradient(
  456. linear, center 80%, center bottom,
  457. from(rgba(0,0,0,20)),
  458. to(rgba(20,0,0,0)));
  459. }
  460. /*--END OF UPDATE BOX--*/
  461.  
  462.  
  463. /*--START OF NAVIGATION--*/
  464.  
  465.  
  466. /*--SCATTERED LINKS--*/
  467.  
  468.  
  469. /*--LINK 1--*/
  470.  
  471. .link1 {
  472. position: fixed;
  473. top: 50px;
  474. left: 145px;
  475. opacity:1;
  476. }
  477.  
  478. .link1 a {
  479. font-family: 'Federo';
  480. font-size: 45px;
  481. color: {color:navigation};
  482. }
  483.  
  484. .link1 a:hover {
  485. color: {color:navigation hover};
  486. }
  487.  
  488. /*--LINK 2--*/
  489.  
  490. .link2 {
  491. position: fixed;
  492. top: 150px;
  493. left: 215px;
  494. opacity:1;
  495. -webkit-transform: rotate(45deg);
  496. -moz-transform: rotate(45deg);
  497. -o-transform: rotate(45deg);
  498. }
  499.  
  500. .link2 a {
  501. font-family: 'Federo';
  502. font-size: 45px;
  503. color: {color:navigation};
  504. }
  505.  
  506. .link2 a:hover {
  507. color: {color:navigation hover};
  508. }
  509.  
  510. /*--LINK 3--*/
  511.  
  512. .link3 {
  513. position: fixed;
  514. top: 260px;
  515. left: 185px;
  516. opacity:1;
  517. -webkit-transform: rotate(-45deg);
  518. -moz-transform: rotate(-45deg);
  519. -o-transform: rotate(-45deg);
  520. }
  521.  
  522. .link3 a {
  523. font-family: 'Federo';
  524. font-size: 50px;
  525. color: {color:navigation};
  526. }
  527.  
  528. .link3 a:hover {
  529. color: {color:navigation hover};
  530. }
  531.  
  532. /*--LINK 4--*/
  533.  
  534. .link4 {
  535. position: fixed;
  536. top: 380px;
  537. left: 240px;
  538. opacity:1;
  539. -webkit-transform: rotate(0deg);
  540. -moz-transform: rotate(0deg);
  541. -o-transform: rotate(0deg);
  542. }
  543.  
  544. .link4 a {
  545. font-family: 'Federo';
  546. font-size: 50px;
  547. color: {color:navigation};
  548. }
  549.  
  550. .link4 a:hover {
  551. color: {color:navigation hover};
  552. }
  553.  
  554. /*--LINK 5--*/
  555.  
  556. .link5 {
  557. position: fixed;
  558. top: 490px;
  559. left: 195px;
  560. opacity:1;
  561. -webkit-transform: rotate(15deg);
  562. -moz-transform: rotate(15deg);
  563. -o-transform: rotate(15deg);
  564. }
  565.  
  566. .link5 a {
  567. font-family: 'Federo';
  568. font-size: 50px;
  569. color: {color:navigation};
  570. }
  571.  
  572. .link5 a:hover {
  573. color: {color:navigation hover};
  574. }
  575.  
  576. /*--LINK 6--*/
  577.  
  578. .link6 {
  579. position: fixed;
  580. top: 50px;
  581. left: 340px;
  582. opacity:1;
  583. -webkit-transform: rotate(15deg);
  584. -moz-transform: rotate(15deg);
  585. -o-transform: rotate(15deg);
  586. }
  587.  
  588. .link6 a {
  589. font-family: 'Federo';
  590. font-size: 50px;
  591. color: {color:navigation};
  592. }
  593.  
  594. .link6 a:hover {
  595. color: {color:navigation hover};
  596. }
  597.  
  598. /*--LINK 7--*/
  599.  
  600. .link7 {
  601. position: fixed;
  602. top: 115px;
  603. left: 395px;
  604. opacity:1;
  605. -webkit-transform: rotate(-45deg);
  606. -moz-transform: rotate(-45deg);
  607. -o-transform: rotate(-45deg);
  608. }
  609.  
  610. .link7 a {
  611. font-family: 'Federo';
  612. font-size: 50px;
  613. color: {color:navigation};
  614. }
  615.  
  616. .link7 a:hover {
  617. color: {color:navigation hover};
  618. }
  619.  
  620. /*--CREDIT. DO NOT REMOVE--*/
  621.  
  622. #credit {
  623. bottom:10px;
  624. left:10px;
  625. font-size:15px;
  626. position:fixed;
  627. color: {color:credit};
  628. text-shadow: 0px 0px 8px #fff;
  629. font-family:'Marvel';
  630. border: 1px solid #000;
  631. padding:3px 7px 3px 8px;
  632. background-color:{color:background};
  633. background-image:url("{image:credit}");
  634. text-transform:none;
  635. z-index:999999999999;
  636. letter-spacing:2px;
  637. border-radius:5px;
  638. }
  639.  
  640. /*--PAGINATION--*/
  641.  
  642. .pagination {
  643. left:560px;
  644. top:655px;
  645. position: fixed;
  646. width:300px;
  647. font-size:50px;
  648. text-shadow: 2px 2px 3px {color:navigation shadow};
  649. }
  650.  
  651. .pagination a {
  652. color: {color:link};
  653. text-shadow: 2px 2px 2px {color:navigation shadow}
  654. font-family:'Gruppo';
  655. }
  656.  
  657. .pagination a:hover{
  658. color:{color:link hover};
  659. }
  660.  
  661. /*--END OF NAVIGATION--*/
  662.  
  663. /*--START OF MISC--*/
  664.  
  665.  
  666. /*--TOOLTIP--*/
  667.  
  668. #s-m-t-tooltip {
  669. max-width:300px;
  670. padding:3px 7px 3px 8px;
  671. margin:-20px 0px 0px 20px;
  672. background-color:{color:background};
  673. background-image:url("{image:tip}");
  674. background-repeat:repeat;
  675. background-attachment:fixed;
  676. border:1px solid white;
  677. outline:1px dotted white;
  678. outline-offset: 2px;
  679. border-radius: 0px;
  680. text-shadow: 1px 1px 1px #000;
  681. color:{color:tip};
  682. font-size:15px;
  683. font-family:'Unica One';
  684. text-transform:none;
  685. z-index:999999999999;
  686. letter-spacing:2px;
  687. }
  688.  
  689. /*--ASKS--*/
  690.  
  691. .asker {
  692. text-transform:none;
  693. font-family: 'Norican', cursive;
  694. padding-top:5px;
  695. max-width:380px;
  696. margin-top:-5px;
  697. font-size:35px;
  698. margin-left:9px;
  699. }
  700.  
  701. #asker a{
  702. color: {color:links};
  703. font-family: 'Norican', cursive;
  704. letter-spacing: 1px;
  705. font-size:20px;
  706. text-shadow: 1px 1px 1px {color:text shadow};
  707. }
  708.  
  709. #asker a:hover {
  710. color: {color:links hover};
  711. letter-spacing: 1px;
  712. }
  713.  
  714. .askeru {
  715. margin-top:-5px;
  716. margin-left:50px;
  717. text-transform:none;
  718. font-size:30px; }
  719.  
  720. #ask {
  721. font-family: 'Antic';
  722. font-size:20px;
  723. text-align:center;
  724. padding-top: 5px;
  725. margin-left:5px;
  726. text-transform:auto;
  727. line-height:190%;
  728. padding:8px;
  729. background:url("{image:ask}");
  730. background-repeat:repeat;
  731. background-attachment:fixed;
  732. background-color: {color:ask bg};
  733. color:{color:ask text};
  734. text-shadow: 1px 1px 1px {color:bold shadow};
  735. border:1px {color:ask border} solid;
  736. }
  737.  
  738. .ans {
  739. text-align:left;
  740. padding:10px;
  741.  
  742. }
  743.  
  744. /*--QUOTE--*/
  745.  
  746. .quotemarkleft {
  747. font-size: 80px;
  748. font-family: 'Qwigley';
  749. font-weight: bold;
  750. line-height: 100px;
  751. position: relative;
  752. margin: 0px 0 -70px 30px;
  753. color: {color:small};
  754. opacity: 0.9;
  755. }
  756.  
  757. .quotemarkright {
  758. font-family: 'Qwigley';
  759. font-size: 80px;
  760. font-weight: bold;
  761. padding-right: 0px;
  762. line-height: 30px;
  763. text-align: right;
  764. position: relative;
  765. margin:0 30px 0 -10px;
  766. color: {color:small};
  767. opacity: 0.97;
  768. }
  769.  
  770.  
  771. #quote {
  772. font-family:'Allura';
  773. color:{color:quote text};
  774. font-size:35px;
  775. text-align:center;
  776. line-height:200%;
  777. padding:5px;
  778. padding-top:12px;
  779. padding-bottom:8px;
  780. }
  781.  
  782. .qsource{
  783. padding-top:3px;
  784. padding-bottom:1px;
  785. font-family:'Trochut';
  786. font-size:15px;
  787. text-align:right;
  788. }
  789.  
  790. /*--NOTES--*/
  791.  
  792. .note {
  793. word-wrap: break-word;
  794. width: 250px;
  795. font-size: 12px;
  796. text-align:left;
  797. line-height:90%;
  798. margin-left:-10px;
  799. }
  800.  
  801. .note li {
  802. list-style-type:none;
  803. padding:10px 25px 10px 25px;
  804. text-align:left;
  805. margin:0px;
  806. -moz-transition-duration:0.5s;
  807. -webkit-transition-duration:0.5s;
  808. -o-transition-duration:0.5s;
  809. }
  810.  
  811. /*--INFO--*/
  812.  
  813. #info {
  814. font-family: 'Trochut';
  815. width:280px;
  816. height:auto;
  817. margin-top:5px;
  818. padding-top:5px;
  819. margin-left:auto;
  820. margin-right:auto;
  821. padding-top:7px;
  822. font-size:20px;
  823. color:{color:info text};
  824. text-transform:none;
  825. letter-spacing:1px;
  826. font-style:normal;
  827. text-align:center;
  828. border-bottom:1px solid gray;
  829. }
  830.  
  831.  
  832. #info a {
  833. color:{color:info text};
  834. text-shadow: 1px 1px 1px {color:navigation shadow}
  835. }
  836.  
  837. #info a:hover {
  838. color:{color:info hover};
  839. margin-right: auto;
  840. -webkit-transition:all .1s ease-in-out;
  841. -moz-transition:all .1s ease-in-out;
  842. }
  843.  
  844. /*--TAGS--*/
  845.  
  846. .tags {
  847. text-align:left;
  848. border:1px solid white;
  849. outline:1px dotted white;
  850. outline-offset: 2px;
  851. max-width:300px;
  852. padding:9px 9px 9px 9px;
  853. margin:-20px 0px 0px 20px;
  854. background-color:{color:background};
  855. background-image:url("{image:tags}");
  856. background-repeat:repeat;
  857. background-attachment:fixed;
  858. }
  859.  
  860. .tags a {
  861. text-decoration:none;
  862. font-size: 11px;
  863. color:{color:tags};
  864. font-family: 'Lato', sans-serif;
  865. }
  866.  
  867. .tags a:hover {
  868. color:{color:tags hover};
  869. }
  870.  
  871. /*--END OF MISC--*/
  872.  
  873. /*--START OF POP UP BOXES--*/
  874.  
  875.  
  876. /*--POP UP BOX--*/
  877.  
  878. .popup_block {
  879. text-align:justify;
  880. width: 200px;
  881. max-height: 300px;
  882. overflow-y:scroll;
  883. overflow-x:hidden;
  884. display:none;
  885. background-color:#1e1e1e;
  886. border:1px solid white;
  887. outline:1px dotted white;
  888. outline-offset: 2px;
  889. padding:20px;
  890. float:left;
  891. position:fixed;
  892. top:50%;left:50%;
  893. z-index: 99999;
  894. -webkit-box-shadow: 0px 0px 20px #000;
  895. -moz-box-shadow: 0px 0px 20px #000;
  896. box-shadow: 0px 0px 20px #000;
  897. }
  898.  
  899. /*--FADE--*/
  900.  
  901. *html #fade {position: absolute;}
  902. *html .popup_block {position: absolute;}
  903. #fade {
  904. display:none;
  905. position:fixed;
  906. left:0px;
  907. top:0px;
  908. width:100%;
  909. height:100%;
  910. z-index:9999;
  911. background:#000;
  912. opacity:0.5;
  913. }
  914.  
  915.  
  916.  
  917. /*--END OF BUILDING--*/
  918.  
  919. </style>
  920.  
  921. <body>
  922.  
  923. <!---FILL IT IN--->
  924.  
  925. <!---LINKS--->
  926.  
  927. <div id="sidebar">
  928.  
  929. <div class="link1">
  930. <a href="/" title="Home.">✦</a></div>
  931. </div>
  932. </div>
  933.  
  934. <div class="link2">
  935. <a href="#?w=300" rel="askbox" class="poplight" title="Ask.">✦</a>
  936. </div>
  937. </div>
  938.  
  939. <div class="link3">
  940. <a href="#?w=300" rel="box2" class="poplight" title="Laws.">✦</a>
  941. </div>
  942. </div>
  943.  
  944. <div class="link4">
  945. <a href="#?w=300" rel="box3" class="poplight" title="About.">✦</a>
  946. </div>
  947. </div>
  948.  
  949. <div class="link5">
  950. <a href="#?w=300" rel="box4" class="poplight" title="Stats.">✦</a>
  951. </div>
  952. </div>
  953.  
  954. <div class="link6">
  955. <a href="#?w=300" rel="box5" class="poplight" title="Mun.">✦</a>
  956. </div>
  957. </div>
  958.  
  959. <div class="link7">
  960. <a href="#?w=300" rel="box6" class="poplight" title="Verses.">✦</a>
  961. </div>
  962. </div>
  963.  
  964. </div>
  965. </div>
  966.  
  967. <!---CREDIT--->
  968.  
  969. <div id="credit"><a href="https://schneeresources.tumblr.com/" title="Schneeresources">❄</a></div>
  970.  
  971. <div class="pagination">
  972.  
  973. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}" title="previous page">«</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}" title="next page">»</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  974. </div></div></div>
  975.  
  976. </div>
  977.  
  978.  
  979. <!---ASK--->
  980.  
  981. <div id="askbox" class="popup_block">
  982. <div class="popupcontent">
  983. <center><h1>What?</h1></center>
  984. <br>
  985. <Center><iframe frameborder="0" scrolling="yes" width="300px" height="290" src="https://www.tumblr.com/ask_form/cursedburden.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe>
  986. </center></div>
  987. </div>
  988. </div>
  989.  
  990. </div></div></div></div></div></div></div></div></div></div>
  991. </div>
  992. </div>
  993.  
  994. <div id="updates">
  995. <center><h2>#cursedburden</h2></center>
  996. <h4>I am no one's blessing. I'll just bring you harm.</h4>
  997. <center><small>An Independant, Semi-Selective Qrow Branwen</small></center>
  998. <h4>I'm a cursed black cat. I'm an albatross. I'm a mirror broken.</h4>
  999. <center><small>As Adored by Nickey!
  1000. <br>
  1001. Established 17/12/18.</small></center>
  1002. <h4>Updates</h4>
  1003. <center><small><small><b>Drafts: <i>0</i></b></small>
  1004. <br><small><b>Asks: <i>0</i></b></small>
  1005. <br><small><b>Queued: <i>0</i></b></small></center>
  1006. </div>
  1007. </div>
  1008.  
  1009. <!---POP UP BOX ONE--->
  1010.  
  1011. <!--START OF BOX (FOR MORE, COPY FROM 'START' TO 'END')-->
  1012. <div id="box2" class="popup_block">
  1013. <div class="popupcontent">
  1014. <div id="popuptext">
  1015. <h1>The Laws.</h1>
  1016. <h4>Basics and Disclaimer</h4>
  1017. <small><li>This is an independant, semi-selective portrayal of Qrow Branwen. Though this portrayal follows the canon RWBY, I will be altering some things I feel is relevant and makes it far more comfortable for me. I'd advise you read the other sections for alterations.
  1018. <li> I AM A FIRST MEMBER. Therefore, I will have spoilers galore everywhere from the new episode.
  1019. <li> NON-PARTICIPATING USERS, PLEASE DO NOT REBLOG MY THREADS! If I see anyone besides my partner reblog the thread, I will block you without hesitation.
  1020. <li> DO NOT STEAL MY PORTRAYAL. You can take inspiration from it, but do not outright steal it.
  1021. <li> I will be more biased towards my friends on here, but I enjoy making new friends on the daily~! Don't be shy, hit me up on IMs!
  1022. </small>
  1023. <h4>Threads</h4>
  1024. <small><li>I am willing to write a lot of things. Fluff. Angst. Smut (as long as you're of age and we both agree to it). I am a willing writer. I do reblog from asks simply because it makes it easier for me to remember, but if you wish to take it to a new thread, please do so! It's only for me to actually understand where our thread is going, otherwise I do get lost. Below are more specific rules on each type of thread.
  1025. <li><b>Fluff:</b> This doesn't have many specific rules. It can be plotted or basically go along with the flow. Just don't be a dick and godmod.
  1026. <li><b>Angst:</b> I do prefer if this has a little bit of plotting to it, but going with the flow is also pretty damn fine by me! Again, don't be a dick and don't godmod.
  1027. <li><b>Smut:</b> I REFUSE to do smut with anyone under 18. Both mun and muse are above 18 and will only roleplay smut in read mores and with any mun and muse who is above 18. If I don't know you properly, and trust me you will know, please clarify this either on your blog or in person.
  1028. <li> Length is not an issue. I roleplay any length pretty much.
  1029. </small>
  1030. <h4>Shipping</h4>
  1031. <small><li>I rely heavily on chemistry. Qrow is ashamed of his semblance, and fears he will not be a good partner. Do not force ships on me, I ain't buying it.
  1032. <li> Relationships occur in SEPERATE verses, so no cheating. Despite not looking it, Qrow is very loyal and will not cheat on anyone, so don't go accusing him of that <i>unless</i> it's apart of a thread.
  1033. </small>
  1034. <h4>Headcanons</h4>
  1035. <small><li>Please don't be an asshole and claim my muse is out of character because of his headcanons. This is slightly alternate, and he would NEVER punch Oscar. He would just yell, but never punch a child.
  1036. <li>Do share your headcanons for Qrow and your muse with me! I love to see what ideas you have for our little children~!
  1037. </small>
  1038. <h4>Triggers</h4>
  1039. <small><li>I ask you trigger warn incest. This is my only trigger, because it makes me super uncomfortable and it's just disgusting to me. Do tell me your triggers and I will do my upmost best to trigger accordingly!
  1040. <li> I will not triggerwarn ships. Don't like? Don't follow.
  1041. </small>
  1042. <h4>Contacting Me.</h4>
  1043. <small><li>If we're mutuals, you may ask me for my Discord. IMs are open to all.</small>
  1044. <h4>Lastily...</h4>
  1045. <li><b>ENJOY YOURSELF!</b>
  1046. </div>
  1047. </div>
  1048. </div>
  1049. </div>
  1050. <!--END OF BOX -->
  1051.  
  1052. <!---POP UP BOX TWO--->
  1053.  
  1054. <!--START OF BOX (FOR MORE, COPY FROM 'START' TO 'END')-->
  1055. <div id="box3" class="popup_block">
  1056. <div class="popupcontent">
  1057. <div id="popuptext">
  1058. <h1>About.</h1>
  1059. <h4>Basics</h4>
  1060. <blockquote><small>Qrow Branwen is the twin brother of Raven Branwen, biological uncle of Yang Xiao Long and honorary uncle of Ruby Rose. Qrow's weapon of choice is a scythe known as Harbinger. He is a former member of the Branwen Tribe as well as a former teacher at Signal Academy. In his youth, Qrow attended Beacon Academy with his sister and together they were on a team with Summer Rose and Taiyang Xiao Long, known as Team STRQ. In his later life, Qrow becomes involved with a secret brotherhood led by Ozpin, whose purpose is to protect Remnant and is privy to knowledge kept secret from most of the world.</small>
  1061. </blockquote>
  1062. <h4>History</h4>
  1063. <blockquote><small>Qrow was raised alongside his twin sister, Raven Branwen, in a bandit tribe outside the Kingdoms. When they were of age, the tribe sent the twins to combat school in order to learn how to counter the Huntsmen. From there, they later enrolled in Beacon Academy and formed Team STRQ with fellow students Summer Rose and Taiyang Xiao Long. Qrow declared them to be the coolest team to ever graduate from Beacon. Sometime during or perhaps before his time at Beacon, Qrow learned of a legendary scythe wielder known as the "Grimm Reaper". Becoming inspired by, and wanting to become just as good as her, Qrow became a scythe wielder too, naming his scythe 'Harbinger'.</small>
  1064. <br><br>
  1065. <small>According to Taiyang, while they were still students at Beacon Academy, they tricked Qrow into wearing a skirt by claiming it was a kilt. It was his first time wearing a school uniform, and Qrow had no reservations about showing off his legs to the female students. Following the team's graduation, Qrow became both a maternal and honorary uncle to Yang Xiao Long and Ruby Rose, who are Taiyang's children with Raven and Summer, respectively. After Summer's death, when Yang took Ruby on a search for Raven, Qrow saved the lives of both his nieces from Beowolves. He also became a teacher at Signal Academy alongside Taiyang.</small>
  1066. <br><br>
  1067. <small>Qrow at some point in his life would become a part of Ozpin's Group. He and Raven accepted the responsibility of reconnaissance, tracking Salem's forces and searching for the new hosts of Maiden powers when unclear. Along with this, Ozpin gave both twins the ability to turn into birds, and at some point, Raven deserted these responsibilities and returned to the tribe. Qrow however, refused to go back to the tribe with her, seeing as "killers and thieves" and remaining loyal to Ozpin, straining their relationship and causing them to feud ever since.</small>
  1068. <br><br>
  1069. <small>Eventually, he trained Ruby to become a Huntress, which included instruction on how to use "one of the most dangerous weapons ever designed", Crescent Rose. At some point after instructing Ruby, Qrow resigned from his teaching position at Signal Academy as mentioned in "Welcome to Haven". Around the events of the "Black" Trailer, he encountered Cinder Fall, Emerald Sustrai and Mercury Black when the three of them ambushed and attacked Amber, the Fall Maiden. Qrow arrived in time before Cinder could fully steal Amber's powers. Because of Emerald's Semblance, Qrow was unable to make out Cinder's face and identity. After the three retreated, Qrow took a weakened Amber to Ozpin's Group.</small>
  1070. </blockquote>
  1071. <h4>Vytal Festival</h4>
  1072. <blockquote><small>Qrow sits at a bar watching the Vytal Festival Tournament matches and drinking. He is constantly unimpressed by the matches, even calling one a mess. Outside the bar window, he sees an airship transporting Winter Schnee, and states that it is the fight he is there for. He heads to Beacon grounds, and upon arriving, immediately destroys two Atlesian Knight-200s in Winter's entourage, decapitating one of them. This gets the attention of Winter, who apparently already knows Qrow. Qrow accuses Winter's superior, General James Ironwood, of being a sellout and betraying Professor Ozpin. He also mocks Atlas' ability to protect the people.</small>
  1073. <br><br>
  1074. <small>Angered by Qrow's accusations and disrespect, Winter draws her sword and attacks him, but he retaliates with Harbinger. The pair then begins to fight in the crowded Beacon courtyard. However, the fight is interrupted by Ironwood, who orders Winter to stand down. Ironwood is shortly followed by Ozpin and Glynda, who ask that Qrow "have a word". Qrow briefly and affectionately greets his niece, Ruby, before leaving with Ozpin and Glynda.</small>
  1075. <br><br>
  1076. <small>That evening, Ironwood, Winter, Qrow, Glynda, and Ozpin meet at Ozpin's office. The meeting is tense, with Winter and Qrow blaming each other for starting the altercation. Ironwood orders Winter to leave, and the remaining four discuss matters of security, and the threat looming in the shadows. Qrow, who has been away for months on a reconnaissance mission, reveals that the mysterious infiltrator who had compromised Beacon is also responsible for Amber's current comatose state and the absence of half her power. He also reveals that he has personally seen some of Salem's creations, and describes them as fear itself.</small>
  1077. <br><br>
  1078. <small>Qrow also criticizes Ironwood's indiscretion in bringing an enormous fleet of airships to Vale. Ironwood asserts that his forces are necessary and provide a feeling of safety. Ozpin disagrees, however, explaining that the people would interpret the presence of the army as a sign of conflict, spreading concern and fear among the populace – conditions which are likely to cause a resurgence of the Grimm. Ozpin concludes that their next move should be to find a "Guardian" to protect and reassure the populace.</small>
  1079. <br><br>
  1080. <small>The next day, Qrow plays video games with Ruby and Yang in Team RWBY's dorm room as he recounts the events of his last mission. Qrow visits a seedy village in Mistral, where he enters a bar full of "low-lifes" and rogue Huntsmen in the employ of "less than reputable people". As Ruby and Yang are enthralled by his story, he abruptly ends it by remarking on the skirt length of the attractive innkeeper. The abrupt end causes Yang to lose against Qrow in the first round of the game, to which she exclaims, "You are the worst!"</small>
  1081. <br><br>
  1082. <small>When Ruby and Yang remark on their experience, due to their success stopping Roman Torchwick, Qrow calls them naive and notes that they have a lot to learn. After Torchwick's capture, all criminal activity and violence in Vale abruptly stopped, which has Qrow suspicious. He also reminisces about his time at Beacon and his former team, Team STRQ, which also includes Yang and Ruby's parents. Qrow concludes that they both have a lot to learn before they can call themselves Huntresses.</small>
  1083. <br><br>
  1084. <small>He returns to Ozpin's office, telling him that Ironwood is making him look like a fool. Ozpin says that the general's heart is in the right place, to which Qrow remarks that he wonders if Ironwood has a heart at all. He asks Ozpin if he has decided on a guardian figure, and Ozpin affirms that it is Pyrrha Nikos. Qrow remains in Ozpin's office as he holds a lighthearted conversation with Pyrrha. When Pyrrha says she would not have been as successful at Beacon without her teammates, Qrow indicates his belief in the opposite. Clearly uncomfortable to begin with, Pyrrha finally asks who Qrow is. After Ozpin tells Pyrrha that The Story of the Seasons is true, Qrow and the rest of Ozpin's inner circle reveal that it is their job, alongside being headmasters and teachers, to protect the four Maidens. Qrow calls the rules that govern the transfer of their powers "stupid and convoluted". He notes that this transfer must happen quickly, stating that the world is getting closer to a war against Grimm.</small>
  1085. <br><br>
  1086. <small>Qrow appears in Team RWBY's dorm room, talking to Yang after her matchup with Mercury and the fiasco that followed. After questioning her, he concludes that she was probably crazy, and he sarcastically compares her emotional state to that of Blake's. After Yang mentions that she saw her mother, Raven Branwen, Qrow confirms her suspicions and proceeds to mention that Raven, his sister, sent Yang a message that he was waiting to tell her at the right time. The message is that Raven saved her once, but she will not save her again the next time she gets in trouble. He also notes that after he was given his most recent assignment, Raven provided him with some information. He says he is willing to help Yang find a means to track her down after he encourages her to move forward from the incident. After Grimm breach the city following Penny and Pyrrha's match, he visits Ozpin's office with Glynda. Ozpin instructs both of them to fight off the impending horde.</small>
  1087. </blockquote>
  1088. <h4>The Fall of Beacon</h4>
  1089. <blockquote><small>Qrow fights against creatures of Grimm with Glynda in Vale. In the midst of battle, the AK-200 androids turn their attention away from fighting the Grimm and instead begin to attack him and Glynda. Later, an earthquake occurs, and Qrow sticks his weapon into the ground to keep his balance. He later takes care of a squadron of Knights before noticing Ironwood on the streets. As he transforms his weapon into a scythe, he immediately growls, charging towards the now-intimidated General, only to attack the Griffon behind Ironwood.
  1090. <br><br>
  1091. <small>Qrow later clarifies that he knows the rogue Atlesian technology was not Ironwood's doing and proceeds to establish a safe zone in Vale under Ironwood's instructions. He also snarkily comments on the crashing of Ironwood's airship in the streets, stating "It won't be much of a walk". After helping to evacuate Beacon, Qrow managed to rescue Ruby Rose while she was unconscious and retrieved Ozpin's cane.</small>
  1092. <br><br>
  1093. <small>After the incident, he manages to deliver Yang and Ruby to their home in Patch, leaving them in the care of their father, Taiyang. Once Ruby awakes, he explains that Ruby possesses a power that is single-handedly responsible for freezing the Grimm Dragon to the tower and that she is destined to lead the life of a warrior. He then tells her that, with Ozpin missing, he is taking over Ozpin's work for him, going to Haven Academy in Mistral to learn about the conspiracy against Vale. From a precipice, he sees Ruby and her friends begin the journey to Haven. Holding Ozpin's cane, he jumps out of sight and turns into a bird to keep an eye on the group.</small>
  1094. </blockquote>
  1095. <h4>In Anima</h4>
  1096. <blockquote><small>Months later, Qrow is seen protecting Ruby and the others from Grimm without their knowledge as they travel to Higanbana. He later sits in a tavern opposite from Team RNJR's inn. There, his twin sister Raven gets his attention by buying him a drink. She criticizes him for leaving the bandit tribe they grew up in, calling them their family. As their leader, she is determined to ensure their survival, even if it means surviving off of others' misfortune. Raven asks Qrow if Salem has "the relic", but Qrow says he does not know and in turn asks her where the Spring Maiden is. Raven refuses to tell him and leaves the tavern by creating a portal with her weapon.</small>
  1097. <br><br>
  1098. <small>Some time later, in the shape of a crow, he hurriedly flies towards the group when they fight Tyrian Callows in Oniyuri before reverting to his human form. As Tyrian prepares to stab Ruby with his tail, Qrow quickly shields his niece, holding his weapon behind his back to parry the attack. It quickly becomes clear to Qrow that Tyrian is there to capture Ruby on Salem's orders and a fierce fight begins. The two are evenly matched, but when Ruby joins in Qrow is forced to save her and gets grazed by Tyrian's stinger. Tyrian, in turn, gets his stinger severed by Ruby and is forced to retreat. Wounded and unable to stay upright, Qrow is bombarded with questions by a concerned Team RNJR, who wants to know what is going on. Qrow replies, "What's your favorite fairy tale?"</small>
  1099. <br><br>
  1100. <small>By a campfire that evening, a bandaged Qrow fills Team RNJR in on the tales of the Maidens and the deity brothers. He also reveals that his Semblance of misfortune is the reason why he followed instead of joined them. By morning, purple fluid is seeping out through the wound Tyrian gave him, and Qrow is coughing large amounts of it up as well. Out of it and mumbling about the past, he gets carried by Jaune and Ruby on a makeshift stretcher to the reportedly destroyed town of Kuroyuri. After arriving in Kuroyuri, Ruby and Jaune are unable to find medicine for Qrow.</small>
  1101. <br><br>
  1102. <small>While he is barely conscious, the Nuckelavee arrives and attacks Team RNJR. When it turns its attention to him, he is rescued and carried away by Jaune, with Ren using his Semblance on the two of them as they get away from the battle. After being set down at a safe distance, he grabs Jaune's hand, about to say something, but he loses consciousness again. After the battle, Qrow wakes to find Ruby at his side. Knowing that she and her friends defeated the Grimm, he congratulates her. He was then carried away on a stretcher to a Mistral airship. In the city of Mistral, Qrow receives treatment and rests in a room he shares with Ruby.</small>
  1103. </blockquote>
  1104. <h4>Within Mistral</h4>
  1105. <blockquote><small>After making a full recovery, Qrow shows Team RNJR a high view of Mistral and tells them about the city's culture. Afterward, Qrow takes the students to Haven Academy to meet with Professor Leonardo Lionheart. They learn the Grimm attacked Mistral shortly after the Fall of Beacon due to the high levels of negativity and that Lionheart excused the teachers. Qrow becomes infuriated the Relic has been left unguarded. He reveals to the students the association between Maidens and Relics before sharing with everyone that he believes the Spring Maiden is with Raven. The Headmaster insists on waiting before taking action. At a bar that night, Oscar Pine approaches Qrow and asks for the cane on behalf of Ozpin. Qrow returns with him to Team RNJR, drunkenly giddy that he "did it!".</small>
  1106. <br><br>
  1107. <small>He then watches as Ozpin reveals himself to the students and explains the nature of his existence. When the former Headmaster states they need to protect the Relic of Knowledge, Qrow agrees it is best not to let anyone else know Oscar is the new reincarnation. Ozpin tasks him with enlisting the aid of trustworthy Huntsmen for help. Qrow starts his search in a restaurant, asking the shop owner for a Huntsman on his list. To his dismay, the owner angrily kicks him out from the Huntsman owing him money. Qrow searches Mistral for the Huntsmen on his list, but none are available. Returning to the restaurant, he pays the owner the Lien the Huntsman owed him. That evening, as Qrow contemplates the missing Huntsmen, Yang and Weiss arrive unexpectedly, surprising him. He takes them to Ruby and watches as the girls happily share a hug of reunion.</small>
  1108. <br><br>
  1109. <small>Qrow gathers the former Beacon students after they share a meal. Yang prompts Ozpin to talk about his turning the Branwen twins to birds. Qrow quells the ensuing discontent, saying it was their choice to do reconnaissance for Ozpin and that it involved the powers of turning into birds. One morning, Qrow spots a raven outside the lodging and gives it a suspicious look. He is then summoned by Oscar as Ozpin needed to speak with him. The two of them discuss their current situation with Qrow pointing out the absence of the Huntsmen in Mistral, meaning that they are at a great disadvantage against Salem's forces. Then Ruby appears and asks about the Relic of Choice, with Ozpin assuring her that it is safe and much harder to find than the other three Relics. Suddenly, Qrow receives a call from Lionheart who asks him to come to Haven tomorrow night to discuss the raiding party for the bandit tribe. As Ruby hurries to fetch the others, Qrow and Ozpin share their suspicions about the Haven headmaster.</small>
  1110. </blockquote>
  1111. <h4>Battle of Haven</h4>
  1112. <blockquote><small>On the night of the full moon, Qrow and the students travel to Haven to meet with Lionheart. He is suspicious of the Headmaster's nervous behavior, but when Yang calls out to her mother, Qrow immediately opens fire, despite Raven being in bird form. Qrow confronts her on her presence and accuses her of holding the Spring Maiden. When Raven confirms this, he demands his sister hand the Maiden over but is refused on the grounds that Salem cannot be defeated. After Ruby's failed attempt to convince Raven to join them, Qrow and the students are ambushed by Cinder's Faction. Upon learning that Lionheart has been working for Salem all along, Qrow realizes that the Haven headmaster allowed Salem's forces to kill off the Huntsmen of Mistral. When Jaune angrily confronts Cinder about the murders she has committed, Qrow tries to calm the students and prevent a fight. His efforts are in vain, however, as Cinder easily provokes Jaune into attacking her. Qrow ends up fighting his sister and tells her that she has crossed the line, ending his family ties with her.</small>
  1113. <br><br>
  1114. <small>The fight abruptly ends when Oscar is attacked by Hazel Rainart, and Qrow rushes over to save him, though doing so allows Raven to head for the vault with Vernal and Cinder. The pair finds themselves at a great disadvantage with Hazel's immense strength. Things worsen when Lionheart attacks them with his Dust projectiles, and Qrow is punched in the back by Hazel while protecting Oscar, the force of the blow sending him flying across the Grand Hall. Even with Ren's help, Hazel proves to be too much for Qrow and Oscar. After Nora rescues them and knocks Hazel out of the hall, Qrow is left completely exhausted. He rejoins the fight but is shocked by Hazel's sheer willpower. The battle eventually ends when Yang emerges from the vault with the Relic in hand, but the heroes are caught in a giant illusion created by Emerald where they are shown a terrifying version of Salem.</small>
  1115. <br><br>
  1116. <small>Afterward, Qrow receives the Relic from Yang and learns that Cinder is missing and Vernal is dead. However, his niece gives a vague answer about Raven's disappearance, though Qrow does not question further and remarks they are all glad to see Yang safe. Turning his attention to Oscar, Qrow finds that Ozpin is resting after the exhausting battle. He then receives the Headmaster's message to take the Relic to Atlas. After laying the boy to let him rest, Qrow looks at the Relic as it begins to glow.</small>
  1117. </blockquote>
  1118. <h4>Journey to Atlas</h4>
  1119. <blockquote><small>Recovering back at the house, Qrow explains to the students that their next move is to travel to Argus, which has the largest Atlas military base. He is confident that the northern kingdom will not abandon it, and believes that they should be able to convince someone to take them north. Qrow is later relieved when Ozpin emerges from his rest and tells everyone about the Relic of Knowledge's abilities, though they cannot use it as the three questions have apparently been used already.</small>
  1120. <br><br>
  1121. <small>Two weeks following the Battle of Haven, Qrow sends a letter to Ironwood, informing him that he and the Beacon students are on their way to Atlas while giving the official, less than accurate news report on Haven. As he returns to the students, he confronts Dee and Dudley as they try to impress the group to no avail, making fools of them. When they are on the train, Qrow is just about to play a video game with his nieces when Manticore and Sphinx Grimm suddenly attack. During the fight, he becomes upset when Dudley activates the turrets and starts attracting the monsters to the passenger cars.</small>
  1122. <br><br>
  1123. <small>After tunnel puts a brief pause in the fight, Qrow angrily confronts an injured Dudley about the turrets but is stopped by Ruby, who asks politely. The heroes devise a plan to attract the Grimms' attention away from the passengers, and Ozpin informs them that the monsters are also attracted to the Relic, surprising everyone - including Qrow. Ultimately, Qrow, Oscar and Team RWBY stay in the detached rear cars to fight off the Grimm, while Ren uses his Semblance with Jaune's support to mask the emotions of the passengers in the front cars. In the ensuing fight, Qrow struggles on his own against the Sphinx, but Team RWBY later supports him, and he and Ruby attack together to finish off the Grimm. The Grimm spits a fireball right before its death, which damages the tracks and sends the train crashing into a snowy forest. Maria Calavera, an old woman who was inside the rear cars, exits the train and greets them.</small>
  1124. <br><br>
  1125. <small>As they recover from the crash, Qrow can only watch the heated argument between Yang and Ozpin, and is stunned when Ruby later summons Jinn from the Relic of Knowledge and briefly looks away in embarrassment. The heroes learn from the being that Ozpin lied to them and that she can still answer two questions. When Qrow speaks up, he is stunned when Weiss, Blake and Yang prepare to fight him, but calmly tells Ruby to do what she believes is right. After Ruby asks Jinn what is it that Ozpin is hiding from them, they are all suddenly separated from one another in a white space. As Jinn answers the question in the form of a story, the heroes find that Salem was once a Human girl locked in a tower.</small>
  1126. <br><br>
  1127. <small>Jinn goes on to uncover Salem's and Ozpin's pasts, also touching on the gods of Light and Darkness and the origin of the Relics. After Ozpin admits he has no plan to defeat Salem, Qrow is enraged. He opens up about his past, saying nobody except Ozpin wanted him, and he had thought Ozpin gave him a place in this world. His final comment, that meeting Ozpin was the worst luck of his life, had such an effect on Ozpin that the old wizard buried himself deep in Oscar's mind. As the tension rises, Maria directs the group to control their emotions and follow a nearby trail. When Ruby tries to assure Oscar that he is his own person, Qrow coldly stops her by saying that they are better than giving false hope. The heroes then take shelter in Brunswick Farms, despite the fact that the place seemed abandoned.</small>
  1128. </blockquote>
  1129. <h4>The Nightmare in Brunswick Farms</h4>
  1130. <blockquote><small>As they try to enter the main house, Qrow finds the front door locked and warns Team RWBY and Oscar to stay on guard. He then breaks their way through with everyone on high alert. The group then splits to search the house, but they find a pair of decomposed corpses on the bed of the master bedroom. Qrow searches the entire estate and finds that everyone else on the estate suffered the same fate. He then tells Weiss that they have no choice but to spend the night at the house until the storm clears. After Ruby suggests that there should be supplies for them to use, Qrow goes out to do another scout of the area and instructs the others to not go out alone.</small>
  1131. <br><br>
  1132. <small>That evening, Qrow makes himself the group's watchman and sees that the storm has let up. As Ruby checks on him, he instructs her to tell everyone else to go to sleep so that they can leave first thing in the morning. However, Qrow drinks three whole bottles of alcohol and falls asleep on the job. He is woken up by the sound of a shattered bottle by Ruby, and he realizes that he missed sunrise. As his niece tries to comfort him over his depression, Qrow brushes her away and goes to wake up the others. As everyone else waits outside, Qrow and Ruby push the flatbed behind Bumblebee to hook them together. But just as they are about to go, Qrow's Semblance flattens one of the tires. Angered at his bad luck, he sits down and watches as most of the others stand against Ruby about getting the Relic of Knowledge to Atlas.</small>
  1133. <br><br>
  1134. <small>Ultimately, Ruby accidentally drops the lamp down the well and insists that she's not leaving without it, and Qrow goes back inside the house to drink more alcohol. He finds the bar and drinks to the point where he passes out on the counter, where he is found by Team RWBY and Maria who were fleeing from the Apathy. After he is woken up by Ruby, Qrow is oblivious to the danger they are in until he is pushed out of the house by Ruby and Weiss and sees the approaching Grimm. The group then get on the fixed flatbed and flee from Brunswick Farms. The group learn from Maria about the Apathy, the demise of the farm estate resident, and that Maria was a silver-eyed warrior.</small>
  1135. </blockquote>
  1136. </div>
  1137. </div>
  1138. </div>
  1139. <!--END OF BOX -->
  1140.  
  1141. <!---POP UP BOX THREE--->
  1142.  
  1143. <!--START OF BOX (FOR MORE, COPY FROM 'START' TO 'END')-->
  1144. <div id="box4" class="popup_block">
  1145. <div class="popupcontent">
  1146. <div id="popuptext">
  1147. <h1>Stats.</h1>
  1148. <h4>Basics</h4>
  1149. <blockquote><li><small><span>Full Name:</span> <i>Qrow Branwen</i></li>
  1150. <li><span>Nicknames:</span> <i>Bro, Uncle Qrow, Uncle</i></li>
  1151. <li><span>Age:</span> <i>40</i></li>
  1152. <li><span>Date of Birth:</span> <i>20th February</i></li>
  1153. <li><span>Place of Birth: N/A</span> <i>-</i></li>
  1154. <li><span>Zodiac:</span> <i>Pisces</i></li>
  1155. <li><span>Gender:</span> <i>Male</i></li>
  1156. <li><span>Orientation:</span> <i>Panromantic Pansexual</i></li>
  1157. <li><span>Smoke | Drink | Drugs :</span> <i>No | Formerly | No</i></li></blockquote></small>
  1158. <h4>Apperance</h4>
  1159. <blockquote><small><li><span>Face Claim: Colin O'Donoghue</span> <i>--</i></li>
  1160. <li><span>Height:</span> <i>5'10</i></li>
  1161. <li><span>Weight:</span> <i>175 LBS</i></li>
  1162. <li><span>Hair Color:</span> <i>Black - Resembles feathers at times</i></li>
  1163. <li><span>Eye Color:</span> <i>Crimson Red</i></li>
  1164. <li><span>Voice Claim:</span> <i>Jason Liebrecht</i></li>
  1165. <li><span>Piercings:</span> <i>N/A</i></li>
  1166. <li><span>Tattoos:</span> <i>N/A</i></li>
  1167. <li><span>Scars:</span> <i>N/A</i></li>
  1168. <li><span>Distinguising Features:</span> <i>Spiked Hair, Red Eyes</i></li>
  1169. <li><span>What do they smell like:</span> <i>Calogne, Faint Alcohol</i></li>
  1170. <li><span>How do they sleep:</span> <i>On his side, or as a bird</i></li>
  1171. <li><span>Body Build:</span> <i>Slim/Thin</i></li></small>
  1172. <li><span>Left/Right Handed:</span> <i>Right</i></li>
  1173. <li><span>Aura Colour:</span> <i>Red</i></li>
  1174. <li><span>Semblance:</span> <i>Misfortune</i></li>
  1175. </blockquote>
  1176. <h4>Background and Family Details.</h4>
  1177. <blockquote><small><li><span>Father:</span> <i>Unknown [Likely Deceased]</i></li>
  1178. <small><li><span>Mother:</span> <i>Unknown [Likely Deceased]</i></li>
  1179. <li><span>Siblings:</span> <i> Raven Branwen (Older Twin Sister)</i></li>
  1180. <li><span>Children:</span> <i> None</i></li>
  1181. <li><span>Others:</span> <i> Yang Xiao Long (Niece), Ruby Rose (Adopted Niece)</i></li>
  1182. <li><span>Closest Friends:</span> <i> Summer Rose [Deceased], Taiyang Xiao Long, Ozpin</i></li>
  1183. <li><span>Other Relations:</span> <i> Oscar Pine, Blake Belladonna, Weiss Schnee, Jaune Arc, Nora Valkayre, Pyrrha Nikos (Deceased), Lie Ren, James Ironwood, Leonardo Lionheart (Deceased)</i></li>
  1184. <li><span>Rival(s):</span> <i> Winter Schnee</i></li>
  1185. <li><span>Enemies:</span> <i> Salem and Co., Cinder Fall and Co.</i></li>
  1186. <li><span>Current Residence:</span> <i>Nodamic</i></li>
  1187. <li><span>Spoken Languages:</span> <i>English, and a few others</i></li>
  1188. <li><span>Current Affilitation(s):</span> <i>Ozpin, Team RWBY, Team JN_R</i></li>
  1189. <li><span>Previous Affilitation(s):</span> <i>Team STRQ, Branwen Tribe, Signal Academy, Beacon Academy</i></li>
  1190. <li><span>Occupation</span> <i>Huntsman | Formerly a Professor at Signal Academy</i></li></small>
  1191. </blockquote>
  1192. <h4>Mental</h4>
  1193.  
  1194. <blockquote>
  1195. <small><b>Phobia(s)</b>: N/A</small><br>
  1196. <small><b>Fear(s)</b>: His semblance causing major harm/death to anyone he loves. Losing anymore of his family</small><br>
  1197. <small><b>Mental Disease(s)</b>: Depression </small><br>
  1198. <small><b>When and how was this diagnosed?</b>: Derived from his Alcohol Issues</small><br></blockquote>
  1199.  
  1200. <h4>Personality</h4>
  1201. <blockquote>
  1202. <small><b>Usual Mood/Expression</b>: Sarcastic</small><br>
  1203. <small><b>Moral Alignment</b>: Chaotic Neutral </small><br>
  1204. <small><b>MBTI</b>: INFP</small><br>
  1205. <small><b>Four Temperaments</b>: Phlegmatic</small><br>
  1206. <small><b>Positive personality traits</b>: Supportive, Caring, Determined, Loyal</small><br>
  1207. <small><b>Negative personality traits</b>: Sarcastic, Dry, Blunt, Rude</small><br>
  1208. <small><b>Hogwarts House</b>: Gryffindor</small><br></blockquote>
  1209. <h4>Skills</h4>
  1210. <blockquote>
  1211. <small><b>Skills</b>: Ability to become a Crow</small><br>
  1212. <small><b>Semblance</b>: Misfortune</small><br>
  1213. <small><b>Weapon of choice</b>: Sword/Scythe — Harbringer</small><br>
  1214. <small><b>Weak or strong physically</b>: Strong</small><br>
  1215. <small><b>Weak or strong mentally</b>: Strong</small><br></blockquote>
  1216. <h4>Misc</h4>
  1217. <blockquote>
  1218. <small><b>Hobbies</b>: Playing Video Games with his nieces</small><br>
  1219. <small><b>Talents</b>: Master Scythe Wielder</small><br>
  1220. <small><b>Likes</b>: Drinking, spending time with his nieces.</small><br>
  1221. <small><b>Dislikes</b>: Being Lied to, his sister's betrayal.</small><br>
  1222. <small><b>Greek God</b>: TBD</small><br>
  1223. <small><b>Egyptian God</b>: TBD</small><br>
  1224. <small><b>Tarot Card</b>: TBD</small><br>
  1225. <small><b>Zodiac</b>: Pisces</small><br>
  1226. <small><b>Element</b>: Fire</small><br>
  1227. <small><b>Animal</b>: Crow</small><br>
  1228. <small><b>Plant</b>: TBD</small><br>
  1229. <small><b>Gemstone</b>: Ruby</small><br>
  1230. </div>
  1231. </div>
  1232. </div>
  1233. </div>
  1234. <!--END OF BOX -->
  1235.  
  1236. <!---POP UP BOX FOUR--->
  1237.  
  1238. <!--START OF BOX (FOR MORE, COPY FROM 'START' TO 'END')-->
  1239. <div id="box5" class="popup_block">
  1240. <div class="popupcontent">
  1241. <h1>Mun.</h1>
  1242. <center><img src="https://78.media.tumblr.com/61da30ad3d75b6e11c8d0cfb01ca4224/tumblr_inline_oywqghNs311t6c6km_540.png"><img src="https://78.media.tumblr.com/eab23d88802719763c667fef5736f805/tumblr_inline_n5u44miHsd1r3leyb.png"></center>
  1243. <small><li>Nickey / Pyrrha<br></small>
  1244. <small><li>21 years old ;; July 16<br></small>
  1245. <small><li>Female; She/Her.<br></small>
  1246. <small><li>Bisexual ;; British<br></small>
  1247. <small><li>GMT (November - Feburary) | BST (March - October)<br></small>
  1248. <small><li>I play Overwatch on PC and Xbox One. My mains vary between Reaper, Hanzo and D.Va. I also play a shit ton of Destiny 2, being a shitty Hunter main, and I do play Grimm Eclipse - Both exclusively on Xbox One. Add me down below~!<br></small>
  1249. <small><li><b>Contact:</b><br></small>
  1250. <small><li>Discord: <b>Ask Me in DMs!</b><br></small>
  1251. <small><li>Xbox One: <b>The KatanaBalls</b><br></small>
  1252. <small><li>Overwatch/Blizzard: <b>wrighttbh#2207</b><br></small>
  1253. <blockquote><small>Hi, I'm Nickey! I've been on tumblr for three/four years, moving from blog to blog and really just having fun. IMs are always open and I'll try and reply back when I can. I'm busy with University sometimes, so hence why I may not be here 24/7, but I'll be on discord a lot.</a>.</small></blockquote>
  1254. </div>
  1255. </div>
  1256. </div>
  1257. </div>
  1258. </div>
  1259. <!--END OF BOX -->
  1260.  
  1261. <!--START OF BOX (FOR MORE, COPY FROM 'START' TO 'END')-->
  1262. <div id="box6" class="popup_block">
  1263. <div id="popuptext">
  1264. <div class="popupcontent">
  1265. <h1>Verses.</h1>
  1266. <blockquote><small>Will be done one day,
  1267. <br>
  1268. I swear,<br>
  1269. Okay-<br>
  1270. boo.</small></blockquote>
  1271. </div></div></div></div></div>
  1272. <!--END OF BOX -->
  1273.  
  1274.  
  1275. <!---CONTAINER--->
  1276.  
  1277. <div id="container">
  1278.  
  1279. <!---POSTS--->
  1280.  
  1281. {block:Posts}
  1282.  
  1283. <div class="posts">
  1284.  
  1285. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  1286.  
  1287. <!---PHOTO POST--->
  1288.  
  1289. {block:Photo}<center><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  1290.  
  1291. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  1292.  
  1293. <center>{block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}</center>
  1294.  
  1295. <!---QUOTE POST--->
  1296.  
  1297. {block:Quote}<div id="quote">❝ {Quote} ❞{block:Source}<br><br> <div style="text-align: right;"><h3>━ {Source}</h3></div></div>{/block:Source}{/block:Quote}
  1298.  
  1299. <!---LINK POST--->
  1300.  
  1301. {block:Link}<a href="{URL}" class="link" {Target}><h3>{Name}</h3></a>{block:Description}{Description}{/block:Description}{/block:Link}
  1302.  
  1303. <!---CHAT POST--->
  1304.  
  1305. {block:Chat}{block:Title}<h1>{Title}</h1></a>{/block:Title}
  1306. {block:Lines}<i>{block:Label}{Label}{/block:Label}</i>&nbsp;{Line}<p>{/block:Lines}{/block:Chat}
  1307.  
  1308. <!---VIDEO POST--->
  1309.  
  1310. <center>{block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}</center>
  1311.  
  1312. <!---AUDIO POST--->
  1313.  
  1314. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  1315.  
  1316. <!---ASK && ANSWER--->
  1317.  
  1318. {block:Answer}
  1319. <center>{asker}</center>
  1320. <div id="ask">{question}<br><div style="text-align: right;"></div></div>
  1321. <br>
  1322. {Answer}{/block:Answer}
  1323.  
  1324. <!---INFO--->
  1325.  
  1326. <div id="info">
  1327.  
  1328. <div style="margin-top:20px;
  1329. margin-left:228px;
  1330. position:absolute;
  1331. -ms-transform: rotate(70deg);
  1332. -webkit-transform: rotate(70deg);
  1333. transform: rotate(70deg);
  1334. z-index:99999; width:35px;">
  1335.  
  1336. <a href="{Permalink}" title="{Month} {DayofMonth}{DayofMonthSuffix} {Year}" style="font-size:19px; color:{color:links};">★</a>{/block:Date} </div>
  1337.  
  1338. <div style="margin-top:10px;
  1339. margin-left:250px;
  1340. position:absolute;
  1341. -ms-transform: rotate(0deg);
  1342. -webkit-transform: rotate(-50deg);
  1343. transform: rotate(40deg);
  1344. z-index:99999;
  1345. width:30px;
  1346. ">{block:NoteCount}
  1347.  
  1348. <a href="{Permalink}" title={NoteCountwithLabel} style="font-size:15px; color:{color:links};">★</a> {/block:NoteCount}</div>
  1349.  
  1350. <div style="margin-top:30px;
  1351. margin-left:260px;
  1352. position:absolute;
  1353. -ms-transform: rotate(0deg);
  1354. -webkit-transform: rotate(0deg);
  1355. transform: rotate(-90deg);
  1356. z-index:99999;
  1357. width:20px;">
  1358.  
  1359. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}" style="font-size:15px; color:{color:links};">★</a>{/block:RebloggedFrom}</div>
  1360.  
  1361. <div style="margin-top: 45px;
  1362. margin-left:230px;
  1363. position:absolute;
  1364. -ms-transform: rotate(70deg);
  1365. -webkit-transform: rotate(70deg);
  1366. transform: rotate(70deg);
  1367. z-index:99999;
  1368. width:25px;
  1369. ">
  1370.  
  1371. {block:ContentSource}<a title="{SourceTitle}" href="{SourceURL}" style="font-size:15px; color:{color:links};">★</a>{/block:ContentSource} </div>
  1372. </div>
  1373.  
  1374. <br><br><br>
  1375.  
  1376. <!---TAGS--->
  1377.  
  1378. {block:HasTags}
  1379. <div style="margin-top:-50px;
  1380. margin-left:-10px;">
  1381. <div class="tags">
  1382. <center> {block:Tags} <a href="{TagURL}" title="{Tag}">&nbsp; #{Tag} </a> {/block:Tags} </div></center></div>
  1383. {/block:HasTags}
  1384. </div>
  1385.  
  1386. <!---NOTES--->
  1387.  
  1388. <div class="postnote">
  1389. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1390.  
  1391. {/block:Posts}
  1392.  
  1393.  
  1394. </body>
  1395.  
  1396. <!-- SCRIPTS -->
  1397.  
  1398. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  1399. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  1400.  
  1401. <script>
  1402. (function($){
  1403. $(document).ready(function(){
  1404. $("[title]").style_my_tooltips({
  1405. tip_follows_cursor:true,
  1406. tip_delay_time:90,
  1407. tip_fade_speed:600,
  1408. attribute:"title"});
  1409. });})(jQuery);
  1410. </script>
  1411.  
  1412. </div>
  1413. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement