Advertisement
suoh--chan

And He Was A King

Apr 1st, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.82 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5. ╔╔ ══ ══ Rules:
  6. ║║ -do not use as base
  7. ╚╚ ══ ╗╗ -do not steal bits of code
  8. ║║ -do not remove credits
  9. ══ ══ ╝╝
  10.  
  11.  
  12. -->
  13.  
  14.  
  15. <!DOCTYPE html>
  16. <head>
  17.  
  18. <script type="text/javascript"
  19. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  20. <script>
  21. $(document).ready(function() {
  22. //
  23. $('a.poplight[href^=#]').click(function() {
  24. var popID = $(this).attr('rel'); //Get Popup Name
  25. var popURL = $(this).attr('href'); //Get Popup href to define size
  26. var query= popURL.split('?');
  27. var dim= query[1].split('&');
  28. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  29. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  30. var popMargTop = ($('#' + popID).height() + 80) / 2;
  31. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  32. //Apply Margin to Popup
  33. $('#' + popID).css({
  34. 'margin-top' : -popMargTop,
  35. 'margin-left' : -popMargLeft
  36. });
  37. $('body').append('<div id="fade"></div>');
  38. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  39. return false;
  40. });
  41. $('a.close, #fade').live('click', function() {
  42. $('#fade , .popup_block').fadeOut(function() {
  43. $('#fade, a.close').remove(); //fade them both out
  44. });
  45. return false;
  46. });
  47. });
  48. </script>
  49.  
  50. <title>{Title}</title>
  51.  
  52. <link rel="shortcut icon" href="{Favicon}">
  53. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  54. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  55.  
  56. <!--Default Variables-->
  57.  
  58. <meta name="image:Background" content=""/>
  59. <meta name="color:Background" content="#ffffff"/>
  60. <meta name="color:Text" content="#000000"/>
  61. <meta name="color:link" content="#000000"/>
  62. <meta name="color:title"content="#000000"/>
  63. <meta name="color:blog title"content="#000000"/>
  64. <meta name="color:scrollbar" content="#d5d5d5" />
  65.  
  66. <meta name="if:Show Tags" content="0">
  67. <meta name="if:Show Title" content="1"/>
  68. <meta name="if:Hover Borders" content="1"/>
  69. <meta name="text:Link 1 URL" content="" />
  70. <meta name="text:Link 1" content="" />
  71. <meta name="text:Link 2 URL" content="" />
  72. <meta name="text:Link 2" content="" />
  73. <meta name="text:Link 3 URL" content="" />
  74. <meta name="text:Link 3" content="" />
  75.  
  76.  
  77.  
  78.  
  79. <!-- jquery -->
  80.  
  81.  
  82. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  83.  
  84. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  85.  
  86. <script>
  87.  
  88. (function($){
  89.  
  90. $(document).ready(function(){
  91.  
  92. $("a[title]").style_my_tooltips({
  93.  
  94. tip_follows_cursor:true,
  95.  
  96. tip_delay_time:30,
  97.  
  98. tip_fade_speed:300,
  99.  
  100. attribute:"title"
  101.  
  102. });
  103.  
  104. });
  105.  
  106. })(jQuery);
  107.  
  108. </script>
  109.  
  110.  
  111.  
  112. <!--CSS customization here. -->
  113.  
  114. <style type="text/css">
  115.  
  116.  
  117. #boxbyireverent {
  118. position:fixed;
  119. z-index:999;
  120. padding:13px;
  121. background:#000;
  122. position:fixed;
  123. font-family:corbel;
  124. font-size:11px;
  125. overflow:auto;
  126. text-align:left;
  127. line-height:12px;
  128. position:fixed;
  129. margin-left:700px;
  130. bottom:400px;
  131. border-radius:5px;
  132. color:#999999;
  133. width:80px;
  134. height:50px;
  135. text-transform:none;
  136. border:3px double #eee;
  137. overflow:hidden;
  138. transition: all 0.6s ease-out;
  139. -o-transition-transition: all 0.6s ease-out;
  140. -webkit-transition: all 0.6s ease-out;
  141. -moz-transition: all 0.6s ease-out;
  142. }
  143.  
  144.  
  145. .popup_block{
  146. display:none;
  147. background:#fff;
  148. padding:20px;
  149. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  150. float:left;
  151. position:fixed;
  152. top:50%;left:50%;
  153. z-index: 99999;
  154. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  155. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  156. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  157. }
  158.  
  159. *html #fade {position: absolute;}
  160. *html .popup_block {position: absolute;}
  161. #fade {
  162. display:none;
  163. position:fixed;
  164. left:0px;
  165. top:0px;
  166. width:100%;
  167. height:100%;
  168. z-index:9999;
  169. background:#000; /* change to #fff for solid white */
  170. opacity:0.5; /* change to opacity:1; */
  171. }
  172.  
  173.  
  174. #s-m-t-tooltip{
  175. font-size:9px;
  176. position:absolute;
  177. margin-top: 15px;
  178. letter-spacing:1px;
  179. z-index:9999;
  180. background:white;
  181. color:{color:text};
  182. text-transform:uppercase;
  183. padding:2px 3px 2px 3px;
  184. -webkit-transition:all 0.3s;
  185. -moz-transition:all 0.3s;
  186. -ms-transition:all 0.3s;
  187. -o-transition:all 0.3s;
  188. transition:all 0.3s;
  189. }
  190.  
  191.  
  192.  
  193. /*scrollbar*/
  194. ::-webkit-scrollbar{height: 5px;
  195. width: 4px;
  196. -webkit-border-radius: 0px;
  197. background-color:{color:background}}
  198. ::-webkit-scrollbar-thumb{background-color:{color:background};
  199. border:1px solid {color:scrollbar};}
  200. ::-webkit-scrollbar-track{background-color:{color:background};}
  201.  
  202.  
  203.  
  204.  
  205.  
  206. #text {margin-bottom:100px;
  207. margin-top:5px;
  208. text-transform:uppercase;
  209. font-size:7px;
  210. letter-spacing:2px;
  211. text-align:center;}
  212.  
  213.  
  214. /*main structure*/
  215. blockquote {padding:5px 0 5px 30px;
  216. border-left:1px solid {color:link};margin:10px 30px;
  217. }
  218. .caption blockquote {margin:5px 0;
  219. padding:0;
  220. border:none;}
  221.  
  222. body {
  223. background-attachment:fixed;
  224. background-image: url('{image:Background}');
  225. background-repeat:no-repeat;
  226. color:{color:text};
  227. font-family:baskerville;
  228. font-size:18px;
  229. text-align:justify;
  230. margin:0;
  231. line-height:18px;}
  232.  
  233. a {color:{color:link};
  234. border-bottom:1px solid transparent;
  235. text-decoration:none;
  236. -webkit-transition:all 0.8s;
  237. -moz-transition:all 0.8s;
  238. -ms-transition:all 0.8s;
  239. -o-transition:all 0.8s;
  240. transition:all 0.8s; }
  241.  
  242. a:hover {
  243. border-bottom:1px solid #0a9288;
  244. -webkit-transition:all 0.8s;
  245. -moz-transition:all 0.8s;
  246. -ms-transition:all 0.8s;
  247. -o-transition:all 0.8s;
  248. transition:all 0.8s; }
  249.  
  250. img{
  251. border:none;
  252. text-decoration:none}
  253.  
  254. b, strong {
  255. color:{color:title}}
  256. i, em {
  257. color:{color:text}}
  258. p {
  259. margin-top:5px;
  260. margin-bottom:5px}
  261. ol {
  262. list-style:normal;}
  263. ul {
  264. list-style:square;}
  265.  
  266. small {
  267. font-size:18px;}
  268.  
  269. big {
  270. font-size:20px;}
  271.  
  272.  
  273.  
  274.  
  275. #title {font-size:12px;
  276. line-height:18px;
  277. margin-bottom:20px;
  278. font-style:italic;
  279. text-align:center;
  280. letter-spacing:3px;
  281. color:{color:title};}
  282. #title a {color:{color:title};}
  283.  
  284.  
  285.  
  286.  
  287. /*header*/
  288. #headers {
  289. margin-top:100px;
  290. width:175px;
  291. margin-left:-275px;
  292. position:fixed;
  293. }
  294.  
  295.  
  296. #bat img {width:125px;
  297. padding:24px;
  298. border:1px solid transparent;
  299. -webkit-transition:all 0.8s;
  300. -moz-transition:all 0.8s;
  301. -ms-transition:all 0.8s;
  302. -o-transition:all 0.8s;
  303. transition:all 0.8s;
  304. }
  305. #bat a {border:none}
  306. {block:IfHoverBorders}
  307. #bat img:hover {border:1px solid {color:links};
  308. -webkit-transition:all 0.8s;
  309. -moz-transition:all 0.8s;
  310. -ms-transition:all 0.8s;
  311. -o-transition:all 0.8s;
  312. transition:all 0.8s;}
  313. {/block:IfHoverBorders}
  314.  
  315. #blogt {font-size:12px;
  316. margin-top:15px;
  317. margin-left:350px;
  318. text-align:center;
  319. font-family:zapfino;
  320. letter-spacing:10px;
  321. font-style: ;}
  322. #blogt a {color:{color:blog title};}
  323.  
  324.  
  325. #standardlinks {
  326. font-size:35px;
  327. margin-top:100px;
  328. margin-left:200px;
  329. letter-spacing:2px;
  330. line-height:16px;
  331. text-align:center;
  332. text-transform:uppercase;
  333.  
  334. }
  335.  
  336.  
  337. #standardlinks a {
  338. border:none;
  339. padding:3px 4px;
  340. text-align:center;
  341. text-decoration:none;
  342. -webkit-transition:all 0.8s;
  343. -moz-transition:all 0.8s;
  344. -ms-transition:all 0.8s;
  345. -o-transition:all 0.8s;
  346. transition:all 0.8s;
  347. }
  348. #standardlinks a:hover {
  349. background:{color:link};
  350. color:{color:background};
  351. -webkit-transition:all 0.8s;
  352. -moz-transition:all 0.8s;
  353. -ms-transition:all 0.8s;
  354. -o-transition:all 0.8s;
  355. transition:all 0.8s;}
  356.  
  357. #description {
  358. font-size:8px;
  359. margin-top:15px;
  360. margin-left:350px;
  361. text-align:justify;
  362. }
  363.  
  364.  
  365. /*pagination*/
  366. #pagination {
  367. text-align:center;
  368. margin-top:50px;
  369. font-size:8px;
  370. text-transform:uppercase;
  371. letter-spacing:2px;
  372. line-height:16px;
  373. }
  374. #pagination a {
  375. margin:0 15px;
  376. }
  377.  
  378. /*container*/
  379. #con {
  380. left:50%;
  381. margin-left:-225px;
  382. position:absolute;
  383. }
  384.  
  385.  
  386.  
  387. /*posts*/
  388.  
  389. #entries {
  390. margin-top:10px;
  391. margin-bottom:20px;
  392. margin-left:740px;
  393. position: fixed;
  394. height: 400px;
  395. overflow-x: hidden;
  396. background-color: #;
  397. overflow-y: auto;
  398. width: 400px;
  399. padding:40px;
  400. border: 3px dotted #;
  401. background: ;
  402. top: 200px;
  403. z-index: 999;
  404. }
  405.  
  406.  
  407.  
  408. .posts {
  409. width:400px;
  410. {block:IndexPage}
  411. margin-bottom:150px;
  412. {/block:IndexPage}
  413. {block:PermalinkPage}
  414. margin-bottom:50px;
  415. {/block:PermalinkPage}
  416. }
  417.  
  418. /*images*/
  419.  
  420. .posts img {
  421. max-width:350px;
  422. display:block;
  423. padding:24px;
  424. border:1px solid transparent;
  425. -webkit-transition:all 0.8s;
  426. -moz-transition:all 0.8s;
  427. -ms-transition:all 0.8s;
  428. -o-transition:all 0.8s;
  429. transition:all 0.8s;
  430. }
  431. {block:IfHoverBorders}
  432. .posts img:hover {border:1px solid {color:links};
  433. -webkit-transition:all 0.8s;
  434. -moz-transition:all 0.8s;
  435. -ms-transition:all 0.8s;
  436. -o-transition:all 0.8s;
  437. transition:all 0.8s;}
  438. {/block:IfHoverBorders}
  439. .photoset {
  440. display:block;
  441. padding:24px;
  442. border:1px solid transparent;
  443. -webkit-transition:all 0.8s;
  444. -moz-transition:all 0.8s;
  445. -ms-transition:all 0.8s;
  446. -o-transition:all 0.8s;
  447. transition:all 0.8s;
  448. }
  449. {block:IfHoverBorders}
  450. .photoset:hover {border:1px solid {color:links};
  451. -webkit-transition:all 0.8s;
  452. -moz-transition:all 0.8s;
  453. -ms-transition:all 0.8s;
  454. -o-transition:all 0.8s;
  455. transition:all 0.8s;}
  456. {/block:IfHoverBorders}
  457. /*quote*/
  458. #titlequote{
  459. font-size:14px;
  460. line-height:18px;
  461. margin:0 25px;
  462. text-align:center;
  463. font-style:italic;
  464. letter-spacing:1px;
  465. color:{color:title};
  466. }
  467.  
  468. #source {text-align:center;
  469. margin:0 25px;
  470. font-size:8px;
  471. text-transform:uppercase;
  472. letter-spacing:2px;
  473. line-height:16px;
  474. padding-top:10px;}
  475.  
  476. .posts li, .posts blockquote {max-width: 100%;}
  477. .caption img{max-width:300px;}
  478. .caption {width:400px;
  479. margin:10px 25px 25px 25px;
  480. text-transform:none;
  481. }
  482.  
  483.  
  484.  
  485.  
  486. /*audio*/
  487.  
  488.  
  489. .tumblr_audio_player {
  490. border: none;
  491. padding: 0px;
  492. margin: 0px;
  493. height:50px;
  494. width:215px;
  495. }
  496.  
  497. .player {
  498. overflow:hidden;
  499. text-align:center;
  500. height:50px;}
  501.  
  502.  
  503. .audio_info {
  504. font-size:12px;
  505. letter-spacing:3px;
  506. font-style:italic;
  507. padding-bottom:12px;
  508. text-align:center
  509. }
  510.  
  511.  
  512.  
  513.  
  514. /*asks*/
  515. .q {
  516. text-align:center;
  517. margin:25px;
  518. }
  519. .as {font-size:8px;
  520. text-transform:uppercase;
  521. letter-spacing:2px;
  522. line-height:16px;}
  523. .as a {padding:0;}
  524. .a {
  525. padding-top:10px;
  526. margin:0 25px;
  527. text-align:justify}
  528.  
  529.  
  530.  
  531.  
  532.  
  533. .chat {margin:0 25px;}
  534.  
  535. .chat ol {
  536. padding:0;
  537. line-height:180%;
  538. list-style:none;
  539. }
  540.  
  541. .line.odd {border-bottom:1px solid {color:link};
  542. padding:5px;
  543. }
  544. .line.even {
  545. padding:5px;
  546. }
  547.  
  548. .label {font-weight:bold;
  549. padding-right:1px;
  550. letter-spacing:1px;
  551. text-transform:uppercase;
  552. color:{color:title};
  553. }
  554.  
  555. /*text*/
  556. .texta {margin:0 25px;}
  557.  
  558.  
  559.  
  560. /*permalink and notes*/
  561.  
  562.  
  563. #permalink {
  564. margin-top:10px;
  565. font-size:8px;
  566. letter-spacing:1px;
  567. text-align:center;
  568. text-transform:uppercase;
  569.  
  570. }
  571. #permalink a {margin:0 5px;
  572. }
  573.  
  574.  
  575. .tags {{block:ifNotShowTags}
  576. {block:IndexPage}
  577. display:none;
  578. {/block:IndexPage}
  579. {/block:ifNotShowTags}
  580. word-break:break-all;
  581. }
  582.  
  583.  
  584.  
  585. .pagenotes {
  586. {block:IndexPage}
  587. display: none!important;
  588. {/block:IndexPage}
  589. {block:PermalinkPage}
  590. width:400px;
  591. {/block:PermalinkPage}
  592. text-align:left;
  593.  
  594. }
  595. .pagenotes img {
  596. display:none!important;}
  597. .pagenotes li {
  598. list-style-type:none;
  599. padding:5px 0px;
  600. text-align:left;
  601. margin:0 0 0 -40px;
  602. font-size:9px;
  603. text-transform:uppercase;
  604. }
  605. .t {
  606. font-size:12px;
  607. font-weight:bold;
  608. letter-spacing:1px;
  609. color:{color:title};
  610. text-transform:uppercase;}
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617. {CustomCSS}
  618.  
  619.  
  620. </style>
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629. </head>
  630.  
  631. <body>
  632.  
  633.  
  634.  
  635. </div>
  636.  
  637.  
  638. <div id="con">
  639.  
  640. <div id="headers">
  641. </div>
  642. {/block:IfShowSidebarImage}
  643. {block:IfShowTitle}
  644. <div id="blogt"><a href="/">{Title}</a></div>
  645. {/block:IfShowTitle}
  646. <div id="standardlinks">
  647. <a href="/">✘</a>
  648. <a href="#?w=300" rel="box2" class="poplight">✘</a>
  649. <a href="#?w=300" rel="box3" class="poplight">✘</a>
  650. <a href="/about">✘</a>
  651. </div>
  652. <div id="description">{Description}</div>
  653.  
  654.  
  655.  
  656.  
  657.  
  658. </div>
  659.  
  660.  
  661.  
  662.  
  663. <div id="entries">
  664.  
  665. {block:Posts}
  666. <div class="posts">
  667.  
  668.  
  669. {block:Quote}
  670.  
  671.  
  672. <div id="titlequote">{Quote}</div>
  673. {block:Source}<div id="source">{Source}</div>{/block:Source}
  674. {/block:Quote}
  675.  
  676.  
  677.  
  678. {block:Text}
  679.  
  680. {block:Title}
  681. <div id="title">{Title}</div>{/block:Title}
  682. <div class="texta">{Body}</div>
  683.  
  684.  
  685. {/block:Text}
  686.  
  687. {block:Link}
  688.  
  689. <div id="title"><a href="{URL}">{Name}</a></div>
  690. {block:Description}<div class="texta">{Description}</div>{/block:Description}
  691.  
  692. {/block:Link}
  693.  
  694. {block:Chat}
  695. {block:Title}
  696. <h1>{Title}</h1>
  697. {/block:Title}
  698. <div class="chat">
  699. <ol>{block:Lines}
  700. <li class="line {Alt}">
  701. {block:Label}
  702. <span class="label">
  703. {Label}</span>
  704. {/block:Label}{Line}</li>
  705. {/block:Lines}
  706. </ol></div>
  707. {/block:Chat}
  708.  
  709. {block:Photo}
  710. <center>{LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  711.  
  712. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  713.  
  714.  
  715. {/block:Photo}
  716.  
  717. {block:Photoset}
  718. <div class="photoset">
  719. <div style="margin:-25px 0 -25px -25px">
  720. {Photoset-400}
  721. </div>
  722. </div>
  723. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  724.  
  725.  
  726. {/block:Photoset}
  727.  
  728. {block:Video}
  729. {Video-400}
  730. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  731. {/block:Video}
  732.  
  733.  
  734.  
  735. {block:Audio}
  736. <div class="audio_info">{block:TrackName}{TrackName}{/block:TrackName}<br>{block:Artist}<div style="font-size:8px;text-transform:uppercase;letter-spacing:2px;line-height:16px;font-style:normal;">{Artist}</div>{/block:Artist}</div>
  737. {block:AudioPlayer}
  738. <div class="player">{AudioPlayerwhite}</div>
  739. {/block:AudioPlayer}
  740. {/block:Audio}
  741.  
  742.  
  743.  
  744. {block:Answer}
  745. <div class="q">
  746. {Question}
  747. <div class="as">asked by {Asker}</div>
  748. </div>
  749.  
  750. <div class="a">{Answer}</div>
  751.  
  752. {/block:Answer}
  753.  
  754.  
  755.  
  756. {block:Date}
  757.  
  758. <div id="permalink">
  759.  
  760. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  761. <a href="{Permalink}" style="font-weight:bold">{12Hour}:{Minutes} {AmPm}</a>{block:NoteCount}<a href="{Permalink}">+ {NoteCount}</a>{/block:NoteCount}
  762. {block:PermalinkPage}
  763. {block:ContentSource}
  764. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  765. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  766. {/block:SourceLogo}
  767. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  768. {/block:ContentSource}
  769. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} / <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  770. {/block:PermalinkPage}
  771.  
  772. </div>
  773. {/block:Date}
  774.  
  775.  
  776.  
  777. </div>
  778.  
  779.  
  780.  
  781. {block:PostNotes}
  782. <div class="pagenotes">
  783. {block:NoteCount}<div class="t">Notes</div>{/block:NoteCount}
  784. {PostNotes}
  785. </div>
  786. {/block:PostNotes}
  787.  
  788.  
  789. {/block:Posts}
  790.  
  791.  
  792. {block:Pagination}
  793. <div id="pagination">
  794. {block:PreviousPage}
  795. <a href="{PreviousPage}">< PREVIOUS PAGE</a>
  796. {/block:PreviousPage}
  797. {block:NextPage}
  798. <a href="{NextPage}">NEXT PAGE ></a>
  799. {/block:NextPage}
  800. </div>
  801. {/block:Pagination}
  802.  
  803. <div id="ocounter">
  804.  
  805. </div>
  806.  
  807.  
  808. <div id="text">
  809. </div>
  810.  
  811. </div>
  812.  
  813.  
  814.  
  815. </body>
  816. </div>
  817. <div id="box2" class="popup_block">
  818. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  819. </div>
  820. <div id="box3" class="popup_block">
  821. <div id="header" style="font-size: 10px; text-align: center; font-family: 'fauna one'; text-transform: uppercase; letter-spacing: 4px; color: #ffffff; padding: 3px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #decbcb; margin-left: -5px; margin-bottom: 10px; line-height: 20px;">
  822. <div id="header" style="font-size: 9px; font-family: ruda; padding: 3px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #d43b9c; margin-left: -5px; margin-bottom: 10px;"><span class="header1" style="padding: 2px 6px; background-color: #a2c7a6;">✔THINGS ACCEPTABLE:</span></div>
  823. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✔ &nbsp;Thread with any fandom that I know of.</p>
  824. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✔ &nbsp;OCs, doppelgangers, etc. (within reason; NO GODMODDING)</p>
  825. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✔ &nbsp;Late replies- take your time!</p>
  826. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✔ &nbsp;Shipping- Long story short, we can talk about it and such.</p>
  827. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✔ &nbsp;Messages- Memes, plots, venting, anything and everything!</p>
  828. <div id="header" style="color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-transform: none; padding: 3px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #d43b9c; margin-left: -5px; margin-bottom: 10px;"><span class="header2" style="padding: 2px 6px; background-color: #e67979;"><span style="text-align: justify; font-size: 11px; line-height: normal; background-color: #ffffff;"></span><span style="font-size: 11px; letter-spacing: 4px; line-height: 20px; text-transform: uppercase;">✘ BIG NO NO:</span></span></div>
  829. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✘ No hate- I try my hardest to be nice and I request some respect, please and thank you.</p>
  830. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✘ NSFW, smutting, lemon, etc. (May change in the future but for now, NOPE)</p>
  831. <p style="margin-top: 5px; margin-bottom: 5px; color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">✘ Incorrect grammar and spelling- I would never demand that you have it down but I would love if you could please try your very best! I understand English is not everyone&rsquo;s 1st language!&nbsp;</p>
  832. <div id="header" style="font-family: ruda; font-size: 11px; padding: 3px; border-bottom-width: 1px; border-bottom-style: dashed; border-bottom-color: #d43b9c; margin-left: -5px; margin-bottom: 10px;"><span class="header1" style="padding: 2px 6px; background-color: #a2c7a6;">THINGS YOU SHOULD KNOW:</span></div>
  833. <div style="color: #000000; font-family: Eurostile; font-size: 9px; letter-spacing: normal; line-height: 18px; text-align: justify; text-transform: none;">
  834. <p style="margin-top: 5px; margin-bottom: 5px; line-height: 19.6000003814697px; text-align: start;">♕ I do have the rights to ships! If you are not prepared to see ships that you wouldn&rsquo;t like then&nbsp;<strong>PLEASE</strong>&nbsp;do&nbsp;<strong>NOT</strong>click the link below. Thank you!</p>
  835. <p style="margin-top: 5px; margin-bottom: 5px; line-height: 19.6000003814697px; text-align: start;">♕ With that being said, my ships will be stated here!</p>
  836. <p style="margin-top: 5px; margin-bottom: 5px; line-height: 19.6000003814697px; text-align: start;">♕ The mun is a terrible anxious person and will go out of their way to avoid being annoying. So if I follow you and you never hear from me, I am terribly sorry. This also means I compliment in tags a lot and pray that you like me. I also apologize a lot as well.</p>
  837. <p style="margin-top: 5px; margin-bottom: 5px; line-height: 19.6000003814697px; text-align: start;"></p>
  838. </div>
  839. <div id="box4" class="popup_block">
  840. <p>{The basic Information you should know }</p>
  841. <ul>
  842. <li><span style="line-height: 1.4;">I track <strong>xxki</strong></span></li>
  843. <li><span style="line-height: 1.4;">My OOC tag will be <strong>outofsnow</strong></span></li>
  844. <li><span style="line-height: 1.4;">I accept any M!As&mdash; although, I might reject some if I&rsquo;m not in the&nbsp;</span></li>
  845. <li><span style="line-height: 1.4;">mood for it or I just find it difficult to do.&nbsp;</span></li>
  846. <li><span style="line-height: 1.4;">I am always available to roleplay, so don&rsquo;t be shy!&nbsp;</span></li>
  847. <li><span style="line-height: 1.4;">Do not be shy to come into my ask box just to ask for a roleplay,</span></li>
  848. <li><span style="line-height: 1.4;">remind me of our thread, or basically anything.&nbsp;</span></li>
  849. <li><span style="line-height: 1.4;">The mun does have a personal</span></li>
  850. <li><span style="line-height: 1.4;">Icons are mine&mdash; please do not steal!</span></li>
  851. </ul>
  852. <p><strong>{</strong> Roleplay Style<strong> }</strong></p>
  853. <ul>
  854. <li><span style="line-height: 1.4;">I roleplay with anyone!&nbsp;</span></li>
  855. <li><span style="line-height: 1.4;">I mainly roleplay with anyone of any fandom.&nbsp;</span></li>
  856. <li><span style="line-height: 1.4;">I may not know your fandom so please be patient with me if I mess things up. You are always welcome to message me and explain my fault(s).</span></li>
  857. <li><span style="line-height: 1.4;">That also includes: OCs, dopplegangers, AU Universes, and/or genderbends</span></li>
  858. <li><span style="line-height: 1.4;">I find one-liners annoying, yet I have learned to enjoy them.</span></li>
  859. <li><span style="line-height: 1.4;">Semi-paras are also welcomed as well as long threads, AUs, Angst, fluff, and ect.!</span></li>
  860. <li><span style="line-height: 1.4;">I understand that most people don&rsquo;t like OCs and how they are just there sometimes. I do. So if you wish to RP the two, Serah and your character just meeting, that is totally fine with me.</span></li>
  861. <li><span style="line-height: 1.4;">I am a horrendous forgetful idiot. I might end up forgetting to reply to your thread so please remind me, I don&rsquo;t bite I swear!</span></li>
  862. </ul>
  863. <p><strong>{</strong> Portraying my Character <strong>}</strong></p>
  864. <p><em><strong>Here comes the disclaimers and other stuff that comes&nbsp;</strong></em></p>
  865. <p><em><strong>along with being an OC</strong></em></p>
  866. <ul>
  867. <li><span style="line-height: 1.4;">Yes, my character is an OC.&nbsp;</span></li>
  868. <li><span style="line-height: 1.4;">I do my very best to avoid god-modding and being a Mary Sue, if you ever see such on my blog, please inform me in a polite manner!</span></li>
  869. <li><span style="line-height: 1.4;">And as for Anon hate, it will not be tolerated here, period.</span></li>
  870. <li><span style="line-height: 1.4;">I do RP my character as a canon character but I do understand my limits&mdash; that goes back to the Mary Su thing.</span></li>
  871. <li><span style="line-height: 1.4;">My OC was created by me therefore I did not search up a character and create them from that. I am not talented enough to create icons for every facial expression that may be needed in an RP thread therefore I need a face claim. I have found a anime character that I believe to be closely enough related to my OC.&nbsp;</span></li>
  872. <li><span style="line-height: 1.4;">So in short terms: Offical faceclaim for Serah is Suiren Shibazeki</span></li>
  873. </ul>
  874. </div></div></div></div></div></div></div></div></div></div></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement