Advertisement
Phob

SAYA NOVEMBER 17

Nov 20th, 2017
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.46 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head><title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <!---- this is theme 41 by Hollywhood
  9. please don't remove the credit
  10. thank you
  11. --->
  12.  
  13. <!-- all code tweaks by @nightscaped/@86holic. theft will NOT be tolerated!! -->
  14.  
  15. <script type="text/javascript"
  16. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  17.  
  18. <script>
  19. $(document).ready(function() {
  20. //
  21. $('a.poplight[href^=#]').click(function() {
  22. var popID = $(this).attr('rel'); //Get Popup Name
  23. var popURL = $(this).attr('href'); //Get Popup href to define size
  24. var query= popURL.split('?');
  25. var dim= query[1].split('&');
  26. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  27. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  28. var popMargTop = ($('#' + popID).height() + 80) / 2;
  29. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  30. //Apply Margin to Popup
  31. $('#' + popID).css({
  32. 'margin-top' : -popMargTop,
  33. 'margin-left' : -popMargLeft
  34. });
  35. $('body').append('<div id="fade"></div>');
  36. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  37. return false;
  38. });
  39. $('a.close, #fade').live('click', function() {
  40. $('#fade , .popup_block').fadeOut(function() {
  41. $('#fade, a.close').remove(); //fade them both out
  42. });
  43. return false;
  44. });
  45. });
  46. </script>
  47.  
  48. <script>
  49. $(document).ready(function(){
  50. $("ul#tabs li").click(function(e){
  51. if (!$(this).hasClass("active")) {
  52. var tabNum = $(this).index();
  53. var nthChild = tabNum+1;
  54. $("ul#tabs li.active").removeClass("active");
  55. $(this).addClass("active");
  56. $("ul#tab li.active").removeClass("active");
  57. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  58. }
  59. });
  60. });</script>
  61.  
  62. <script language=JavaScript>
  63. <!--
  64.  
  65. //Disable right mouse click Script
  66. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  67. //For full source code, visit http://www.dynamicdrive.com
  68.  
  69. var message="LMAO U THOUGHT. All coding tweaks are my own work. Please direct all and any questions to my inbox, thanks! // @nightscaped";
  70.  
  71. ///////////////////////////////////
  72. function clickIE4(){
  73. if (event.button==2){
  74. alert(message);
  75. return false;
  76. }
  77. }
  78.  
  79. function clickNS4(e){
  80. if (document.layers||document.getElementById&&!document.all){
  81. if (e.which==2||e.which==3){
  82. alert(message);
  83. return false;
  84. }
  85. }
  86. }
  87.  
  88. if (document.layers){
  89. document.captureEvents(Event.MOUSEDOWN);
  90. document.onmousedown=clickNS4;
  91. }
  92. else if (document.all&&!document.getElementById){
  93. document.onmousedown=clickIE4;
  94. }
  95.  
  96. document.oncontextmenu=new Function("alert(message);return false")
  97.  
  98. // -->
  99. </script>
  100.  
  101. <script language="JavaScript" src="http://dl.dropbox.com/u/3173073/GothicDarkness/qTip.js" type="text/JavaScript"></script>
  102.  
  103. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  104. <script>
  105. $(document).ready(function(){
  106. $("click_body").hide();
  107. $("click").click(function(){
  108. $(this).next("click_body").toggle(1000);
  109. });
  110. });
  111. </script>
  112.  
  113. <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=IM+Fell+English+SC" />
  114.  
  115. <link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
  116.  
  117. <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=La+Belle+Aurore" />
  118.  
  119. <style>
  120. div#qTip {
  121. padding: 3px;
  122. display: none;
  123. text-align: center;
  124. position: absolute;
  125. font-size:7px;
  126. margin-left:10px;
  127. margin-top:-2px;
  128. line-height:9px;
  129. font-family:arial;
  130. z-index: 1000;
  131. border: 1px solid #cacaca;
  132. background-color:#fff;
  133. color: #9b9b9b;
  134. text-transform:uppercase;
  135. letter-spacing: 2px;
  136. }
  137. </style>
  138.  
  139.  
  140.  
  141. <style type="text/css">
  142. #fade { /*--Transparent background layer--*/
  143. display: none; /*--hidden by default--*/
  144. position: fixed; left: 0; top: 0;
  145. width: 100%; height: 100%;
  146. opacity: 0;
  147. z-index: 9999;
  148. }
  149. .popup_block{
  150. display: none; /*--hidden by default--*/
  151. outline: 1px solid #ac7076;
  152. border: 1px solid #ac7076;
  153. outline-offset: 5px;
  154. background-image: url('http://static.tumblr.com/y91lxtf/b8cozh4ne/aipop.png');
  155. color: #e0d4d5;
  156. padding: 10px;
  157. float: left;
  158. font-size: 11px;
  159. line-height: auto;
  160. text-align: center;
  161. position: absolute;
  162. left: 280px;
  163. top: 398px;
  164. height: 460px;
  165. z-index: 99999;
  166. overflow: auto;
  167. box-shadow: 0px 0px 8px #ac7076;
  168.  
  169. }
  170. img.btn_close {
  171. float: right;
  172. margin: -20 -20px 0 0;
  173. }
  174. /*--Making IE6 Understand Fixed Positioning--*/
  175. *html #fade {
  176. position: absolute;
  177. }
  178. *html .popup_block {
  179. position: absolute;
  180. }
  181.  
  182. .popup_content {
  183. margin-top:140px;
  184. float: center;
  185. position: fixed;
  186. padding:5px;
  187. width: 390px;
  188. height:310px;
  189. overflow:auto;
  190. font-weight: bold;
  191. letter-spacing:0;
  192. word-spacing:0;
  193. line-height: 100%;
  194. background: #ac7076;
  195. outline: solid 1px #e0d4d5;
  196. box-shadow: 0px 0px 1px #ac7076, 5px 5px 0px #e0d4d5, -5px -5px 0px #e0d4d5;
  197. }
  198.  
  199. @font-face {font-family: "basicl";src: url('https://dl.dropboxusercontent.com/s/gcupkgtql0xvjge/basicl.ttf?dl=1'); format("truetype");}
  200.  
  201. .popup_block strong {
  202. font-family: basicl;
  203. font-size:18px;
  204. text-transform: uppercase;
  205.  
  206. }
  207.  
  208. .popup_block a {
  209. text-decoration: underline;
  210. text-shadow: none;
  211. }
  212.  
  213. .popup_block a:hover {
  214. text-decoration:underline;}
  215.  
  216. ul#tabs {
  217. list-style-type: none;
  218. padding: 0;
  219. text-align: center;
  220. }
  221. ul#tabs li {
  222. display: inline-block;
  223. border-radius: 5px 0px 5px 0px;
  224. color: #ac7076;
  225. border-radius: 5px;
  226. background: #d0c8c5;
  227. border-right: 2px solid #b19c93;
  228. border-bottom: 2px solid #b19c93;
  229. border-left: 2px solid #e7e0dd;
  230. border-top: 2px solid #e7e0dd;
  231. padding: 4px;
  232. padding-top: 4px;
  233. font-size: 8px;
  234. font-family: typewriter;
  235. cursor: pointer;
  236. -moz-transition-duration:0.3s;
  237. -webkit-transition-duration:0.3s;
  238. -o-transition-duration:0.3s;
  239. }
  240. ul#tabs li:hover {
  241. text-shadow: -1px 0 #d0c8c5, 0 1px #d0c8c5, 1px 0 #d0c8c5, 0 -1px #d0c8c5;
  242. background: #c2b5b0;
  243. border-left: 2px solid #b19c93;
  244. border-top: 2px solid #b19c93;
  245. border-right: 2px solid #e7e0dd;
  246. border-bottom: 2px solid #e7e0dd;
  247. text-decoration: none;
  248. text-shadow: none;
  249. -moz-transition-duration:0.3s;
  250. -webkit-transition-duration:0.3s;
  251. -o-transition-duration:0.3s;
  252. }
  253. ul#tabs li.active {
  254. text-shadow: -1px 0 #d0c8c5, 0 1px #d0c8c5, 1px 0 #d0c8c5, 0 -1px #d0c8c5;
  255. background: #c2b5b0;
  256. border-left: 2px solid #b19c93;
  257. border-top: 2px solid #b19c93;
  258. border-right: 2px solid #e7e0dd;
  259. border-bottom: 2px solid #e7e0dd;
  260. text-decoration: none;
  261. text-shadow: none;
  262. }
  263. ul#tab {
  264. list-style-type: none;
  265. margin: 0;
  266. padding: 0;
  267. }
  268. ul#tab li {
  269. display: none;
  270. }
  271. ul#tab li.active {
  272. display: block;
  273. }
  274.  
  275. .popup_navi {
  276. text-align:center;
  277. color: #fff;}
  278.  
  279.  
  280. .popup_navi a {
  281. display:inline-block;
  282. padding-top: 10px;
  283. height: 20px;
  284. width: 120px;
  285. background-attachment: fixed;
  286. font-size: 24px;
  287. font-family: dawning_of_a_new_day;
  288. box-shadow: 0px 0px 1px #a23c3e;
  289. text-shadow: -1px 0 #d0c8c5, 0 1px #d0c8c5, 1px 0 #d0c8c5, 0 -1px #d0c8c5;
  290. text-decoration:none;
  291. border-radius: 5px 0px 5px 0px;
  292. color: #ac7076;
  293. border-radius: 5px;
  294. background: #d0c8c5;
  295. border-right: 2px solid #b19c93;
  296. border-bottom: 2px solid #b19c93;
  297. border-left: 2px solid #e7e0dd;
  298. border-top: 2px solid #e7e0dd;
  299. -moz-transition-duration:0.6s;
  300. -webkit-transition-duration:0.6s;
  301. -o-transition-duration:0.6s;
  302. }
  303.  
  304.  
  305. .popup_navi a:hover {
  306. text-shadow: -1px 0 #d0c8c5, 0 1px #d0c8c5, 1px 0 #d0c8c5, 0 -1px #d0c8c5;
  307. background: #c2b5b0;
  308. border-left: 2px solid #b19c93;
  309. border-top: 2px solid #b19c93;
  310. border-right: 2px solid #e7e0dd;
  311. border-bottom: 2px solid #e7e0dd;
  312. text-decoration: none;}
  313.  
  314. img{
  315. opacity: 0.5;
  316. -moz-transition-duration:1.8s;
  317. -webkit-transition-duration:1.8s;
  318. -o-transition-duration:1.8s;
  319.  
  320. }
  321.  
  322. img{
  323. -webkit-filter:grayscale(100%);
  324. -moz-transition-duration:1.8s;
  325. -webkit-transition-duration:1.8s;
  326. -o-transition-duration:1.8s;
  327.  
  328. }
  329.  
  330. img:hover{
  331. -webkit-filter:grayscale(0%);
  332. opacity: 1;
  333. -moz-transition-duration:1.8s;
  334. -webkit-transition-duration:1.8s;
  335. -o-transition-duration:1.8s;
  336.  
  337. }
  338.  
  339. ::-webkit-scrollbar { display:none;}
  340.  
  341.  
  342. ::selection {
  343. color: #e0d4d5;
  344. background: #ac7076;
  345. -moz-selection: background: #ac7076; }
  346.  
  347.  
  348.  
  349. iframe#tumblr_controls {
  350. white-space:nowrap;
  351. -webkit-filter: (100%);
  352. -moz-filter:(100%);
  353. -o-filter: (100%);
  354. -ms-filter: (100%);
  355. filter: (100%);
  356. }
  357.  
  358. h1 {
  359. text-align: center;
  360. font-size:40px;
  361. font-family: shopping;
  362. letter-spacing: 8px;
  363. line-height: 32px;
  364. }
  365.  
  366. poptitle{
  367. text-align: center;
  368. font-size:60px;
  369. padding-top: 20px;
  370. font-weight: normal;
  371. font-family: caviardreams;
  372. letter-spacing: 5px;
  373. line-height: 22px;
  374. color: #cecece;
  375. text-shadow: 2px 2px 1px #894b52;
  376. }
  377.  
  378. @font-face { font-family: "shopping"; src: url('https://dl.dropboxusercontent.com/s/mbyg0g1cianbljw/Shopping%20Script%20Demo.ttf'); format("truetype");}
  379.  
  380.  
  381. @font-face { font-family: "caviardreams"; src: url('https://dl.dropboxusercontent.com/s/0sdd8pywjeng50w/caviardreams.ttf?dl=1'); format(“truetype”);}
  382.  
  383. @font-face{font-family:"satisfaction";src:url('http://static.tumblr.com/it5srtk/Q8Uorwwt2/satisfaction.ttf');}
  384.  
  385. h2 {
  386. font-size:40px;
  387. text-align:center;
  388. line-height:28px;
  389. letter-spacing: 2px;
  390. font-family: caviardreams;
  391. }
  392.  
  393. h2 small{
  394. font-size:28px;
  395. }
  396.  
  397. h3 {
  398. font-size:20px;
  399. text-align:center;
  400. line-height:18px;
  401. text-transform: lowercase;
  402. font-family: dawning_of_a_new_day;
  403. }
  404.  
  405. h3 small{
  406. font-size:20px;
  407. }
  408.  
  409. hr{
  410. border: 0 ;
  411. color: #ac7076;
  412. background-color: #ac7076;
  413. height: 1px;
  414. width: 90%;
  415. }
  416.  
  417. #line{
  418. border: 0 ;
  419. color: #e0d4d5;
  420. background-color: #e0d4d5;
  421. height: 1px;
  422. width: 70%;
  423. }
  424.  
  425. body {
  426. background:#e0d4d5;
  427. margin:0px;
  428. color:#ac7076;
  429. font-family:trebuchet ms;
  430. font-size:11px;
  431. line-height:100%;
  432. background-attachment:fixed;
  433. background-image: url('http://static.tumblr.com/y91lxtf/vZboze8sb/ai.png');
  434. background-repeat:no-repeat;
  435. }
  436.  
  437. #credit {
  438. font-size:8px;
  439. font-family: avant;
  440. }
  441.  
  442. #credit a {
  443. position:fixed;
  444. right:10px;
  445. bottom:10px;
  446. color: #e0d4d5;
  447. padding: 4px;
  448. height: 10px;
  449. background: #ac7076;
  450. box-shadow: 3px 3px 0px #e8e8e8;
  451. border-radius: 10px 0px 10px 0px;
  452. -moz-transition-duration:0.5s;
  453. -webkit-transition-duration:0.5s;
  454. -o-transition-duration:0.5s;
  455. }
  456.  
  457. #credit a:hover {
  458. color: #fff
  459. text-shadow: none;
  460. border-radius: 0px 10px 0px 10px;
  461. box-shadow: -3px -3px 0px #e8e8e8;
  462. -moz-transition-duration:0.5s;
  463. -webkit-transition-duration:0.5s;
  464. -o-transition-duration:0.5s;
  465. }
  466.  
  467. a {
  468. text-decoration:none;
  469. -moz-outline-style:none;
  470. color: #c59893;
  471. -moz-transition-duration:0.2s;
  472. -webkit-transition-duration:0.2s;
  473. -o-transition-duration:0.2s;
  474. }
  475.  
  476. a:hover {
  477. text-decoration:none;
  478. outline:none;
  479. -moz-outline-style:none;
  480. text-shadow: 0px 0px 1px #c59893;
  481. -moz-transition-duration:0.2s;
  482. -webkit-transition-duration:0.2s;
  483. -o-transition-duration:0.2s;
  484. }
  485.  
  486. small, sup, sub{
  487. font-size: 11px;
  488. }
  489.  
  490. big{ font-size: 16px;}
  491.  
  492. b, strong {
  493. font-family: dawning_of_a_new_day;
  494. text-transform: lowercase;
  495. font-size:22px;
  496. }
  497.  
  498. @font-face { font-family: "dawning_of_a_new_day"; src: url('https://dl.dropboxusercontent.com/s/9owbnby9b1vz5m7/dawningofanewday.ttf?dl=1'); format(“truetype”);}
  499.  
  500.  
  501.  
  502. blockquote {
  503. padding:5px;
  504. border-left:1px dashed #bfbfbf; }
  505.  
  506. @font-face{font-family:"beacon";src:url('http://static.tumblr.com/it5srtk/Ze1orxb9v/beacon.ttf');}
  507.  
  508. #post {
  509. width:400px;
  510. margin-top:20px;
  511. line-height: 20px;
  512. }
  513.  
  514. #entries {
  515. position:fixed;
  516. overflow:scroll;
  517. overflow-x:hidden;
  518. height:570px;
  519. width: 400px;
  520. top:45px;
  521. left:482px;
  522.  
  523. -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
  524. }
  525.  
  526.  
  527. #photoset{
  528. -webkit-filter:grayscale(100%);
  529. -moz-transition-duration:1.8s;
  530. -webkit-transition-duration:1.8s;
  531. -o-transition-duration:1.8s;
  532.  
  533. }
  534.  
  535. #photoset:hover{
  536. -webkit-filter:grayscale(0%);
  537. opacity: 1;
  538. -moz-transition-duration:1.8s;
  539. -webkit-transition-duration:1.8s;
  540. -o-transition-duration:1.8s;
  541.  
  542. }
  543.  
  544. @-webkit-keyframes pulse {
  545. from {
  546. text-shadow: none;
  547. }
  548. 50% {
  549. text-shadow: 0px 0px 3px;
  550. }
  551. to {
  552. text-shadow: none;
  553. }
  554. }
  555.  
  556. #sidebar {
  557. overflow:hidden;
  558. position:fixed;
  559. top: 190px;
  560. left: 898px;
  561. width: 133px;
  562. height: 220px;
  563. padding: 1px;
  564. font-size: 12px;
  565. font-weight: bold;
  566. font-family: redalert;
  567. text-align: center;
  568. text-decoration:none;
  569. -webkit-animation-name: pulse;
  570. -webkit-animation-duration: 2s;
  571. -webkit-animation-iteration-count: infinite;
  572. }
  573.  
  574. #sidebar a:hover{
  575. color: #fff;
  576. text-shadow: none;
  577. }
  578.  
  579. #music {
  580. position:fixed;
  581. width: 133px;
  582. top:286px;
  583. left: 334px;
  584. font-family: silkscreen;
  585. font-size: 8px;
  586. text-align: center;
  587. }
  588.  
  589.  
  590. #links {
  591. position:fixed;
  592. line-height: auto;
  593. top: 354px;
  594. left: 340px;
  595. font-family: avant;
  596. line-height: 8px;
  597. font-size:8px;
  598. text-align: center;
  599. text-transform:uppercase;
  600. z-index: 999;
  601. }
  602.  
  603. #links a {
  604. color: #ac7076;
  605. display:inline-block;
  606. padding-top: 3px;
  607. height: 10px;
  608. font-weight: bold;
  609. width: 120px;
  610. text-shadow:none;
  611. border-radius: 5px;
  612. background: #d0c8c5;
  613. border-right: 2px solid #b19c93;
  614. border-bottom: 2px solid #b19c93;
  615. border-left: 2px solid #e7e0dd;
  616. border-top: 2px solid #e7e0dd;
  617. }
  618.  
  619. #links a:hover {
  620. background: #c2b5b0;
  621. border-left: 2px solid #b19c93;
  622. border-top: 2px solid #b19c93;
  623. border-right: 2px solid #e7e0dd;
  624. border-bottom: 2px solid #e7e0dd;
  625. }
  626.  
  627.  
  628. #pagination {
  629. width: 197px;
  630. position: fixed;
  631. padding: 3px;
  632. top: 28px;
  633. left: 404px;
  634. font-size:8px;
  635. font-family: silkscreen;
  636. text-align:center;
  637. text-transform:uppercase;
  638. z-index: 9999;
  639. color:#ac7076;
  640. }
  641.  
  642. #pagination a {
  643. text-decoration: underline;
  644. text-shadow: none;
  645. -moz-transition-duration:0.5s;
  646. -webkit-transition-duration:0.5s;
  647. -o-transition-duration:0.5s;
  648. }
  649.  
  650. #pagination a:hover{
  651. text-shadow: 0px 0px 1px #ac7076;
  652. -moz-transition-duration:0.5s;
  653. -webkit-transition-duration:0.5s;
  654. -o-transition-duration:0.5s;
  655. }
  656.  
  657. #s-m-t-tooltip{
  658. max-width:200px;
  659. margin-top:25px;
  660. margin-left:15px;
  661. padding: 3px;
  662. z-index:9999999;
  663. color: #e0d4d5;
  664. background: #ac7076;
  665. border-left: 4px solid #e0d4d5;
  666. font-family: silkscreen;
  667. font-size:8px;
  668. text-align:center;
  669. font-style:none;
  670. text-transform:uppercase;
  671. }
  672.  
  673. #info {
  674. outline: 1px solid #ac7076;
  675. outline-offset: 2px;
  676. width: 94%;
  677. background: #ac7076;
  678. line-height: 20px;
  679. letter-spacing: 10px;
  680. font-size:32px;
  681. padding:5px;
  682. padding-bottom: 10px;
  683. margin-left: 7px;
  684. text-transform:uppercase;
  685. font-style:normal;
  686. text-align:center;
  687. -moz-transition-duration:0.5s;
  688. -webkit-transition-duration:0.5s;
  689. -o-transition-duration:0.5s;
  690. }
  691.  
  692. #info a {
  693. color: #e0d4d5;
  694. width:380px;
  695. text-shadow: none;
  696. font-style:normal;
  697. -moz-transition-duration:0.5s;
  698. -webkit-transition-duration:0.5s;
  699. -o-transition-duration:0.5s;
  700. }
  701.  
  702. #info a:hover {
  703. color:#c59893;
  704. text-shadow: none;
  705. -moz-transition-duration:0.5s;
  706. -webkit-transition-duration:0.5s;
  707. -o-transition-duration:0.5s;
  708. }
  709.  
  710. @font-face { font-family:"typewriter"; src: url('https://dl.dropboxusercontent.com/s/1zkidpxmtb4my66/type_writer.ttf?dl=1'); format(“truetype”);}
  711.  
  712. @font-face{ font-family:"redalert"; src:url('https://dl.dropboxusercontent.com/s/mvd0eofd3pxfanl/redalert.ttf');}
  713.  
  714. .tags {
  715. font-family:redalert;
  716. font-style:normal;
  717. width:376px;
  718. text-transform: uppercase;
  719. text-shadow:none;
  720. line-height:120%;
  721. padding-left:10px;
  722. font-size:12px;
  723. text-align:center;
  724. padding-top:5px;
  725. padding-bottom:15px;
  726. -moz-transition-duration:0.2s;
  727. -webkit-transition-duration:0.2s;
  728. -o-transition-duration:0.2s;
  729. }
  730. .tags a{
  731. font-style:normal;
  732. text-transform: none;
  733. text-shadow: none;
  734. -moz-transition-duration:0.2s;
  735. -webkit-transition-duration:0.2s;
  736. -o-transition-duration:0.2s;
  737. }
  738. .tags a:hover{
  739. text-shadow: 0px 0px 1px;
  740. -moz-transition-duration:0.2s;
  741. -webkit-transition-duration:0.2s;
  742. -o-transition-duration:0.2s;
  743. }
  744.  
  745. .audio{
  746. height:65px;
  747. overflow:hidden;
  748. opacity: 0.8;
  749. }
  750.  
  751. .trackdetails{
  752. margin-left: 77px;
  753. margin-top: -33px;
  754. font-size: 10px;
  755. height: 10px;
  756. }
  757.  
  758. #ask {
  759. float:right;
  760. color:#cc7171; }
  761.  
  762. @font-face{ font-family:"signarita"; src: url('https://dl.dropboxusercontent.com/s/gc29howy3wio7t8/signarita%20zhai%20rhianne.ttf?dl=1'); format(“truetype”);}
  763.  
  764.  
  765. .asker {
  766. font-size:45px;
  767. letter-spacing: 4px;
  768. text-shadow: -2px 0 #d0c8c5, 0 2px #d0c8c5, 2px 0 #d0c8c5, 0 -2px #d0c8c5;
  769. color: #ac7076;
  770. font-weight:bold;
  771. text-transform: uppercase;
  772. font-family: shopping;
  773. }
  774.  
  775. .asker:hover{
  776. font-size:45px;
  777. letter-spacing: 4px;
  778. text-shadow: -2px 0 #d0c8c5, 0 2px #d0c8c5, 2px 0 #d0c8c5, 0 -2px #d0c8c5;
  779. color: #ac7076;
  780. font-weight:bold;
  781. text-transform: uppercase;
  782. font-family: shopping;
  783. }
  784.  
  785. quotesource {
  786. font-size:8px;
  787. font-family: typewriter;
  788. }
  789.  
  790. #question{
  791. padding:6px;
  792. border-radius: 10px 0px 10px 0px;
  793. margin-top: -10px;
  794. color: #e0d4d5;
  795. text-align: center;
  796. background-image: url('http://static.tumblr.com/y91lxtf/EP1ozn68e/asasdssd.png');
  797. background-attachment: fixed;
  798. border: 1px solid #ac7076;
  799. }
  800.  
  801. .question_text{
  802. padding:5px;
  803. width:auto;
  804. font-size: 11px;
  805. height:auto;
  806. overflow:auto;
  807. letter-spacing:0;
  808. word-spacing:0;
  809. line-height: 100%;
  810. background-color:#ac7076;
  811. border: double 4px #ac7076;
  812. border-radius: 0px 10px 0px 10px;
  813. }
  814.  
  815. quote{
  816. font-size:40px;
  817. text-shadow: 1px 1px 1px #636959;
  818. color: #bfbfbf;
  819. font-family: maszyna royal;
  820. text-align:center;
  821. line-height:36px;
  822. }
  823.  
  824. pre{
  825. font-family: tinytots;
  826. text-transform: uppercase;
  827. font-size: 8px;
  828. }
  829.  
  830. {CustomCSS}
  831.  
  832. @font-face { font-family: "aaargh"; src: url('https://dl.dropboxusercontent.com/s/bnyoyt2m3w06ehr/aaargh.ttf?dl=1'); format(“truetype”);}
  833.  
  834. @font-face { font-family: "tinytots"; src: url('https://dl.dropboxusercontent.com/s/y0pfz7ndq83n7j7/04b_03_.ttf?dl=1'); format(“truetype”);}
  835.  
  836. @font-face { font-family: "wendy"; src: url('https://dl.dropboxusercontent.com/s/yr32rdtfszs02ze/wendy.ttf?dl=1'); format(“truetype”);}
  837.  
  838. @font-face { font-family:"avant"; src: url('https://dl.dropboxusercontent.com/s/11icl382vxmy46n/avant_pixel.ttf?dl=1'); format(“truetype”);}
  839.  
  840. @font-face { font-family: "silkscreen"; src: url('https://dl.dropboxusercontent.com/s/4bj79wi75v77m0r/slkscr.ttf?dl=1'); format(“truetype”);}
  841.  
  842. @font-face { font-family: "bebas_neue"; src: url('https://dl.dropboxusercontent.com/s/scbj3da4dz3dfmf/bebasneue.otf?dl=1'); format(“truetype”);}
  843.  
  844. @font-face { font-family: "muli"; src: url('https://dl.dropboxusercontent.com/s/swqjp2tlc6l94cj/muli-light.ttf?dl=1'); format(“truetype”);}
  845.  
  846. @font-face {font-family: "dc";src: url('https://dl.dropboxusercontent.com/u/67800931/dc_regular_caps.ttf'); format("truetype");}
  847.  
  848. @font-face {font-family: "vdj";src: url('https://dl.dropboxusercontent.com/u/67800931/vdj.ttf'); format("truetype");}
  849.  
  850. @font-face { font-family:"dolcevita"; src: url('https://dl.dropbox.com/s/ulyc96lx0yfiryl/Dolce%20Vita%20Heavy%20Bold.ttf?dl=1'); format("truetype");}
  851.  
  852. </style>
  853.  
  854. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  855. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  856. <script>
  857. (function($){
  858. $(document).ready(function(){
  859. $("[title],a[title],img[title]").style_my_tooltips({
  860. tip_follows_cursor:true,
  861. tip_delay_time:100,
  862. tip_fade_speed:300,
  863. attribute:"title"
  864. });
  865. });
  866. })(jQuery);
  867. </script>
  868.  
  869. </head><body>
  870.  
  871. <div id="pagination">
  872. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page"><small>←</small></a>{/block:PreviousPage}
  873. {block:JumpPagination length="3"}
  874. {block:CurrentPage}<span id="current_page" class="current_page">{PageNumber}</span>{/block:CurrentPage}
  875. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  876. {block:NextPage}<a href="{NextPage}" class="jump_page"><small>→</small></a>{/block:NextPage}
  877. </div>
  878.  
  879. <div id="entries">{block:Posts}<div id="post">
  880.  
  881. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1> {Body}{/block:Text}
  882.  
  883. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  884.  
  885. {block:Photoset}<div id="photoset">{Photoset-400}</div>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  886.  
  887. {block:Quote}<quote><center>{Quote}</center></quote>{block:Source}<br><br> <div style="text-align: right;">— <quotesource>{Source}</quoutesource></div>{/block:Source}{/block:Quote}
  888.  
  889. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  890.  
  891. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<strong>{Label}</strong>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  892.  
  893. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left" style="margin-left: 2px;">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>
  894. <div class="trackdetails">{block:TrackName}<big>{TrackName}</big>{/block:TrackName} <br>
  895. {block:Artist}{Artist}{/block:Artist} /
  896. {block:Album}{Album}{/block:Album}</div><br/>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  897.  
  898. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  899.  
  900.  
  901. {block:Answer}<center><p><font style="
  902. font-size:40px;
  903. letter-spacing: 4px;
  904. color: #ac7076;
  905. font-weight:bold;
  906. text-transform: lowercase;
  907. font-family: shopping;">a letter from,</font><p><font style="
  908. font-size:45px;
  909. letter-spacing: 4px;
  910. text-shadow: -2px 0 #d0c8c5, 0 2px #d0c8c5, 2px 0 #d0c8c5, 0 -2px #d0c8c5;
  911. color: #ac7076;
  912. font-weight:bold;
  913. text-transform: uppercase;
  914. font-family: shopping;">{Asker}</font></center></p><p><div id="question"><div class="question_text">{Question}</div></div></p><hr><p>{Answer}{/block:Answer}
  915.  
  916. <p><div id="info"><center> <a href="{Permalink}" title="{DayOfMonth} {Month} {Year} @ {12Hour}:{Minutes}{AmPm}">•</a>
  917. <a href="{Permalink}" title="{NoteCount} Notes">•</a>
  918.  
  919. {block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">•</a> {/block:RebloggedFrom}{block:ContentSource}<a title="{SourceTitle}" href="{SourceURL}">•</a>{/block:ContentSource} {/block:RebloggedFrom} <a href="{ReblogURL}"target="_blank" title="reblog this post">•</a>
  920. </div>
  921. <p>
  922. <hr>
  923. {block:HasTags}
  924. <div class="tags">
  925. tagged as:{block:Tags} <a title="{Tag}" href="{TagURL}">&nbsp;#&nbsp;{Tag}</a> {/block:Tags}</p></div></center>
  926. {/block:HasTags}
  927. <div class="postnote">
  928. {block:PostNotes}{PostNotes}{/block:PostNotes}
  929. </div>
  930. </div>
  931. {/block:Posts}
  932.  
  933. </div>
  934.  
  935. <div id="credit"><a href="http://hollywhood.tumblr.com" title="tweaked by nightscaped">THEME</a></div>
  936.  
  937.  
  938. </body>
  939.  
  940. <div id="music">
  941. <p><marquee SCROLLDELAY=150>♫ now playing ♫ 絢香 / Blue Days</marquee></p>
  942. <object style="
  943. outline: 1px dashed #ac7076;
  944. outline-offset: 2px;" type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_multi.swf" width="100" height="19">
  945. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_multi.swf" />
  946. <param name="bgcolor" value="#ac7076" />
  947. <param name="FlashVars" value="mp3=https://www.dropbox.com/s/eq5247e10cz8nzb/4.%20Blue%20Days.mp3?dl=1
  948. &amp;width=100&amp;volume=50&amp;autoplay=1&amp;loop=1&amp;showslider=0&amp;sliderwidth=0&amp;sliderheight=0&amp;volumewidth=0&amp;volumeheight=0&amp;loadingcolor=5d5b5b&amp;bgcolor1=ac7076&amp;bgcolor2=ac7076&amp;slidercolor1=&amp;slidercolor2=&amp;sliderovercolor=&amp;buttoncolor=e0d4d5&amp;buttonovercolor=b3a9a7&amp;textcolor=&amp;showlist=0&amp;playlistcolor=&amp;playlistalpha=0&amp;currentmp3color=&amp;scrollbarcolor=&amp;scrollbarovercolor=&amp;showplaylistnumbers=0" />
  949. </object>
  950. </div>
  951.  
  952. <div id="links">
  953. <a href="/" title="Home">one</a><p><br>
  954. <a href= "#?w=400" rel="02" class="poplight" title="Ask">two</a><p><br>
  955. <a href= "#?w=400" rel="03" class="poplight" title="Rules">three</a><p><br>
  956. <a href= "#?w=400" rel="04" class="poplight" title="Profile">four</a><p><br>
  957. <a href= "#?w=400" rel="05" class="poplight" title="About">five</a>
  958. <p><br>
  959. <a href= "#?w=400" rel="06" class="poplight" title="Navigation">six</a>
  960. </div>
  961.  
  962. <div id="sidebar"><hr>
  963. <h3>a pale pink cosmos sways</h3>
  964. I’ll try to live my way<br>
  965. With the words “Thank you” in my heart<br>
  966. Let me be your child<br>
  967. A little longer<br>
  968. On this peaceful day in an unusually warm autumn
  969. </p>
  970. </div>
  971.  
  972. <div id="02" class="popup_block">
  973. <div class="popup_content">
  974. <p><br><br><poptitle>Ask</poptitle><p>
  975. <center><div id="line"></div></center><p>
  976. Submit is available <a href= "#?w=400" rel="08" class="poplight">here!</a></quotesource><p><center><div id="line"></div></center><p>
  977.  
  978. <iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/aeropop.tumblr.com" width="100%"></iframe>
  979. </div></div></div>
  980.  
  981. <div id="08" class="popup_block">
  982. <div class="popup_content">
  983. <p><br><br><poptitle>Submit</poptitle><p><br>
  984.  
  985. <iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/submit_form/aeropop.tumblr.com" width="100%"></iframe>
  986. </div></div>
  987.  
  988. <div id="03" class="popup_block">
  989. <div class="popup_content">
  990. <p><br><br><poptitle>Rules</poptitle>
  991. <center><div id="line"></div></center><p>
  992.  
  993. <strong>LAST UPDATED / 15th NOVEMBER 2017</strong><p>
  994.  
  995. <p>okay, i’m not here for a super heavy, complicated time so i’m going to keep these short and to the point! ♥ anyway, i’m phob/phoebe, a 21 yo from scotland. i use she/her pronouns and i’m an aspie! if you think you know me, it’s probably from my main rp muses (nightscaped &amp; dreamled). these rules probably make me sound super strict and grumpy but i promise i’m not! <strike>i’m just super tired lmao</strike> if you have any questions at all, don’t be afraid to ask!</p><hr><p>all the basic rules of rp etiquette apply; mun ≠ muse, godmodding’s shitty, metagaming’s shitty too, don’t push me for replies if i’m not being as fast as you’d like, don’t be a dick in general.</p><p>this is a selective &amp; private blog, meaning i only write with mutuals and i don’t do follow for follow. if i follow you, i want to write with you but don’t push me for threads if either one of us isn’t following the other.</p><p>i’m willing to write threads of most length, although i prefer para and upward in length. i tend to expand most one-liner threads somewhere along the line as i feel dialogue only gets tired quickly. however, don’t feel pressured to match my length if i get carried away at some point.</p><p>this blog is single-ship and mutually so i.e; i only want to ship with someone who is also single-ship. smut isn’t likely to be a frequent feature on this blog, although i am not against writing it in any way. i will not write any threads of a sexual nature with anybody under the age of 18 because, guess what, i’m not a creep.</p><p>i make all of my own icons and graphics, and the psd i use for my graphics is my own too. don’t take anything you see on my blog. it’s mine and mine only.</p><p>honestly, just don’t follow me if you’re a bigot. i will not tolerate anything along the lines of racism, sexism, homophobia/biphobia, transphobia, ableism, so on and so forth. i also don’t think people talking about these issues is ‘drama’.</p><p>i don’t do banned faceclaims but i won’t write with duplicate faceclaims nor will i write with anyone using kim jaejoong as their muse’s fc (i know it’s silly but, as he’s my main muse’s fc, it makes me uncomfy). i also don’t follow people who think it’s okay to miscast fcs according to their ethnicity (e.g; using korean fcs for japanese characters).</p><p>all sensitive content will be tagged as&nbsp;<i>subject</i> tw for imagery or explicit written references and&nbsp;<i>subject</i> mention for passing written references. if you need me to tag something, never feel afraid to ask.</p><p>i don’t fuck with the jrp <i>or</i> krp communites. i don’t write with general, semi-au or au blogs i.e; blogs who write as actual celebrities in any capacity.</p><p>my personal requests are as follows; please tag animal abuse &amp; eye gore/horror, don’t reblog faceclaim posts from me unless i’ve specifically said it’s okay.</p>
  996. </div>
  997. </div>
  998.  
  999.  
  1000. <div id="04" class="popup_block">
  1001. <div class="popup_content">
  1002. <p><br><br><poptitle>Profile</poptitle><center><div id="line"></div></center><p>
  1003.  
  1004. CONTENT (you can copy and paste the tab coding here if you want to split your profile into sections).
  1005. </p>
  1006. </div></div>
  1007.  
  1008. <div id="05" class="popup_block">
  1009. <div class="popup_content">
  1010. <p><br><br><poptitle>About</poptitle>
  1011. <center><div id="line"></div><p>
  1012. <ul id="tabs">
  1013. <li class="active">TAB ONE</li>
  1014. <li>TAB TWO</li>
  1015. <li>TAB THREE</li>
  1016. <li>TAB FOUR</li>
  1017. <li>TAB FIVE</li>
  1018. <li>TAB SIX</li>
  1019. </ul>
  1020. <ul id="tab">
  1021. <li class="active">
  1022. You can split this into story points or just delete tabs altogether, up to you!
  1023. </li>
  1024.  
  1025. <li>
  1026. TAB TWO CONTENT.
  1027. </li>
  1028.  
  1029. <li>
  1030. TAB THREE CONTENT.
  1031. </li>
  1032.  
  1033. <li>
  1034. TAB FOUR CONTENT.</li>
  1035.  
  1036. <li>
  1037. TAB FIVE CONTENT.
  1038. </li>
  1039.  
  1040. <li>
  1041. TAB SIX CONTENT.
  1042. </li>
  1043.  
  1044. </ul></div>
  1045. </div>
  1046.  
  1047. <div id="06" class="popup_block">
  1048. <div class="popup_content">
  1049. <p><br><br><poptitle>Navigation</poptitle>
  1050. <center><div id="line"></div></center><p>
  1051.  
  1052. <ul id="tabs">
  1053. <li class="active">Home</li>
  1054. <li>Verses</li>
  1055. <li>Family</li>
  1056. <li>Mains</li>
  1057. <li>Tags</li>
  1058. </ul>
  1059. <ul id="tab">
  1060. <li class="active">
  1061. TAB ONE CONTENT.
  1062. </li>
  1063.  
  1064. <li>
  1065. TAB TWO CONTENT.
  1066. </li>
  1067.  
  1068. <li>
  1069. TAB THREE CONTENT.
  1070. </li>
  1071.  
  1072. <li>
  1073. TAB FOUR CONTENT.</li>
  1074.  
  1075. <li>
  1076. <div class="popup_navi">
  1077. <a href="/">????</a>
  1078. <a href="/">????</a><p>
  1079. <a href="/">????</a>
  1080. <a href="/">????</a><p>
  1081. </div>
  1082. </li>
  1083.  
  1084. </ul>
  1085. </div>
  1086. </div>
  1087.  
  1088. </div></div></div></div></div></div></div></div></div>
  1089.  
  1090. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement