Advertisement
marshallsmyth

76. Melody the Neko 11/28/18

Nov 26th, 2018
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 12.22 KB | None | 0 0
  1. <body>
  2. <style>
  3. @import url(https://fonts.googleapis.com/css?family=Cinzel+Decorative|Raleway:300);
  4. ::-webkit-scrollbar { width: 10px;}
  5. ::-webkit-scrollbar-track { border-radius:50px; background:#7e007e;}
  6. ::-webkit-scrollbar-thumb { border:5px solid fuchsia; border-radius:50px; border-shadow:5px 5px 5px 5px white;}
  7.  
  8. body {
  9. background-color:lightcoral;
  10. }
  11.  
  12. #statbut {
  13.  list-style-type: none;
  14.  margin: 0;
  15.  padding: 0;
  16.  width: 10%; height: 4%;
  17.  background: fuchsia;
  18.  border: 0.5vh solid #9e004e;
  19.  box-shadow: 4px 4px 5px #000000;
  20.  position: fixed;
  21.  z-index:1;
  22.  -ms-transform: skewX(-30deg);
  23.  -webkit-transform: skewX(-30deg);
  24.  transform: skewX(-30deg);
  25.  top: 10%;
  26.  left: 18%;
  27.  overflow: hidden;
  28.  opacity:0;
  29.  font-family: cinzel decorative;
  30.  
  31. -webkit-animation:statanim 1.5s 1;
  32. animation:statanim 1.5s 1;
  33. animation-delay:4.0s;
  34. animation-fill-mode:forwards;
  35. -webkit-animation-delay:4.0s;
  36. -webkit-animation-fill-mode:forwards;}
  37.  
  38. @keyframes statanim{
  39. from{left:0%;opacity:0;}
  40. to{left:18%;opacity:1;}
  41. }
  42. @-webkit-keyframes statanim{
  43. from{left:0%;opacity:0;}
  44. to{left:18%;opacity:1;}
  45. }
  46.  
  47. #statbut a {
  48.  display: block;
  49.  color:#336600;
  50.  font-size: 2vh;
  51.  padding: 4% 8px 4% 8px;
  52.  text-decoration: none;
  53.  transition: all 0.3s ease-in-out;
  54.  -moz-transition: all 0.3s ease-in-out;
  55.  -webkit-transition: all 0.3s ease-in-out;
  56. }
  57.  
  58. #statbut a:hover{
  59.  background-color: #2e002e;
  60.  color:#FFFFFF;
  61.  text-shadow: 2px 2px 2px #000000;
  62.  font-size: 2vh;
  63. }
  64.  
  65. #biobut {
  66.  list-style-type: none;
  67.  margin: 0;
  68.  padding: 0;
  69.  width: 8.8%;  height:4%;
  70.  background-color: fuchsia;
  71.  border: 0.5vh solid #9e004e;
  72.  box-shadow:4px 4px 5px #000000;
  73.  opacity:0;
  74.  position: fixed;
  75.  z-index:1;
  76.  -ms-transform: skewX(-30deg);
  77.  -webkit-transform: skewX(-30deg);
  78.  transform: skewX(-30deg);
  79.  top: 15%;
  80.  left: 18%;
  81.  overflow: hidden;
  82.  font-family: Times New Roman;
  83. -webkit-animation:bioanim 0.5s 1;
  84. animation:bioanim 0.5s 1;
  85. animation-delay:4.6s;
  86. animation-fill-mode:forwards;
  87. -webkit-animation-delay:4.6s;
  88. -webkit-animation-fill-mode:forwards;}
  89.  
  90. @keyframes bioanim{
  91. from{left:0%;opacity:0;}
  92. to{left:18%;opacity:1;}
  93. }
  94. @-webkit-keyframes bioanim{
  95. from{left:0%;opacity:0;}
  96. to{left:18%;opacity:1;}
  97. }
  98.  
  99. #biobut a {
  100.  display: block;
  101.  color:#336600;
  102.  font-size: 2vh;
  103.  padding: 4% 8px 4% 8px;
  104.  text-decoration: none;
  105.  transition: all 0.3s ease-in-out;
  106.  -moz-transition: all 0.3s ease-in-out;
  107.  -webkit-transition: all 0.3s ease-in-out;
  108. }
  109.  
  110. #biobut a:hover{
  111.  background-color: #2e002e;
  112.  color:#FFFFFF;
  113.  text-shadow: 2px 2px 2px #000000;
  114.  font-size: 2vh;
  115. }
  116.  
  117. #oocbut {
  118.  list-style-type: none;
  119.  margin: 0;
  120.  padding: 0;
  121.  width: 7.7%;  height:4%;
  122.  background-color: fuchsia;
  123.  border: 0.5vh solid #9e004e;
  124.  box-shadow: 4px 4px 5px #000000;
  125.  position: fixed;
  126.  z-index:1;
  127.  -ms-transform: skewX(-30deg);
  128.  -webkit-transform: skewX(-30deg);
  129.  transform: skewX(-30deg);
  130.  top: 20%;
  131.  left: 18%;
  132.  overflow: hidden;
  133. opacity:0;
  134.  font-family: Times New Roman;
  135. -webkit-animation:oocanim 0.5s 1;
  136. animation:bioanim 0.5s 1;
  137. animation-delay:4.3s;
  138. animation-fill-mode:forwards;
  139. -webkit-animation-delay:4.3s;
  140. -webkit-animation-fill-mode:forwards;}
  141.  
  142. @keyframes oocanim{
  143. from{left:0%;opacity:0;}
  144. to{left:18%;opacity:1;}
  145. }
  146. @-webkit-keyframes oocanim{
  147. from{left:0%;opacity:0;}
  148. to{left:18%;opacity:1;}
  149. }
  150.  
  151. #oocbut a {
  152.  display: block;
  153.  color:#336600;
  154.  font-size: 2vh;
  155.  padding: 4% 8px 4% 8px;
  156.  text-decoration: none;
  157.  transition: all 0.3s ease-in-out;
  158.  -moz-transition: all 0.3s ease-in-out;
  159.  -webkit-transition: all 0.3s ease-in-out;
  160. }
  161.  
  162. #oocbut a:hover{
  163.  background-color: #2e002e;
  164.  color:#FFFFFF;
  165.  text-shadow: 2px 2px 2px #000000;
  166.  font-size: 2vh;
  167. }
  168.  
  169. audio{
  170. width:
  171. }
  172.  
  173. #player{
  174.  position: absolute;
  175.  z-index:0;
  176.  top:25%;
  177.  left:19vw;
  178.  width: 5%;
  179.  border: 0.4vh solid #336600;
  180.  box-shadow: 4px 1px 5px #000000;
  181.  opacity:0;
  182.  overflow: hidden;
  183.  animation:musicfade 0.5s 1;
  184.  animation-delay:4s;
  185.  animation-fill-mode:forwards;
  186. -webkit-animation:musicfade 0.5s 1;
  187. -webkit-animation-delay:4s;
  188. -webkit-animation-fill-mode:forwards;}
  189.  
  190. @keyframes musicfade{
  191. from{left:0%;opacity:0;}
  192. to{opacity:1;}
  193. }
  194. @-webkit-keyframes musicfade{
  195. from{left:20%;opacity:0;}
  196. to{opacity:1;}
  197. }
  198.  
  199. #titlebar{
  200.  position: absolute;
  201.  z-index: 0;
  202.  left: 0%;
  203.  top: 30%;
  204.  width: 88.5%;
  205.  color:blue;
  206.  background: fuchsia;
  207.  box-shadow: 4px 4px 5px #000000;
  208.  font-family: Cinzel Decorative;
  209.  font-size: 11vh;
  210.  -ms-transform: skewX(-30deg);
  211.  -webkit-transform: skewX(-30deg);
  212.  transform: skewX(-30deg);
  213.  opacity:0;
  214.  -webkit-animation: titebarmove 0.5s 1;
  215.  animation: titlebarmove 1.5s 1;
  216.  animation-delay:1s;
  217.  -webkit-animation-delay:1s;
  218.  animation-fill-mode: forwards;
  219.  -webkit-animation-fill-mode: forwards;}
  220.  
  221. @-webkit-keyframes titlebarmove {
  222. from {top: 0%; opacity: 0;}
  223. to {top: 30%;opacity: 1;}
  224. }
  225.  
  226.  
  227. @keyframes titlebarmove {
  228. from {top: 0%;opacity: 0;}
  229. to {top: 31%; opacity: 1;}
  230. }
  231.  
  232. #title {
  233.  position: absolute;
  234.  z-index: 1;
  235.  left: 20%;
  236.  top: 31%;
  237.  color:#2e002e;
  238.  text-shadow: 1px 1px 1px #fff;
  239.  font-family: Cinzel Decorative;
  240.  font-size: 11vh;
  241.  opacity:0.2;
  242.  -ms-transform: skewX(-30deg); /* IE 9 */
  243.  -webkit-transform: skewX(-30deg); /* Safari */
  244.  transform: skewX(-30deg);
  245.  -webkit-animation: name 0.5s 1;
  246.  animation: name 0.5s 1;
  247.  animation-delay: 2.5s;
  248.  -webkit-animation-delay:2.5s;
  249.  animation-fill-mode:forwards;
  250.  -webkit-animation-fill-mode:forwards;
  251. }
  252.  
  253. @-webkit-keyframes name{
  254. from{left:0%;opacity:0;}
  255. to{left:20%;opacity:1;}
  256. }
  257. @keyframes name{
  258. from{left:0%;opacity:0;}
  259. to{left:20%;opacity:1;}
  260. }
  261.  
  262. #subtitle{
  263.  position: absolute;
  264.  z-index:2;
  265.  left: 50%;
  266.  top: 37%;
  267.  color:#bbbb49;
  268.  text-shadow: 2px 1px 2px #000000;
  269.  font-family: Cinzel Decorative;
  270.  font-size: 8vh;
  271.  -ms-transform: skewX(-30deg); /* IE 9 */
  272.  -webkit-transform: skewX(-30deg); /* Safari */
  273.  transform: skewX(-30deg);
  274.  opacity:0;
  275.  -webkit-animation: subfade 1s 1;
  276.  animation: subfade 1s 1;
  277.  animation-fill-mode:forwards;
  278.  animation-delay:3s;
  279.  -webkit-animation-delay:3s;
  280.  -webkit-animation-fill-mode:forwards;}
  281.  
  282. @keyframes subfade{
  283. from{opacity:0;}
  284. to{opacity:1;}
  285. }
  286. @-webkit-keyframes subfade{
  287. from{opacity:0;}
  288. to{opacity:1;}
  289. }
  290.  
  291. #mainpic {
  292.  position:fixed;
  293.  z-index: 3;
  294.  width:20%;
  295.  height: 100%;
  296.  left: 0px;
  297.  bottom: 0px;
  298.  background: #9e003e;
  299.  color: #9e003e;
  300.  font-size:2vh;
  301.  border-right: 0.8vh solid #2e002e;
  302.  box-shadow: 4px 1px 5px #3e004e;
  303.  overflow:hidden;
  304.  opacity:0;
  305.  -webkit-animation: picturefade 5s 1;
  306.  animation: picturefade 5s 1;
  307.  animation-delay:4s;
  308.  -webkit-animation-delay:4s;
  309.  animation-fill-mode: forwards;
  310.  -webkit-animation-fill-mode: forwards;}
  311. #mainpic img {
  312.  width: 100%;}
  313.  
  314. @-webkit-keyframes picturefade{
  315. 0%{left:-20%;opacity:0;}
  316. 100%{left:0%;opacity:1;}
  317. }
  318.  
  319. @keyframes picturefade{
  320. 0%{left:-20%;opacity:0;}
  321. 100%{left:0%;opacity:1;}
  322. }
  323.  
  324. #infobox{
  325.  position: fixed;
  326.  z-index:1;
  327.  height: 98%;
  328.  background:transparent;
  329.  border-radius: 5px;
  330.  border: 2px solid #80584A;
  331.  box-shadow: 0px 0px 64px #000000;
  332.  right: 72px;
  333.  width: 50%;
  334.  top: 1%;
  335.  color:#bbbb49;
  336.  text-shadow: 2px 2px 2px #000000;
  337.  font-family: Times New Roman ;
  338.  font-size: 16pt;}
  339.  #infobox img {
  340.  width: 100%;}
  341.  
  342. #credit{
  343.  position: fixed;
  344.  z-index:2;
  345.  bottom: 5px;
  346.  right: 5px;
  347.  color:#bbbb49;
  348.  text-shadow: 1px 1px 0px #000000;
  349.  font-family: Cinzel Decorative;
  350.  font-size: 2vh;}
  351.  
  352. a{
  353.  color: #3e003e;
  354.  text-shadow: 0px 0px 0px #000000;
  355.  font-family: Cinzel Decorative;
  356.  font-size: 2vh;
  357.  text-decoration: none;
  358.  transition: 3s;
  359. }
  360. a:hover{
  361.  color: red;
  362. }
  363.  
  364. #borderbox{
  365. position:absolute;
  366. z-index:0;
  367. top:46%;
  368. left:0%;
  369. width:79%;
  370. height:52%;
  371. background: #2e002e;
  372. border: 0.5vh solid #151515;
  373. box-shadow: 4px 4px 5px #000000;
  374. opacity:0;
  375. -ms-transform: skewX(-30deg); /* IE 9 */
  376. -webkit-transform: skewX(-30deg); /* Safari */
  377. transform: skewX(-30deg);
  378. -webkit-animation:borderslide 1s 1;
  379. animation:borderslide 1s 1;
  380. animation-delay:1.5s;
  381. animation-fill-mode:forwards;
  382. -webkit-animation-delay:1.5s;
  383. -webkit-animation-fill-mode:forwards;}
  384.  
  385. @keyframes borderslide{
  386. from{left:-40%;opacity:0;}
  387. to{left:0%;opacity:1;}
  388. }
  389. @-webkit-keyframes borderslide{
  390. from{left:-40%;opacity:0;}
  391. to{left:0%;opacity:1;}
  392. }
  393.  
  394. #textscroll{
  395. position:absolute;
  396. z-index:6;
  397. left:21%;
  398. top: 49%;
  399. width:49%;
  400. height:48%;
  401. padding:4px;
  402. color: #ae116e;
  403. font-size: 3.5vh;
  404. line-height:2.5vh;
  405. letter-spacing: 0.15vh;
  406. font-family: 'cinzel decorative';
  407. text-shadow:2px 2px 2px #000000;
  408. opacity: 0;
  409. animation:textfade 15s 1;
  410. animation-delay:3s;
  411. animation-fill-mode:forwards;
  412. -webkit-animation:textfade 15s 1;
  413. -webkit-animation-delay:3s;
  414. -webkit-animation-fill-mode:forwards;}
  415.  
  416. @keyframes textfade{
  417. from{opacity:0;}
  418. to{opacity:1;}
  419. }
  420. @-webkit-keyframes textfade{
  421. from{opacity:0;}
  422. to{opacity:1;}
  423. }
  424.  
  425. h1 {
  426. font-family: Cinzel Decorative;
  427. font-size: 6vh;
  428. font-weight: normal;
  429. color: #ee99ee;
  430. text-shadow: 2px 2px 0px #000000;
  431. text-align: center;
  432. letter-spacing: 1vw;
  433. }
  434.  
  435. h2 {
  436. font-family: Cinzel Decorative;
  437. font-size: 9vh;
  438. font-weight: bold;
  439. color: #ee99ee;
  440. text-shadow: 2px 2px 0px #000000;
  441. letter-spacing: 1vh;
  442. text-align: left;
  443. }
  444.  
  445. h3 {
  446. font-family: Cinzel Decorative;
  447. font-size: 3vh;
  448. font-weight: bold;
  449. color: #9999ee;
  450. text-shadow: 2px 2px 0px #000000;
  451. letter-spacing: 1vh;
  452. text-align: center;
  453. line-height: 1.5vh;
  454. }
  455.  
  456. hr {
  457. border-color: #330099;
  458. box-shadow: 2px 2px 0px #000000;
  459. }
  460.  
  461.  
  462. </style>
  463.  
  464.  
  465. <div id="statbut">
  466. <center>
  467. <a href="#stats">stats</a>
  468. </center>
  469. </div>
  470.  
  471. <div id="biobut">
  472. <center>
  473. <a href="#bio">bio</a>
  474. </center>
  475. </div>
  476.  
  477. <div id="oocbut">
  478. <center>
  479. <a href="#ooc">gallery</a>
  480. </center>
  481. </div>
  482.  
  483. <div id="credit">
  484. <p align = "right">
  485. <br>
  486. <a target="_blank" href="http://pastebin.com/[filtered]" target="new">Please steal!</a>
  487. </p>
  488. </div><div style="font-family:cinzel decorative, arial;font-size:13px;color:#0e002e;"><i><center>Page 76..... The Present Degeneracy, Time-Frames<br>Written by, Kathy WayStone-Yayoi<br>This is a reconstructed profile <br> based on a character the WayStone family interacted with.<br>Melody married Carina and they had a child, Harmony.<br>Shortly after, she disappeared, and is presumed deceased. <br> Melody is much beloved, and is an important character<br> in this story. </center></i>
  489.  
  490. <div id="titlebar">-
  491.  
  492. </div>
  493.  
  494. <div id="title">
  495. ...Melody the Neko
  496. </div>
  497.  
  498. <div id="subtitle">
  499. <center>
  500.  
  501. </center>
  502. </div>
  503.  
  504. <div id="mainpic">
  505. <br>
  506. <br>
  507. <img src="  https://i.imgur.com/nkftok7.png  " width:="30%">
  508. <img src="  https://i.imgur.com/On98HUq.png  " width:="30%">
  509. </div>
  510.  
  511. <div id="borderbox">
  512. stuff
  513. </div>
  514.  
  515. <div id="textscroll">
  516. <center>
  517. <div style="height: 100%; overflow-y: hidden;">
  518. <a name="stats"></a>
  519. <div style="width:100%; height: 100%; top: 100px; overflow: auto;" align="center"><i>
  520. <h1>Stats</h1><hr>
  521. <h3>Age:</h3> 18 <br>
  522. <h3>Gender:</h3> shemale <br>
  523. <h3>Traits:</h3> Catlike, pure, true<br>
  524. <h3>Likes:</h3> Having fun, loving<br>
  525. <h3>Relations:</h3>Carina WayStone<br>
  526. </div>
  527.  
  528. <a name="bio"></a>
  529. <div style="width:100%; height: 100%; top: 100px; overflow: auto;" align="left">
  530. <h1>Bio/Background</h1>
  531.  
  532. <h3>Melody</h3>
  533.  
  534. <center></center><br>
  535. <br>
  536. Recently married Carina WayStone<p>Together, and with help, since they both wanted<p> a child very much, they had a child named<p> Harmony. Shortly after the baby's birth, Melody<p> disappeared. Determined searches were made,<p> and those with Gallan searched for her life<p> force. None was found, and sweet Melody is<p> presumed dead. Carina became more and more<p> depressed and left her home and disappeared<p> herself. Harmony, who bears Gallan and thus<p> grew up to age 18 rapidly, then determined to<p> find her mother/father Carina. Together<p> with Delphina, Belladonna, and CJ Cantu, they<p> found her living in an old small tidy cottage<p> northwest of Paris. They helped Carina<p> recover from her depression<br>
  537. <hr>
  538.  
  539.  
  540. <center><h3>Family</h3></center>
  541.  
  542. No known relatives can be found
  543. <br><br>
  544.  
  545. </p></div><br>
  546. <a name="ooc"></a>
  547. <div style="width:60%; height: 100%; top: 100px; overflow: auto;" align="left">
  548.  
  549. <h1>Gallery</h1><hr>
  550. <br><img src="  https://i.imgur.com/On98HUq.png  " style="width:100%">
  551.  
  552. </div></div></div><center>
  553. <img src="    " width="15%">
  554. </center><br></body></html>
  555.  
  556. 76. Melody the Neko 11/28/18
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement