Advertisement
rashayritto

Trev Layout

Jun 10th, 2016
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 9.94 KB | None | 0 0
  1. <style>
  2. @import url(https://fonts.googleapis.com/css?family=Cinzel);
  3. ::-webkit-scrollbar { width: 0.8vw; height: 0.8vw;}
  4. ::-webkit-scrollbar-track { border-radius: 0px; background-color: #8f0101;}
  5. ::-webkit-scrollbar-thumb { border: 0.4vh solid #610101; border-radius:0px; background-color: #FFFFFF;}
  6.  
  7. body{
  8.  background-color: #000000;
  9.  background-image:url('http://i.imgur.com/AKfmHBv.png');
  10. }
  11.  
  12. .player{
  13.  position: relative;
  14.  z-index: 5;
  15.  width: 45px;
  16.  border: 0.3vw solid #FFFFFF;
  17.  background: #8f0101;
  18.  box-shadow: -0.3vw 0.3vw 0.3vw #000000;
  19.  overflow: hidden;
  20. }
  21.  
  22. #image{
  23.  position: fixed;
  24.  z-index: 6;
  25.  bottom: 0vh;
  26.  right: 0vw;
  27.  width: 30vw;
  28.  opacity:0;
  29.  -webkit-animation:picturein 0.5s 1;
  30.  animation:picturein 0.5s 1;
  31.  animation-delay:1s;
  32.  animation-fill-mode:forwards;
  33.  -webkit-animation-delay:1s;
  34.  -webkit-animation-fill-mode:forwards;
  35. }
  36. #image img{
  37.  height: 98.5vh;
  38.  border: 0.5vw solid #610101;
  39.  box-shadow: -0.5vw 0.5vw 0.5vw #000000;
  40. }
  41.  
  42. @keyframes picturein{
  43. from{opacity:0; right: -30vw;}
  44. to{opacity:1;}
  45. }
  46. @-webkit-keyframes statanim{
  47. from{opacity:0; right: -30vw;}
  48. to{opacity:1;}
  49. }
  50.  
  51. #titlebar{
  52.  position: fixed;
  53.  z-index: 1;
  54.  left: 12vw;
  55.  top: 8.2vh;
  56.  width: 60vw;
  57.  height: 7.5vh;
  58.  background: #8f0101;
  59.  border-bottom: 0.5vw solid #610101;
  60.  border-left: 0.5vw solid #610101;
  61.  overflow: hidden;
  62.  -ms-transform: skewX(30deg);
  63.  -webkit-transform: skewX(30deg);
  64.  transform: skewX(30deg);
  65.  box-shadow: -0.5vw 0.5vw 0.5vw #000000;
  66.  opacity:0;
  67.  -webkit-animation:titlebarin 0.5s 1;
  68.  animation:titlebarin 0.5s 1;
  69.  animation-delay:2s;
  70.  animation-fill-mode:forwards;
  71.  -webkit-animation-delay:2s;
  72.  -webkit-animation-fill-mode:forwards;
  73. }
  74.  
  75. @keyframes titlebarin{
  76. from{opacity:1; left: 80vw;}
  77. to{opacity:1; left: 12vw;}
  78. }
  79. @-webkit-keyframes titlebarin{
  80. from{opacity:1; left: 80vw;}
  81. to{opacity:1; left: 12vw;}
  82. }
  83.  
  84. #titlebar2{
  85.  position: fixed;
  86.  z-index: 1;
  87.  left: 12vw;
  88.  top: 0vh;
  89.  width: 60vw;
  90.  height: 7.5vh;
  91.  background: #8f0101;
  92.  border-top: 0.5vw solid #610101;
  93.  border-left: 0.5vw solid #610101;
  94.  overflow: hidden;
  95.  -ms-transform: skewX(-30deg);
  96.  -webkit-transform: skewX(-30deg);
  97.  transform: skewX(-30deg);
  98.  opacity:0;
  99.  -webkit-animation:titlebarin 0.5s 1;
  100.  animation:titlebarin 0.5s 1;
  101.  animation-delay:2s;
  102.  animation-fill-mode:forwards;
  103.  -webkit-animation-delay:2s;
  104.  -webkit-animation-fill-mode:forwards;
  105. }
  106.  
  107. @keyframes titlebarin{
  108. from{opacity:1; left: 80vw;}
  109. to{opacity:1; left: 12vw;}
  110. }
  111. @-webkit-keyframes titlebarin{
  112. from{opacity:1; left: 80vw;}
  113. to{opacity:1; left: 12vw;}
  114. }
  115.  
  116. #infobackground{
  117.  position: fixed;
  118.  z-index: 0;
  119.  top: 15vh;
  120.  left: 20vw;
  121.  height: 83.5vh;
  122.  width: 49vw;
  123.  background: #8f0101;
  124.  border-bottom: 0.5vw solid #610101;
  125.  border-left: 0.5vw solid #610101;
  126.  border-right: 0.5vw solid #610101;
  127.  box-shadow: -0.5vw 0.5vw 0.5vw #000000;
  128.  overflow: hidden;
  129.  color: #000000;
  130.  font-family: Cinzel;
  131.  font-size: 10vh;
  132.  opacity:0;
  133.  -webkit-animation:infobackin 0.5s 1;
  134.  animation:infobackin 0.5s 1;
  135.  animation-delay:2.5s;
  136.  animation-fill-mode:forwards;
  137.  -webkit-animation-delay:2.5s;
  138.  -webkit-animation-fill-mode:forwards;
  139. }
  140.  
  141. @keyframes infobackin{
  142. from{opacity:0; top: -30vw;}
  143. to{opacity:1; top: 15vh;}
  144. }
  145. @-webkit-keyframes infobackin{
  146. from{opacity:0; top: -30vw;}
  147. to{opacity:1; top: 15vh;}
  148. }
  149.  
  150. #infobox{
  151.  position: static;
  152.  z-index: 2;
  153.  top: 15vh;
  154.  left: 20vw;
  155.  height: 83.5vh;
  156.  width: 49vw;
  157.  overflow: hidden;
  158.  color: #000000;
  159.  text-shadow: -0.2vw 0.2vw 0.2vw #610101;
  160.  font-family: Cinzel;
  161.  font-size: 4.5vh;
  162.  opacity:0;
  163.  -webkit-animation:infoboxin 0.5s 1;
  164.  animation:infoboxin 0.5s 1;
  165.  animation-delay:2.5s;
  166.  animation-fill-mode:forwards;
  167.  -webkit-animation-delay:2.5s;
  168.  -webkit-animation-fill-mode:forwards;
  169. }
  170.  
  171. @keyframes infoboxin{
  172. from{opacity:0;}
  173. to{opacity:1;}
  174. }
  175. @-webkit-keyframes infoboxin{
  176. from{opacity:0;}
  177. to{opacity:1;}
  178. }
  179.  
  180. #name{
  181.  position: fixed;
  182.  z-index:2;
  183.  left: 18vw;
  184.  top: -2.5vh;
  185.  color: #FFFFFF;
  186.  text-shadow: -0.3vw 0.3vw 0.3vw #610101;
  187.  font-family: Cinzel;
  188.  font-size: 9vw;
  189.  letter-spacing: 0.5vw;
  190.  opacity:0;
  191.  -webkit-animation:namefade 0.5s 1;
  192.  animation:namefade 0.5s 1;
  193.  animation-delay:2.5s;
  194.  animation-fill-mode:forwards;
  195.  -webkit-animation-delay:2.5s;
  196.  -webkit-animation-fill-mode:forwards;
  197. }
  198.  
  199. @keyframes namefade{
  200. from{opacity:0;}
  201. to{opacity:1;}
  202. }
  203. @-webkit-keyframes namefade{
  204. from{opacity:0;}
  205. to{opacity:1;}
  206. }
  207.  
  208. #buttonbackground{
  209.  position: fixed;
  210.  z-index: -3;
  211.  top: 14.5vh;
  212.  left: 16.5vw;
  213.  width: 2.5vw;
  214.  height: 20vh;
  215.  background-color: #8f0101;
  216.  border-right: 0.3vw solid #610101;
  217.  border-bottom: 0.3vw solid #610101;
  218.  box-shadow: -0.5vw 0.5vw 0.5vw #000000;
  219.  -ms-transform: skewY(-30deg);
  220.  -webkit-transform: skewY(-30deg);
  221.  transform: skewY(-30deg);
  222.  opacity:0;
  223.  -webkit-animation:buttonslide 0.3s 1;
  224.  animation:buttonslide 0.3s 1;
  225.  animation-delay:3s;
  226.  animation-fill-mode:forwards;
  227.  -webkit-animation-delay:3s;
  228.  -webkit-animation-fill-mode:forwards;
  229. }
  230.  
  231. @keyframes buttonslide{
  232. from{opacity:1; top: 0vw;}
  233. to{opacity:1; top: 14.5vh;}
  234. }
  235. @-webkit-keyframes buttonslide{
  236. from{opacity:1; top: 0vw;}
  237. to{opacity:1; top: 14.5vh;}
  238. }
  239.  
  240. #buttonbackground2{
  241.  position: fixed;
  242.  z-index: -3;
  243.  top: 14.5vh;
  244.  left: 13.8vw;
  245.  width: 2.5vw;
  246.  height: 20vh;
  247.  background-color: #8f0101;
  248.  border-left: 0.3vw solid #610101;
  249.  border-bottom: 0.3vw solid #610101;
  250.  box-shadow: -0.5vw 0.5vw 0.5vw #000000;
  251.  -ms-transform: skewY(30deg);
  252.  -webkit-transform: skewY(30deg);
  253.  transform: skewY(30deg);
  254.  opacity:0;
  255.  -webkit-animation:buttonslide 0.3s 1;
  256.  animation:buttonslide 0.3s 1;
  257.  animation-delay:3s;
  258.  animation-fill-mode:forwards;
  259.  -webkit-animation-delay:3s;
  260.  -webkit-animation-fill-mode:forwards;
  261. }
  262.  
  263. @keyframes buttonslide{
  264. from{opacity:1; top: 0vw;}
  265. to{opacity:1; top: 14.5vh;}
  266. }
  267. @-webkit-keyframes buttonslide{
  268. from{opacity:1; top: 0vw;}
  269. to{opacity:1; top: 14.5vh;}
  270. }
  271.  
  272. #buttons {
  273.  z-index:2;
  274.  list-style-type: none;
  275.  margin: 0;
  276.  padding: 0;
  277.  width: 5vw;
  278.  background-color: transparent;
  279.  position: fixed;
  280.  top: 18vh;
  281.  left: 14vw;
  282.  overflow: auto;
  283.  font-family: Cinzel;
  284.  opacity:0;
  285.  -webkit-animation:buttonfade 0.5s 1;
  286.  animation:buttonfade 0.5s 1;
  287.  animation-delay:3.3s;
  288.  animation-fill-mode:forwards;
  289.  -webkit-animation-delay:3.3s;
  290.  -webkit-animation-fill-mode:forwards;
  291. }
  292.  
  293. @keyframes buttonfade{
  294. from{opacity:0;}
  295. to{opacity:1;}
  296. }
  297. @-webkit-keyframes buttonfade{
  298. from{opacity:0;}
  299. to{opacity:1;}
  300. }
  301.  
  302. #buttons a {
  303.  display: block;
  304.  color: #FFFFFF;
  305.  text-shadow: -0.2vw 0.2vw 0.2vw #610101;
  306.  font-size: 2vh;
  307.  padding: 1vh 0vh 1vh 0vh;
  308.  text-decoration: none;
  309.  transition: all 0.3s ease-in-out;
  310.  -moz-transition: all 0.3s ease-in-out;
  311.  -webkit-transition: all 0.3s ease-in-out;
  312. }
  313.  
  314. #buttons a:hover{
  315.  background-color: #610101;
  316.  color:#8f0101;
  317.  text-shadow: -0.2vw 0.2vw 0.2vw #000000;
  318.  font-size: 2vh;
  319. }
  320.  
  321. #credit{
  322.  position: fixed;
  323.  left: 0vw;
  324.  bottom: 0vh;
  325.  color: #FFFFFF;
  326.  text-shadow: -0.2vw 0.2vw 0.2vw #000000;
  327.  font-family: Cinzel;
  328.  font-size: 2.5vh;
  329. }
  330.  
  331. h1{
  332.  color: #FFFFFF;
  333.  text-shadow: -0.2vw 0.2vw 0.2vw #610101;
  334.  font-family: Cinzel;
  335.  font-size: 4.5vh;
  336.  letter-spacing: 1.5vw;
  337.  font-weight: normal;
  338. }
  339.  
  340. h2{
  341.  color: #000000;
  342.  text-shadow: -0.1vw 0.1vw 0.1vw #610101;
  343.  font-family: Cinzel;
  344.  font-size: 3.5vh;
  345.  font-weight: normal;
  346. }
  347.  
  348. h3{
  349.  color: #FFFFFF;
  350.  text-shadow: -0.2vw 0.2vw 0.2vw #610101;
  351.  font-family: Cinzel;
  352.  font-size: 5vh;
  353.  letter-spacing: 1.5vw;
  354.  font-weight: normal;
  355. }
  356.  
  357. h4{
  358.  color: #000000;
  359.  text-shadow: -0.1vw 0.1vw 0.1vw #610101;
  360.  font-family: Cinzel;
  361.  font-size: 4vh;
  362.  font-weight: normal;
  363. }
  364.  
  365. hr{
  366.  border: 0.2vh solid #FFFFFF;
  367.  outline: 0.2vw solid #610101;
  368.  box-shadow: -0.2vw 0.2vw 0.2vw #610101;
  369.  width: 90%;
  370. }
  371. </style>
  372.  
  373.  
  374. <div id="image">
  375. <img src="http://i.imgur.com/lVLBXoE.png">
  376. </div>
  377.  
  378. <div id="titlebar">
  379. </div>
  380. <div id="titlebar2">
  381. </div>
  382.  
  383. <div id="credit">
  384. Code by Aishurel
  385. <br>
  386. Please steal
  387. </div>
  388.  
  389. <div id="name">
  390.  Trevoiaus
  391. </div>
  392.  
  393. <div id="buttonbackground">
  394. </div>
  395.  
  396. <div id="buttonbackground2">
  397. </div>
  398.  
  399. <div id="buttons">
  400. <center>
  401. <a href="#stats"><b>Stats</b></a>
  402. <a href="#bio"><b>Bio</b></a>
  403. <a href="#ooc"><b>OOC</b></a>
  404. </center>
  405. </div>
  406.  
  407. <div id="infobackground">
  408. <div id="infobox">
  409. <center>
  410. <div style="height: 100%; overflow-y: hidden;">
  411. <a name="stats"></a>
  412. <div style="width:100%; height: 100%; top: 100px; overflow: auto;" align="center">
  413. <h1>Age</h1>
  414. 30's
  415. <h1>Orientation</h1>
  416. "Eh..."
  417. <h1>Position</h1>
  418. Dominant
  419. <hr>
  420. <h1>Voice samples</h1>
  421. <h2>This character is occasionally voice-acted by the writer</h2>
  422. <div class="player"><audio controls><source src="http://orig14.deviantart.net/f445/f/2016/162/5/a/trevoiaus_one_by_rashayritto-da5uro6.mp3" type="audio/mpeg"></audio></div>
  423. <div class="player"><audio controls><source src="http://orig13.deviantart.net/6aad/f/2016/162/6/9/trevoiaus_two_by_rashayritto-da5urnr.mp3" type="audio/mpeg"></audio></div>
  424. <div class="player"><audio controls><source src="http://orig14.deviantart.net/f797/f/2016/162/8/a/trevoiaus_three_by_rashayritto-da5urnj.mp3" type="audio/mpeg"></audio></div>
  425. </div>
  426.  
  427. <a name="bio"></a>
  428. <div style="width:100%; height: 100%; top: 100px; overflow: auto;" align="center">
  429. <br>
  430. Gruff, tough, and probably
  431. <h3>rough</h3>
  432. --Trev wanders wherever his whims take him to indulge in bad habits and
  433. <h3>bad women</h3>
  434. He isn't one to be bothered with starting trouble like a lot of younger males with something to prove. He keeps to himself and lets his
  435. <h3>presence</h3>
  436. do the talking. Bold approaches are the best way to catch this lion's eye--though he's
  437. <h3>not easily impressed</h3>
  438. Catch him in the right mood or take a rain check for later--
  439. <h3>no offense</h3>
  440. </div>
  441.  
  442. <a name="ooc"></a>
  443. <div style="width:100%; height: 100%; top: 100px; overflow: auto;" align="center">
  444. <h3>Room RP preferred</h3>
  445. Semi to para+
  446. <h3>Not here to date you</h3>
  447. Image is not mine
  448. <h3>Steal my code</h3>
  449. But you'll have some big shoes to fill
  450. </div>
  451. </div>
  452. </center>
  453. </div>
  454. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement