Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.14 KB | None | 0 0
  1. <!-- search for "pigeon delete this" -->
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6.  
  7. <script type="text/javascript"
  8. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  9. <script>
  10. $(document).ready(function() {
  11. //
  12. $('a.poplight[href^=#]').click(function() {
  13. var popID = $(this).attr('rel'); //Get Popup Name
  14. var popURL = $(this).attr('href'); //Get Popup href to define size
  15. var query= popURL.split('?');
  16. var dim= query[1].split('&');
  17. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  18. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  19. var popMargTop = ($('#' + popID).height() + 80) / 2;
  20. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  21. //Apply Margin to Popup
  22. $('#' + popID).css({
  23. 'margin-top' : -popMargTop,
  24. 'margin-left' : -popMargLeft
  25. });
  26. $('body').append('<div id="fade"></div>');
  27. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  28. return false;
  29. });
  30. $('a.close, #fade').live('click', function() {
  31. $('#fade , .popup_block').fadeOut(function() {
  32. $('#fade, a.close').remove(); //fade them both out
  33. });
  34. return false;
  35. });
  36. });
  37. </script>
  38.  
  39. <title>{Title}</title>
  40. <link rel="shortcut icon" href="{Favicon}">
  41. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  42. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  43.  
  44. <!---- this is theme 41 by Hollywhood
  45. please don't remove the credit
  46. thank you
  47. --->
  48.  
  49. <meta name="color:Background" content="#ffffff"/>
  50. <meta name="color:Text" content="#9B9B9B"/>
  51. <meta name="color:Link" content="#b8b8b8"/>
  52. <meta name="color:scrollbar" content="#999999">
  53. <meta name="color:title" content="#999999">
  54. <meta name="color:Link Hover" content="#eeeeee"/>
  55. <meta name="image:background" content=”“/>
  56.  
  57. <meta name="image:sidebar" content=""/>
  58. <meta name="text:sidebartitle" content="">
  59.  
  60. <meta name="text:link 1" content="Link 1"/>
  61. <meta name="text:link 1 url" content="/"/>
  62. <meta name="text:link 2" content="Link 2"/>
  63. <meta name="text:link 2 url" content="/"/>
  64. <meta name="text:link 3" content="Link 3"/>
  65. <meta name="text:link 3 url" content="/"/>
  66. <meta name="text:link 4" content="Link 4"/>
  67. <meta name="text:link 4 url" content="/"/>
  68. <meta name="text:link 5" content="Link 5"/>
  69. <meta name="text:link 5 url" content="/"/>
  70.  
  71. <script language="JavaScript" src="http://dl.dropbox.com/u/3173073/GothicDarkness/qTip.js" type="text/JavaScript"></script>
  72.  
  73. <style>
  74. div#qTip {
  75. padding: 3px;
  76. display: none;
  77. text-align: center;
  78. position: absolute;
  79. font-size:12px;
  80. margin-left:10px;
  81. margin-top:-2px;
  82. line-height:9px;
  83. font-family:arial;
  84. z-index: 1000;
  85. border: 1px solid #cacaca;
  86. background-color:#ae7877;
  87. color: #9b9b9b;
  88. text-transform:uppercase;
  89. letter-spacing: 2px;
  90. }
  91. </style>
  92.  
  93. <style type="text/css">
  94.  
  95. #updatesbox {/*the styling of the whole updates box; tutorial by http://kimsjongin.tumblr.com*/
  96. line-height:100%;/*don't change this!*/
  97. display:block;/*don't change this either lol*/
  98. border:1px solid #eee;/*the border of the whole box; 1px is the width, #eee is the hex color (go to colorpicker.com and pick one)*/
  99. height:10px;/*the height of the box before hover*/
  100. width:40px;/*the width of the box before hover*/
  101. padding:0px 5px 5px 5px;/*don't change this!*/
  102. z-index:0;/*don't change this!*/
  103. top:15px;/*distance from top of page*/
  104. left:15px;/*distance from left of page*/
  105. color:#999;/*color of text*/
  106. position:fixed;/*don't change this!*/
  107. background:#fff;/*background color of updates box*/
  108. overflow:hidden;/*don't change this!*/
  109. text-align:center;/*text alignment of everything in updates box*/
  110. -moz-transition-duration:0.6s;
  111. -webkit-transition-duration:0.6s;
  112. -o-transition-duration:0.6s;
  113. }
  114.  
  115. #updatesbox:hover {/*the updates box after hover*/
  116. height:200px;/*the height of the box after hover*/
  117. width:100px;/*the width of the box after hover*/
  118. -moz-transition-duration:0.5s;
  119. -webkit-transition-duration:0.5s;
  120. -o-transition-duration:0.5s;
  121. }
  122. /*tutorial by meem.co.vu; please don't remove this note*/
  123. #updatestitle {/*the title of the updates box*/
  124. line-height:17px;/*don't change this!*/
  125. font-family:calibri;/*the font of the updates title*/
  126. text-transform:uppercase;/*can be uppercase, lowercase, none*/
  127. font-size:8px;/*font size of updates title*/
  128. }
  129.  
  130. #inside {/*the actual updates*/
  131. font-size:9px;/*the font size of the actual updates*/
  132. font-family:baskerville;/*the font of the actual updates*/
  133. width:90px;/*if you increase the width of #updatesbox:hover , increase the width of #inside by the same value. for instance, if you increase the width of #updatesbox:hover from 90px to 100px, change the width of #inside to 100px*/
  134. line-height:10px;/*don't change this!*/
  135. -moz-transition-duration:0.5s;
  136. -webkit-transition-duration:0.5s;
  137. -o-transition-duration:0.5s;
  138. }
  139.  
  140. .popup_block{
  141. display:none;
  142. background-image: url("https://66.media.tumblr.com/fc32c20b1c66cd1a8ae2cc96d907f2dc/tumblr_pjtj1gGIOD1y2e9ylo1_640.png");
  143. padding:20px;
  144. float:left;
  145. position:fixed;
  146. top:50%;left:50%;
  147. z-index: 9999999999;
  148. width: 600px;
  149. height: 470px;
  150. padding-top:115px;
  151. }
  152.  
  153. *html #fade {position: absolute;}
  154. *html .popup_block {position: absolute;}
  155. #fade {
  156. display:none;
  157. position:fixed;
  158. left:0px;
  159. top:0px;
  160. width:100%;
  161. height:100%;
  162. z-index:9999;
  163. background:#000; /* change to #fff for solid white */
  164. opacity:0.5; /* change to opacity:1; */
  165. }
  166.  
  167. ::-webkit-scrollbar-thumb{
  168. background-color: {color:scrollbar};
  169. border: 2px solid {color:background};
  170. height:auto;
  171. }
  172.  
  173. ::-webkit-scrollbar {
  174. height:auto;
  175. width:0px;
  176. background-color: {color:scrollbar};
  177. border:0px solid {color:background};
  178. }
  179.  
  180.  
  181. iframe#tumblr_controls {
  182. white-space:nowrap;
  183. -webkit-filter: invert(100%);
  184. -moz-filter: invert(100%);
  185. -o-filter: invert(100%);
  186. -ms-filter: invert(100%);
  187. filter: invert(100%);
  188. opacity:.2;transition: .8s ease-in-out;
  189. -webkit-transition: .8s ease-in-out;
  190. -moz-transition: .8s ease-in-out;
  191. -o-transition: .8s ease-in-out;
  192. }
  193.  
  194. blockquote img {
  195. max-width:100%;
  196. height:auto;}
  197.  
  198. img {
  199. max-width:100%;
  200. height:auto;}
  201.  
  202. .caption img {
  203. max-width:100%;
  204. height:auto;}
  205.  
  206. .entries img {
  207. max-width:100%;
  208. margin-top:5px;
  209. margin-bottom:5px;}
  210.  
  211. h1 {
  212. font-weight:bold;
  213. font-size:13px;
  214. text-align:center;
  215. font-style:normal;
  216. line-height:100%;
  217. letter-spacing:1px;
  218. text-transform:normal;
  219. color:{color:text};
  220. text-shadow: 5px 5px 5px #ae7877;
  221. }
  222.  
  223. h2 {
  224. font-size:20px;
  225. text-align:center;
  226. line-height:100%;
  227. letter-spacing:-0.5px;
  228. color:#ae7877;
  229. font-weight:bold;
  230. text-transform:uppercase;
  231. padding:5px;
  232. padding-bottom:2px;
  233. font-weight:bold;
  234. text-shadow: 0 0 0.3em #ae7877;
  235. }
  236.  
  237.  
  238. blockquote {
  239. border-left:2px solid {color:text};
  240. padding-left:5px;
  241. margin:5px;
  242. }
  243.  
  244.  
  245. body {
  246. background:{color:background};
  247. margin:0px;
  248. color:{color:text};
  249. font-family:trebuchet ms;
  250. font-size:13px;
  251. line-height:100%;
  252. background-attachment:fixed;
  253. background-image: url('{image:Background}');
  254. background-repeat:no-repeat;
  255. font-family: 'Roboto', sans-serif;
  256. }
  257.  
  258. a {
  259. text-decoration:none;
  260. outline:none;
  261. -moz-outline-style:none;
  262. color:#ae7877;
  263. -moz-transition-duration:0.5s;
  264. -webkit-transition-duration:0.5s;
  265. -o-transition-duration:0.5s;
  266. text-shadow: 0 0 0.4em #ae7877;
  267. }
  268.  
  269. a:hover {
  270. text-decoration:none;
  271. outline:none;
  272. -moz-outline-style:none;
  273. color:{color:link hover};
  274. }
  275.  
  276. b, strong {
  277. font-weight:bold;
  278. color:#ae7877;
  279. text-shadow: 0 0 0.3em #ae7877;
  280. font-size:18px;
  281.  
  282. }
  283.  
  284. i, em {
  285. font-style:italic;
  286. color:#ae7877;
  287. text-shadow: 0 0 0.3em #ae7877;
  288. font-size:18px;
  289. }
  290.  
  291. img {
  292. border:none;
  293. }
  294.  
  295. blockquote {
  296. padding-left:5px;
  297. border-left:2px solid;
  298. }
  299.  
  300. blockquote blockquote {
  301. padding-left:5px;
  302. border-left:2px solid;
  303. }
  304.  
  305. #post {
  306. width:530px;
  307. padding-bottom:30px;
  308. margin-top:30px;
  309. }
  310.  
  311. #entries {
  312. padding:20px;
  313. width:450px;
  314. margin-left:452px;
  315. margin-top:80px;
  316. margin-bottom:40px;
  317. position:fixed;
  318.  
  319. overflow:scroll;
  320.  
  321. overflow-x:hidden;
  322.  
  323. height:480px;
  324.  
  325. border:0px double;
  326. -webkit-mask-image: -webkit-gradient(
  327. linear, center 75%, center bottom,
  328. from(rgba(0,0,0,20)),
  329. to(rgba(20,0,0,0)));
  330. }
  331.  
  332.  
  333.  
  334. #links {
  335. text-shadow: 0 0 0.2em #ae7877;
  336. position:fixed;
  337. width:260px;
  338. margin-top:0px;
  339. margin-left:-25px;
  340. font-size:34px;
  341. text-transform:uppercase;
  342. text-align:center;
  343. line-height:280%;
  344. }
  345.  
  346. #link1 {
  347. position:fixed;
  348. font-size:34px;
  349. margin-top:100px;
  350. margin-left:970px;
  351. text-shadow: 0 0 0.2em #ae7877;
  352. }
  353.  
  354.  
  355. #link2 {
  356. position:fixed;
  357. font-size:34px;
  358. margin-top:200px;
  359. margin-left:970px;
  360. text-shadow: 0 0 0.2em #ae7877;
  361. }
  362.  
  363. #link3 {
  364. position:fixed;
  365. font-size:34px;
  366. margin-top:300px;
  367. margin-left:970px;
  368. text-shadow: 0 0 0.2em #ae7877;
  369. }
  370.  
  371. #link4 {
  372. position:fixed;
  373. font-size:34px;
  374. margin-top:400px;
  375. margin-left:970px;
  376. text-shadow: 0 0 0.2em #ae7877;
  377. }
  378.  
  379. #link5 {
  380. position:fixed;
  381. font-size:34px;
  382. margin-top:500px;
  383. margin-left:970px;
  384. text-shadow: 0 0 0.2em #ae7877;
  385. chukular.tumblr.com
  386. }
  387.  
  388.  
  389. #links a{
  390. line-height:280%;
  391. border-bottom:0px solid #fff;
  392. margin-top:4px;
  393. margin-left:13px;
  394. color:{color:link};
  395. text-decoration:none;
  396. -moz-transition-duration:.2s;
  397. -webkit-transition-duration:.2s;
  398. -o-transition-duration:.2s;
  399. }
  400.  
  401. #links a:hover {
  402. color: {color:link hover};
  403. width:60px;
  404. -moz-transition-duration:0.2s;
  405. -webkit-transition-duration:0.2s;
  406. -o-transition-duration:0.2s;
  407. }
  408.  
  409.  
  410.  
  411. #description {
  412. position:fixed;
  413. width:200px;
  414. font-family:trebuchet ms;
  415. margin-top:55px;
  416. margin-left:-9px;
  417. text-align:justify;
  418. font-size:9px;
  419. color: {color:text};
  420. letter-spacing:0px;
  421. line-height:130%;
  422. -moz-transition-duration:1s;
  423. -webkit-transition-duration:1s;
  424. -o-transition-duration:1s;
  425. }
  426.  
  427. #description a {
  428. color:{color:link};
  429. }
  430.  
  431. #description a:hover {
  432. color:{color:link hover};
  433. }
  434.  
  435. .sidebartitle {
  436. width:210px;
  437. text-align:center;
  438. position:fixed;
  439. font-family:arial;
  440. line-height:120%;
  441. margin-left:-13px;
  442. font-size:13px;
  443. margin-top:10px;
  444. color:{color:title};
  445. }
  446.  
  447. #pagination {
  448. font-family:cambria;
  449. width:210px;
  450. font-size:20px;
  451. margin-top:260px;
  452. margin-left:1000px;
  453. padding-left:5px;
  454. letter-spacing:1px;
  455. font-style:italic;
  456. text-align:center;
  457. text-shadow: 0 0 0.2em #ae7877;
  458. }
  459.  
  460. #pagination a {
  461. color:{color:link};
  462. }
  463.  
  464. #info {
  465. font-family:arial;
  466. width:460px;
  467. margin-top:5px;
  468. padding-top:1px;
  469. font-size:7px;
  470. background:#ae7877;
  471. padding:4px;
  472. color:{color:text};
  473. text-transform:uppercase;
  474. font-style:normal;
  475. text-align:left;
  476. text-shadow: 0 0 0.2em #FFFFFF;
  477. -moz-transition-duration:0.5s;
  478. -webkit-transition-duration:0.5s;
  479. -o-transition-duration:0.5s;
  480. }
  481.  
  482. #info a {
  483. color:#000000;
  484. font-style:normal;
  485. }
  486.  
  487. #info a:hover {
  488. color:#fff;
  489. }
  490.  
  491. .tags {
  492. font-family:calibri;
  493. font-style:normal;
  494. width:400px;
  495. text-transform:normal;
  496. font-style:normal;
  497. line-height:120%;
  498. padding-left:5px;
  499. font-size:10px;
  500. text-align:left;
  501. padding-top:5px;
  502. padding-bottom:15px;
  503. text-shadow: 0 0 0.2em #ae7877;
  504. -moz-transition-duration:0.2s;
  505. -webkit-transition-duration:0.2s;
  506. -o-transition-duration:0.2s;
  507. }
  508. .tags a{
  509. color:{color:link};
  510. -moz-transition-duration:0.2s;
  511. -webkit-transition-duration:0.2s;
  512. -o-transition-duration:0.2s;
  513. }
  514. .tags a:hover{
  515. color:{color:link hover};
  516. -moz-transition-duration:0.2s;
  517. -webkit-transition-duration:0.2s;
  518. -o-transition-duration:0.2s;
  519. }
  520.  
  521. .audio{
  522. background-color:#e5e5e5;
  523. height:65px;
  524. overflow:hidden;
  525. }
  526.  
  527. #ask {
  528. float:left;
  529. color:{color:text};
  530. }
  531.  
  532.  
  533.  
  534. #credit {
  535. font-size:9px;
  536. font-family:cambria;
  537. font-style:italic;
  538. letter-spacing:1px;
  539. -moz-transition-duration:0.5s;
  540. -webkit-transition-duration:0.5s;
  541. -o-transition-duration:0.5s;
  542. }
  543.  
  544. #credit a {
  545. background-color:#000;
  546. padding:5px;
  547. border:1px solid #ae7877;
  548. position:fixed;
  549. right:15px;
  550. bottom:10px
  551. }
  552.  
  553. #credit a:hover {
  554. color:#fff;
  555. background-color:#191919;
  556. }
  557.  
  558.  
  559.  
  560.  
  561. {CustomCSS}</style></head><body>
  562.  
  563.  
  564.  
  565.  
  566. <div class="links">
  567. <div id="link1"><a href="#?w=600" rel="box1" class="poplight">YES</a></div>
  568. <div id="link2"><a href="#?w=600" rel="box2" class="poplight">YES</a></div>
  569. <div id="link3"><a href="#?w=600" rel="box3" class="poplight">YES</a></div>
  570. <div id="link4"><a href="#?w=600" rel="box4" class="poplight">YES</a></a></div>
  571. <div id="link5"><a href="http://chukular.tumblr.com/">YES</a></a></div>
  572.  
  573. <div id="description">{description}
  574.  
  575. <div id="pagination">
  576. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">next</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  577. </div></div></div>
  578.  
  579. <div id="entries">{block:Posts}<div id="post">
  580.  
  581. <!-- SCM Music Player http://scmplayer.co -->
  582. <script type="text/javascript" src="http://scmplayer.co/script.js"
  583. data-config="{'skin':'http://static.tumblr.com/qft2cvq/w5Zn26xbc/skin-2.css','volume':50,'autoplay':true,'shuffle':false,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[{'title':'Dance of the Sugar Plum Fairy','url':'https://www.youtube.com/watch?v=BoC46fZE1xA'}]}" ></script>
  584. <!-- SCM Music Player script end -->
  585.  
  586. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  587.  
  588. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  589.  
  590. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  591.  
  592. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  593.  
  594. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  595.  
  596. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  597.  
  598. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  599. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  600.  
  601. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  602.  
  603. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  604.  
  605. {block:Date}<div id="info"> <a href="{Permalink}">{TimeAgo}</a>
  606. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#ec3d3d>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}<div style="float:right;">
  607.  
  608. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; ( <a href="{ReblogURL}"target="_blank" title="reblog this post"><big>+</big> </a> ) </div>
  609. </div>
  610.  
  611.  
  612. {block:HasTags}
  613. <div class="tags">
  614. tagged as:{block:Tags} <a href="{TagURL}">&nbsp; -{Tag}</a> {/block:Tags}</div>
  615. {/block:HasTags}
  616. <div class="postnote">
  617. {block:PostNotes}{PostNotes}{/block:PostNotes}
  618. </div>
  619. </div>
  620. {/block:Posts}
  621.  
  622. </div>
  623. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</a></div>
  624.  
  625. <!-- begin updates box -->
  626. <div id="updatesbox">
  627. <span id="updatestitle">updates</span>
  628. <div id="inside">
  629. <br>Indie <b>SHUU IWAMINE</b> RP blog from HATOFUL BOYFRIEND<br><br>
  630. Please read About/Rules before following<br><br>
  631. Highly Selective<br><br>
  632. Played by <B>Pigeon!</B><br>
  633. <br>
  634.  
  635. </div>
  636. </div>
  637. <!-- end updates box; it would be nice if you left the below comment in the code! :)
  638. updates box tutorial by http://kimsjongin.tumblr.com -->
  639.  
  640. </body>
  641.  
  642.  
  643. <div id="box1" class="popup_block">
  644. <div style="overflow: auto; width: 480px; height: 430px;">
  645. <div style="text-align: justify;">
  646. <div style="width: 340px; height: 394px; text-align: justify; margin-left: 100px; margin-top: 0px; padding-bottom: 20px; ">
  647.  
  648. <small>
  649. <br>
  650. <H1><center>A B O U T</center></H1><br>
  651. <b>Name:</b> He's gone by plenty of aliases. At St. Pigeonation he goes by Shuu Iwamine.<br>
  652. <br>
  653. <b>Profession:</b> World-renowned physician. School nurse at St. Pigeonation.<br>
  654. <br>
  655. <b>Gender:</b> Male.<br>
  656. <br>
  657. <b>Birthday:</b> December 12th.<br>
  658. <br>
  659. <b>Equipped items:</b> Cleaver, scalpel, ribbon, various drugs, the syringes to administer said drugs, first aid kit.<br>
  660. <br>
  661. <b>Height:</b> 6'01.<br>
  662. <br>
  663. <b>Species:</b> Chukar partridge.<br>
  664. <br>
  665. <b>Of Note:</b> Slightly impaired down his right side. Walks with a bit of a limp, only ever really writes or handles things with his left hand/wing if he can help it. Colourblind; can only see the colour red. Everything else is in monochrome. He sounds like Snufkin.</b><br>
  666. <br>
  667. ---<br>
  668. <br>
  669. "This partridge is Iwamine Shuu, the school doctor. He's rather creepy in person, and has a bad reputation among the student body. Everyone knows that even just talking to him can bring you down with aspergillus, psittacosis, or even worse things. And I never even heard him come in the door... Ninja doctor!?"
  670.  
  671. </div></div></div></div>
  672.  
  673. <div id="box2" class="popup_block">
  674. <div style="overflow: auto; width: 480px; height: 430px;">
  675. <div style="text-align: justify;">
  676. <div style="width: 340px; height: 394px; text-align: justify; margin-left: 100px; margin-top: 0px; padding-bottom: 20px; ">
  677.  
  678. <H1><center>R U L E S</center></H1><br>
  679. HELLO HELLO!!! My name's <b>PIGEON/PIDOVE!!!</b> Thank you so much for reading through this! I don't have that many rules I think, so please bear with me!<br>
  680. I reserve the right to be selective about crossovers; if I don’t know anything about the fandom that you’re in it’ll cut your chances of me wanting to play with your character a bit. Not that I won’t go for it ever, but just worth mentioning.<br><br>
  681.  
  682. I’m not a fan of NSFW! Not doing it on this or any other blog. Sorry. It just makes me incredibly uncomfortable --- on that note please tag all NSFW! If it isn't tagged I'll probably wind up unfollowing. ;; x ;;<br><br>
  683.  
  684. I <b>ONLY</b> RP with mutuals. I also won’t necessarily follow you if you follow me; if I follow you it means I want to RP with you. Never hesitate to just toss me an ask asking for a thread if you’d like one! The exception to this is if we're both in an open verse together!<br><br>
  685.  
  686. Please for the love of everything follow basic RP etiquette. Cut your posts. Don’t godmod. Don’t be needlessly rude. Etc etc etc<br><br>
  687.  
  688. If you have a password in your rules page that you require sent in via ask, I’m not going to send it. I don’t feel comfortable messaging someone I haven’t at least interacted with yet; just know I do read your rules and your about if I follow you because of course I have to, otherwise how am I supposed to know whether or not I want to RP with you? Likewise, I’m never going to make you send in anything like that. >:T<br>
  689. Like I said, I don't do rule passwords, but if you're looking for an excuse to just break the ice or anything you can feel free to shoot me <b>'I'm here to see the doctor'</b> in my inbox or IMs!!<br><br>
  690.  
  691. Sometimes I draw my own art, sometimes not! It isn't mine unless stated otherwise. All the art used here is official!
  692.  
  693. <b>I NO LONGER INTERACT WITH MULTIMUSE BLOGS.</b> I have interacted with them for years and had some good times, but the vast majority tend to drown out characters I follow to interact with with new ones very quickly and/or frequently become multifandom when I only really want to follow out of fandom content I am personally comfortable with, which makes that hard to filter. Obviously there are exceptions to every rule, but those exceptions for this rule are mostly just for friends.<br><br>
  694.  
  695. BIG BIG <b>WARNING</b> THAT SHUU IWAMINE IS <i>NOT</i> A FRIENDLY CHARACTER. He is openly hostile and makes no effort to hide how openly malicious he can be, admitting to killing students, experimenting on people without their consent, kidnapping, dismemberment, biological warfare --- he's a bad bad bird.
  696.  
  697. </div></div></div></div>
  698.  
  699. <div id="box3" class="popup_block">
  700. <div style="overflow: auto; width: 480px; height: 430px;">
  701. <div style="text-align: justify;">
  702. <div style="width: 340px; height: 394px; text-align: justify; margin-left: 100px; margin-top: 0px; padding-bottom: 20px; ">
  703.  
  704. <h1><center>S U P P O R T S</center></h1>
  705. <br>
  706.  
  707. Nothing is here because Pigeon's super lazy and also I still need to interact with more folks I guess :T -->
  708. S rank with aegis' Henry at <a href="http://cawfulkiller.tumblr.com">cawfulkiller</a> ♥♥♥♥♥
  709.  
  710.  
  711. </div></div></div></div>
  712.  
  713. <div id="box4" class="popup_block">
  714. <div style="overflow: auto; width: 480px; height: 430px;">
  715. <div style="text-align: justify;">
  716. <div style="width: 340px; height: 394px; text-align: justify; margin-left: 100px; margin-top: 0px; padding-bottom: 20px; ">
  717.  
  718. <Center><iframe frameborder="0" scrolling="yes" width="100%" height="300" src="http://www.tumblr.com/ask_form/chukular.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe>
  719. </div></div></div></div>
  720.  
  721. <div id="box5" class="popup_block">
  722. <div style="overflow: auto; width: 480px; height: 430px;">
  723. <div style="text-align: justify;">
  724. <div style="width: 340px; height: 394px; text-align: justify; margin-left: 100px; margin-top: 0px; padding-bottom: 20px; ">
  725.  
  726.  
  727. words words words this is a return button BT
  728. </center></div>
  729.  
  730. </div></div></div></div></div></div></div></div></div></div>
  731.  
  732. </div></div></div></div>
  733.  
  734. </div></div></div></div></div></div></div></div></div></div>
  735.  
  736. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement