Advertisement
tsiappoworks

SEAKIDS INTRO

Aug 31st, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  4.  
  5.  
  6. <!----------------------POPUP_BLOCK SCRIPT BELOW-------------------------->
  7. <script type="text/javascript"
  8. src="https://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, .popup_block2').fadeOut(function() {
  32. $('#fade, a.close').remove(); //fade them both out
  33. });
  34. return false;
  35. });
  36. });
  37. </script>
  38. <!-------------------- VERSES SCRIPT BELOW -------------------->
  39. <script src="http://static.tumblr.com/dxh5xq2/v6Gn8ju1e/tabs.js"></script>
  40.  
  41. <title>{Title}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
  42. <link rel="shortcut icon" href="" />
  43. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  44. <link rel="shortcut icon" href="{Favicon}" />
  45.  
  46. <meta name="color:background" content="#ffffff">
  47. <meta name="color:Accent" content="#99869d" />
  48. <meta name="color:Accent2" content="#665368" />
  49. <meta name="color:Accent3" content="#ffffe6" />
  50. <meta name="color:body font" content="#827089" />
  51. <meta name="color:post backdrop" content="#c5b6bb">
  52.  
  53. <script type="text/javascript" src="http://static.tumblr.com/86jccts/wpsmuemne/hoverqtip.js"></script>
  54.  
  55. <style type="text/css">
  56. /*---------------------BODY--------------------*/
  57. ::-webkit-scrollbar-thumb{
  58. background-color:{color:accent2};
  59. height:auto;
  60. }
  61.  
  62. ::-webkit-scrollbar {
  63. background-color:transparent;
  64. height:auto;
  65. width:4px;
  66. }
  67.  
  68. ::-webkit-scrollbar:horizontal {
  69. background-color:transparent;
  70. height:4px;
  71. width:auto;}
  72.  
  73.  
  74. hr {
  75. border: 0;
  76. height: 1px;
  77. background-image: linear-gradient(to right, rgba(185, 210, 220, 0), rgba(48, 101, 120, 0.75), rgba(185, 210, 220, 0));
  78. }
  79.  
  80. h1 {
  81. font-weight:normal;
  82. font-size:22px;
  83. text-align:center;
  84. font-style:normal;
  85. line-height:100%;
  86. letter-spacing:1px;
  87. text-transform:normal;
  88. color:{color:accent2};
  89. font-family: 'Oswald', sans-serif;
  90. }
  91.  
  92. h2 {
  93. font-size:26px;
  94. text-align:center;
  95. line-height:100%;
  96. letter-spacing:-0.5px;
  97. color:{color:accent2};
  98. font-weight:bold;
  99. padding:5px;
  100. font-family: 'Oswald', sans-serif;
  101. }
  102.  
  103. body {
  104. margin: 0;
  105. color:{font:body font};
  106. background-color:{color:background};
  107. overflow-y:hidden;
  108. font-size:11px;
  109. line-height:120%;
  110. word-wrap: break-word;
  111. font-family:Calibri, helvetica, arial, sans-serif;
  112. }
  113.  
  114. pre {
  115. white-space: pre-wrap;
  116. white-space: -moz-pre-wrap;
  117. white-space: -pre-wrap;
  118. white-space: -o-pre-wrap;
  119. word-wrap: break-word;
  120. }
  121.  
  122. small,sub,sup {
  123. font-size:12px;
  124. font-family: calibri,helvetica,arial,sans-serif;
  125. }
  126.  
  127. b,strong {
  128. color:{color:accent2};
  129. font-size:15px;
  130. font-family: 'Oswald', sans-serif;
  131. }
  132.  
  133. em,i {
  134. color:{color:accent2};
  135. font-family: 'Oswald', sans-serif;
  136. }
  137.  
  138. s,strike {
  139. color:{color:accent2};
  140. }
  141.  
  142. u,underline {
  143. color:{color:accent2};
  144. }
  145.  
  146. a {
  147. text-decoration:none;
  148. outline:none;
  149. -moz-outline-style:none;
  150. color:{color:accent2};
  151. -moz-transition-duration:0.5s;
  152. -webkit-transition-duration:0.5s;
  153. -o-transition-duration:0.5s;
  154. }
  155.  
  156. a:hover {
  157. outline:none;
  158. -moz-outline-style:none;
  159. color:{color:accent3};
  160. }
  161.  
  162. img{border:0; max-width:100%;max-height:auto;}
  163.  
  164. .fancytitle {
  165. font-size:11px;
  166. font-family: 'Oswald', sans-serif;
  167. padding:2px 4px;
  168. border:2px solid {color:page bg};
  169. text-align:center;
  170. margin-bottom:5px;
  171. background-image:url('http://static.tumblr.com/dl4aazm/4QGosggp7/selectiondarkblue.png');
  172. background-repeat:no-repeat;
  173. background-position: top center;
  174. color:#f9fcfc;
  175. }
  176.  
  177.  
  178. /*------------------- MAIN CONTENT STUFF ------------------*/
  179.  
  180. #title{font-size:20px;line-height:25px;}
  181.  
  182. #content {
  183. position:absolute;
  184. left:0px;
  185. z-index:990;
  186. width:800px;
  187. height:100%;
  188. padding:0px;
  189. overflow-y:auto;
  190. color:{color:Body Font};
  191. background-color:{color:post backdrop};
  192. padding:10px 0px;
  193. }
  194.  
  195. blockquote {
  196. padding:2px 5px 2px 10px;
  197. margin:5px;
  198. border-left:1px dotted {color:body font};
  199. }
  200.  
  201. blockquote img {
  202. max-width:100%;}
  203.  
  204. img{
  205. border:0px;
  206. max-width:100%;
  207. }
  208.  
  209. /*----------------------------- POSTS ------------------------*/
  210. #content #posts {
  211. width:500px;
  212. background-color:#fff;
  213. margin:10px auto 50px;
  214. padding: 10px 10px 6px;
  215. border:5px solid {color:post backdrop};
  216. outline:1px dotted #fff;
  217. }
  218.  
  219. #content #posts .title {
  220. font-size:22px;
  221. line-height:25px;
  222. font-family: 'Oswald', sans-serif;
  223. letter-spacing:1px;
  224. }
  225.  
  226. #content #posts .text {
  227. font-family: Calibri, helvetica, arial, sans-serif;
  228. font-size:12px;
  229. font-weight:300;
  230. line-height:140%;
  231. }
  232.  
  233. .text ul li{
  234. list-style-type:circle;
  235. }
  236.  
  237. .asker{
  238. position:relative;
  239. float:right;
  240. margin-top:-6px;
  241. padding:2px 3px;
  242. text-transform:uppercase;
  243. }
  244.  
  245. .asker a{
  246. width:100%;
  247. -moz-border-radius: 15px;
  248. -webkit-border-radius: 15px;
  249. background-color:{color:body font};
  250. color:white;
  251. text-align:center;
  252. font-size:14px;
  253. }
  254.  
  255. /*-------------AUDIO POSTS------------*/
  256.  
  257. #audioplayer {
  258. width:30px;
  259. height:30px;
  260. overflow:hidden;
  261. position:absolute;
  262. margin-left:40px;
  263. margin-top:45px;
  264. margin-bottom:45px;
  265. opacity: 0.8;
  266. filter:alpha(opacity=80);
  267. -moz-opacity: 0.8;
  268. -khtml-opacity: 0.8;
  269. }
  270.  
  271. #albumart { float:left; margin:0px 7px;}
  272.  
  273. /*--------------------PERMALINK AND OTHER DETAILS---------------------*/
  274. #details {
  275. font-family: Calibri, helvetica, arial, sans-serif;
  276. text-align:center;
  277. width:500px;
  278. text-transform:uppercase;
  279. font-size:10px;
  280. font-style:none;
  281. margin-left:auto;
  282. margin-right:auto;
  283. background-color:#fff;
  284. color:{color:accent2};
  285. padding:2px 2px;
  286. }
  287.  
  288. #details a{
  289. text-decoration:none;
  290. color:{color:accent};
  291. -webkit-transition: all 0.3s ease-in-out;
  292. -moz-transition: all 0.3s ease-in-out;
  293. -ms-transition: all 0.3s ease-in-out;
  294. -transition: all 0.3s ease-in-out;
  295. }
  296.  
  297. #details a:hover{color: {color:accent3};}
  298.  
  299. #notes {
  300. font-family: Calibri, helvetica, arial, sans-serif;
  301. font-size:11px;
  302. color:{color:body font};
  303. }
  304.  
  305. #notes a{
  306. text-decoration:none;
  307. color:{color:accent3};
  308. }
  309.  
  310. /*------------------------CUSTOM TOOLTIP--------------------------*/
  311. div#qTip {
  312. background-image:url('http://static.tumblr.com/dl4aazm/4QGosggp7/selectiondarkblue.png');
  313. border:1px solid white;
  314. padding: 5px;
  315. display: none;
  316. text-align: center;
  317. position: absolute;
  318. font-size:13px;
  319. line-height:10px;
  320. z-index: 9999999;
  321. color:#fff;
  322. letter-spacing: 1px;
  323. font-family: 'Oswald', sans-serif;
  324. }
  325.  
  326.  
  327. /*---------------WHOA, NELLY IT'S THE POP-UP MENU!---------------*/
  328. #box1{
  329. text-align:center;
  330. color:{color:body font};
  331. font-family: Calibri, helvetica, arial, sans-serif;
  332. font-size:12px;
  333. }
  334.  
  335. .popup_block{
  336. display:none;
  337. background:#fff;
  338. padding:20px;
  339. float:left;
  340. max-height:400px;
  341. position:fixed;
  342. top:50%;left:50%;
  343. z-index: 99999;
  344. }
  345.  
  346. *html #fade {position: absolute;}
  347. *html .popup_block {position: absolute;}
  348. #fade {
  349. display:none;
  350. position:fixed;
  351. left:0px;
  352. top:0px;
  353. width:100%;
  354. height:100%;
  355. z-index:
  356. 9999;
  357. background-image:url('http://static.tumblr.com/dl4aazm/1BJosgh4d/waves2_pale.png');
  358. }
  359.  
  360. /* ---------------------------- UPDATES ------------------------------*/
  361.  
  362. #updates {
  363. font-size:15px;
  364. font-family:century gothic, arial;
  365. color:{color:accent3};
  366. text-align:center;
  367. padding:10px;
  368. left:850px;
  369. top:50px;
  370. z-index:10;
  371. position:fixed;
  372. overflow-x:hidden;
  373. overflow-y:auto;
  374. background-color:rgba(255,255,255,0);
  375. width:450px;
  376. }
  377.  
  378. #updates a{
  379. color:#ebe1e0;
  380. }
  381.  
  382. table#nav{
  383. border-spacing:5px;
  384. }
  385.  
  386. #navi{
  387. display:block;
  388. text-align:center;
  389. width:280px;
  390. font-size:12px;
  391. float:left;
  392. margin-left:15px;
  393. padding:0px 0px 0px 15px;
  394. line-height:210%;
  395. }
  396.  
  397. #navi a{
  398. background-color:#f9cad0;
  399. color:white;
  400. padding:0px 8px;
  401. display:inline-block;
  402. width:80px;
  403. text-align:center;
  404. }
  405.  
  406. #navi2{
  407. margin-top:1px;
  408. display:block;
  409. text-align:center;
  410. width:140px;
  411. font-size:13px;
  412. float:right;
  413. display:inline-block;
  414. line-height:260%;
  415. }
  416.  
  417. #navi2 a{
  418. display:inline-block;
  419. width:50px;
  420. text-align:center;
  421. background-color:#8ccfec;
  422. color:white;
  423. margin-top:10px;
  424. }
  425.  
  426. /* the verses tabs */
  427.  
  428. ul#tabs {
  429. margin-top:-10px;
  430. list-style-type: none;
  431. padding: 0;
  432. text-align: center;
  433. font-size:10px;
  434. letter-spacing:1px;
  435. }
  436.  
  437. ul#tabs li { /*– your inactive / not viewed tabs –*/
  438. display: inline-block;
  439. background-color: transparent;
  440. border: solid 1px #bfccd1;
  441. padding: 4px 12px;
  442. margin-bottom: 4px;
  443. color: #1b1b1b;
  444. cursor: pointer;
  445. }
  446.  
  447. ul#tabs li:hover {
  448. background-color:{color:accent2};
  449. color:white;
  450. }
  451.  
  452. ul#tabs li.active { /*– your active tab –*/
  453. background-color: #0f0f0f;
  454. background-image:url('http://static.tumblr.com/dl4aazm/4QGosggp7/selectiondarkblue.png');
  455. border: 1px solid #bfccd1;
  456. color:white;
  457. }
  458.  
  459. ul#tab {
  460. list-style-type: none;
  461. margin: 0;
  462. padding: 0;
  463. }
  464.  
  465. ul#tab li {
  466. display: none;
  467. }
  468.  
  469. ul#tab li.active {
  470. display: block;
  471. }
  472.  
  473. /*--------------------CREDITS-----------------------*/
  474. #cred
  475. {
  476. position:fixed;
  477. z-index:99;
  478. width: 50px;
  479. height: 18px;
  480. font-family: Arial;
  481. font-size: 7px;
  482. text-transform: uppercase;
  483. text-align: center;
  484. bottom: 10px;
  485. right: 10px;
  486. letter-spacing: 1px;
  487. line-height: 4px;
  488. padding: 10px 3px;
  489. display: block;
  490. color:{color:body font};
  491. background: {color:background};
  492. position: fixed;
  493. }
  494.  
  495. #cred a
  496. {
  497. font-weight: bold;
  498. line-height: 17px;
  499. font-size: 15px;
  500. font-family: 'Oswald', sans-serif;
  501. text-transform: uppercase;
  502. color:{color:body font};
  503. letter-spacing: 6px;
  504. margin-left:5px;
  505. }
  506.  
  507. /*-----------------NAVIGATION---------------*/
  508. #nav{
  509. position:fixed;
  510. z-index:99;
  511. left:850px;
  512. font-size:40px;
  513. width:350px;
  514. }
  515.  
  516. #nav a{color:#fff;
  517. text-shadow:1px 1px {color:post backdrop}, -1px -1px {color:post backdrop}, -1px 1px {color:post backdrop}, 1px -1px {color:post backdrop};
  518. }
  519. #nav a:hover{color:#a1c4dc;}
  520.  
  521. .link_refresh{margin-left:90px;margin-top:230px;}
  522. .link_ask{margin-left:120px;margin-top:30px;}
  523. .link_story1{margin-left:90px;margin-top:30px;}
  524. .link_story2{margin-left:230px;margin-top:-120px;}
  525. .link_guide{margin-left:280px;margin-top:-50px;}
  526. .link_ships{margin-left:330px;margin-top:25px;}
  527.  
  528. /*-------------POPUP NAVI---------------*/
  529. .popupnavlinks {
  530. padding-top:5px;
  531. text-align:center; }
  532.  
  533.  
  534. .popupnavlinks a {
  535. display:inline-block;
  536. width:100px; height:8px;
  537. margin:2px; padding:6px 6px 14px;
  538. text-align:center;
  539. font-family:Calibri, helvetica, arial, sans-serif;
  540. font-size:9px;
  541. text-transform:uppercase;
  542. letter-spacing:1px;
  543. color:white;
  544. background:transparent;
  545. background-image:url(http://static.tumblr.com/dl4aazm/4QGosggp7/selectiondarkblue.png);
  546. border:1px solid {color:background};
  547. }
  548.  
  549.  
  550. .popupnavlinks a:hover {
  551. display:inline-block;
  552. width:100px; margin:2px;
  553. padding:6px 6px 14px;
  554. text-align:center;
  555. font-family:Calibri, helvetica, arial, sans-serif;
  556. font-size:9px;
  557. text-transform:uppercase;
  558. letter-spacing:1px;
  559. color:{color:accent};
  560. background:transparent }
  561.  
  562. {CustomCSS}</style>
  563. </head>
  564. <body>
  565.  
  566. <!------------------------- NAVIGATION HIDDEN -------------------------->
  567.  
  568. <!-- begin updates tab -->
  569.  
  570. <div id="updates">
  571. <div style="width:450px;height:auto;"><img src="http://static.tumblr.com/dl4aazm/lNPost54k/unaharuobg_smol_tiny.png"></div>
  572. <br>
  573. <div style="text-align:center;">
  574. <div id="navi">
  575. ✕ &mdash;&mdash; <b><a href="/">REFRESH</a></b>&nbsp;
  576. ✕ &mdash;&mdash; <b><a href="/ask">MESSAGE</a></b><br>
  577. ✕ &mdash;&mdash; <b><a href="#?w=400" rel="guide" class="poplight">GUIDE</a></b>&nbsp;
  578. ✕ &mdash;&mdash; <b><a href="/rel">FRIENDS</a></b><br>
  579. ✕ &mdash;&mdash; <b><a href="/u">HER STORY</a></b>&nbsp;
  580. ✕ &mdash;&mdash; <b><a href="/h">HIS STORY</a></b><br>
  581.  
  582. </div>
  583. <!------------------------ NAV END ------------------------------>
  584. <div id="navi2">
  585. {block:Pagination}<b><span style="letter-spacing:3px;color:#fff;background-color:#f9cad0;padding:5px 5px 5px 7px;">PAGINATION</span></b>
  586. {block:NextPage}<b><a href="{NextPage}" style="letter-spacing:1.5px;">sink</a></b>{/block:NextPage}
  587. &nbsp;{block:PreviousPage}<b><a href="{PreviousPage}" style="letter-spacing:1.5px;">swim</a></b>{/block:PreviousPage}
  588. </p>{/block:Pagination}
  589. </div>
  590. </div></div></div>
  591.  
  592. <!-- end updates tab -->
  593. <!---------------------- MAIN CONTENT ----------------------->
  594.  
  595. <div id="content">
  596. {block:Posts}
  597. <div id="posts">
  598. <!------------------------ PHOTOS --------------------------->
  599.  
  600. {block:Photo}
  601. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  602. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  603. {/block:Photo}
  604.  
  605. <!------------------------ PHOTOSET -------------------------->
  606.  
  607. {block:Photoset}
  608. {Photoset-500}
  609. {block:Caption}<div class="text">{Caption}</div>{block:Caption}
  610. {/block:Photoset}
  611.  
  612. <!--------------------------- VIDEO ------------------------------>
  613.  
  614. {block:Video}
  615. {Video-500}
  616. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  617. {/block:Video}
  618.  
  619. <!-------------------------- AUDIO ------------------------------>
  620.  
  621. {block:Audio}
  622. <div id="audioplayer">{AudioPlayerWhite}</div>
  623. <div id="albumart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div>
  624. {block:TrackName}<b>{TrackName}</b>{/block:TrackName}<br/>
  625. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  626. {block:Album}Album: {Album}{/block:Album}<br/>
  627. {PlayCountWithLabel}
  628. {block:Caption}<br/><br/><br/><div class="text">{Caption}</div>{/block:Caption}
  629. {/block:Audio}
  630.  
  631. <!-------------------------- QUOTE ------------------------------>
  632.  
  633. {block:Quote}
  634. <div class="title" style="width:400px; margin-left:auto; margin-right:auto; line-height:20px;">“{Quote}”</div>
  635. {block:Source}<br><div class="text" style="text-align:right;">— {Source}</div>{/block:Source}
  636. {/block:Quote}
  637.  
  638. <!---------------------------- TEXT ------------------------------>
  639.  
  640. {block:Text}
  641. {block:Title}<div class="title">{Title}</div>{/block:Title}
  642. <div class="text">{Body}</div>
  643. {/block:Text}
  644.  
  645. <!--------------------------- ANSWER ------------------------------>
  646.  
  647. {block:Answer}
  648.  
  649. <div class="title" style="font-size:12px; background-color:{color:background}; padding:3px 5px;padding:5px 10px;border-top:1px dotted {color:body font};-moz-border-radius: 15px;-webkit-border-radius: 15px;border-bottom:1px dotted {color:body font};">{Question}</div><div class="asker">{Asker}</div><br><br>
  650.  
  651. <div class="text">{Answer}</div>
  652. {/block:Answer}
  653.  
  654. <!------------------------- CHAT ------------------------------>
  655.  
  656. {block:Chat}
  657. {block:Title}<div class="title">{Title}</div>{/block:Title}
  658. <div class="text">{block:Lines}
  659. {block:Label}<strong>{Label}</strong>{/block:Label}
  660. {Line}<br>
  661. {/block:Lines}</div>
  662. {/block:Chat}
  663.  
  664. <!-------------------------- LINK --------------------------->
  665.  
  666. {block:Link}
  667. <div class="title"><a href="{URL}">{Name}</a></div>
  668. {block:Description}<div class="text">{Description}</div>{/block:Description}
  669. {/block:Link}
  670.  
  671.  
  672. <div id="details" style="border-top:1px dotted {color:accent2};">
  673. <a href="{Permalink}">{DayOFMonthWithZero} {ShortMonth} {Year}</a> | <a href="{Permalink}">{NoteCount}</a> {block:RebloggedFrom} | <a href="{ReblogParentURL}" target="_blank">via</a>{/block:RebloggedFrom} {block:ContentSource} | <a href="{SourceURL}">source</a>{/block:ContentSource} | <a href="{ReblogURL}" target="_blank" class="details">↺</a>
  674. {block:HasTags}<div id="tags" style="border-top:1px solid {color:post backdrop};width:406px;margin-left:auto;margin-right:auto;text-transform:none;">{block:Tags}&nbsp;&nbsp;#<a href="{TagURL}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}</div></div>
  675.  
  676. {/block:Posts}
  677. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  678.  
  679. </div>
  680. <!-------------------------- ENDS --------------------------->
  681. </div>
  682.  
  683. </div></div>
  684.  
  685. </body>
  686.  
  687. <!-------HERE BEGIN THE POPUP BOXES------->
  688. <div id="guide" class="popup_block" style="font-family:calibri, helvetica, arial, sans-serif;font-size: 11px;line-height:15px;overflow:auto;color:{color:body font}">
  689.  
  690. <h1 style="text-align:center; background-image:url('http://static.tumblr.com/dl4aazm/4QGosggp7/selectiondarkblue.png');border:1px solid {color:page bg};color:white;letter-spacing:2px;padding:5px 0px;height:20px;font-size:20px;">GUIDELINES</h1>
  691.  
  692. <p style="font-family:calibri,helvetica,arial,sans-serif;">Welcome! I'm Che and this is a dual-muse blog for half-siblings Nobori Una and Otani Haruo. Una has been around on tumblr in some form or another since 2012, but this incarnaton of the blog is Haruo's first official appearance.
  693.  
  694. <p style="font-family:calibri,helvetica,arial,sans-serif;">I’m going to keep this simple and assume you know how these things work. No godmodding, try your best to use proper grammar, etc. I’m not a stickler for length, but at least give me enough to work with. If I give you a few paragraphs, don’t leave me with two sentences. That’s not cool.
  695.  
  696. <p style="font-family:calibri,helvetica,arial,sans-serif;;">As a heads up, I’m just going to put it out there that I’m less inclined to roleplay with people who write in purple prose. Nothing personal, but I don’t care for diction/syntax muddling clarity. I also want to make it clear that I <em>want</em> to interact with my followers. It happens a lot that mutuals grow complacent in having each other on the dash without ever actually interacting&mdash;and while that may result in a higher follower count, it does nothing for actual bonding. So, if you follow me, I'd appreciate it if you made an effort to interact with me. I promise you, I'll extend the same courtesy.
  697.  
  698. <p style="font-family:calibri,helvetica,arial,sans-serif;">This blog is multiship. Una and Haruo are currently single in most verses. However, shipping is not my main focus…but I’m still more than willing to give a ship a try. It just needs buildup and it needs to make sense. Nothing instant over here. Non-romantic pre-established relationships are more than welcome, but it's probably best if we talk it out a little first instead of jumping right into things blindly.
  699.  
  700. <p style="font-family:calibri,helvetica,arial,sans-serif;">Obligatory warning: Mun is of age, as are muses in their main verses. Anything NSFW of a sexual nature is probably going to be uncommon, though violence, alcohol, drugs, etc. may appear (depending on who I'm writing with). Don’t worry, I’ll make sure things are tagged.
  701.  
  702. <blockquote><p style="font-family:calibri,helvetica,arial,sans-serif;">I'm willing to play both characters at all points in their timelines, from childhood through adult years. If a sexually explicit thread occurs, please note that it takes place at a point where they are at least eighteen.</blockquote>
  703.  
  704. <h1 style="letter-spacing:2px;text-align:center;padding:2px 5px;font-size:12px;"><b>LAST NOTES</b></h1>
  705.  
  706. <p style="font-family:calibri,helvetica,arial,sans-serif;">If either of them has so much development with a character that playing with a duplicate could be considered disrespectful, I reserve the right to put priority over the original.
  707. <p style="font-family:calibri,helvetica,arial,sans-serif;">I don’t always follow back&mdash;I like a clean dash, so if you post a lot of images/OOC in a short time, I probably won’t follow unless I really like you. If we’re mutuals, you can tag me in a post at any time. If we aren’t, you can still try tagging me in something, but I might not stick with it for very long.
  708.  
  709. </div>
  710. </div></div></div></div></div></div>
  711.  
  712. <div id="cred">theme by<br><a href="#?w=400" rel="credit" class="poplight" title="credit">CHE</a></div>
  713.  
  714. <div id="credit" class="popup_block" style="font-family:calibri, helvetica, arial, sans-serif;font-size: 11.5px;line-height:15px;overflow:auto;color:{color:body font};height:448px;">
  715.  
  716. <div class="fancytitle">credit</div>
  717.  
  718. <p style="font-family:calibri,helvetica,arial,sans-serif;text-align:center;"><small>theme coded by <a href="http://seacrowned.tumblr.com/"><b>che</b></a><br>
  719. with guidance from <a href="http://octomoosey.tumblr.com/"><b>octomoosey</b></a><br>
  720. pop-ups by <a href="http://acuite.tumblr.com/"><b>acuite</b></a><br>
  721.  
  722. </div>
  723. </div></div></div></div></div></div>
  724. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement