BappidyBoopidy

Code Vici Quad

Feb 10th, 2017 (edited)
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.28 KB | None | 0 0
  1. <style>
  2. /*
  3. ======== !! IMPORTANT !! DO NOT REMOVE ANY PART OF THIS SECTION =========
  4.  
  5. Author: Elle
  6. For: Vici [RPC Profile]
  7. Text type: CSS/HTML
  8. SOURCE: https://pastebin.com/raw/92vbJB4m -
  9. */
  10.  @import url('https://fonts.googleapis.com/css?family=Amatic+SC|Great+Vibes|Pacifico|Satisfy|Dancing+Script');
  11.  
  12.  ::-webkit-scrollbar{width:0.3vh;height:0.3vh;}
  13.  ::-webkit-scrollbar-thumb{border-radius:0;background:#000;}
  14.  ::-webkit-scrollbar-track{border-radius:0;background:transparent;}
  15.  
  16.  body {
  17.    background-image: url('https://s-media-cache-ak0.pinimg.com/736x/d2/c0/2f/d2c02f8cbad58e3596959d05dcce4282.jpg');
  18.  }
  19.  
  20.  #sheet {
  21.    position: fixed;
  22.    height: 100%;
  23.    width: 100%;
  24.    top: 0%;
  25.    bottom: 0%;
  26.    left: 0%;
  27.    right: 0%;
  28.    background: rgba(0,0,0,0.15);
  29.  }
  30.  
  31. /* Amatic SC = information ; Great Vibes = quotes ; Pacifico = h1? ; Satisy = links probs */
  32.  
  33.  #center {
  34.    position: fixed;
  35.    height: 90%;
  36.    width: 100%;
  37.    left: 0%;
  38.    top: 5%;
  39.    background: transparent;
  40.  }
  41.  
  42.  #quote1 {
  43.    position: absolute;
  44.    height: 70%;
  45.    width: 30%;
  46.    left: 5%;
  47.    text-align: center;
  48.    font-family: 'Great Vibes';
  49.    font-size: 7vh;
  50.    transition-duration: 1s;
  51.  }
  52.  
  53.   #quote2 {
  54.    position: absolute;
  55.    height: 70%;
  56.    width: 30%;
  57.    right: 5%;
  58.    text-align: center;
  59.    font-family: 'Great Vibes';
  60.    font-size: 7vh;
  61.    transition-duration: 1s;
  62.  }
  63.  
  64.  #center:hover #quote1, #center:hover #quote2 {
  65.    opacity: 0;
  66.    transition-duration: 1s;
  67.  }
  68.  
  69.  #box1 {
  70.    position: absolute;
  71.    background: rgba(0,0,0,0.6);
  72.    height: 70%;
  73.    width: 20%;
  74.    border-radius: 5%;
  75.    top: 15%;
  76.    right: 40%;
  77.    transition-duration: 1.5s;
  78.    opacity: 0;
  79.    font-family: 'Amatic SC';
  80.    color:#fff;
  81.    padding: 5px;
  82.    font-size: 2.5vh;
  83.    overflow: auto;
  84.  }
  85.  
  86.  #center:hover #box1 {
  87.    opacity: 1;
  88.    right: 1%;
  89.    transition-duration: 1.5s;
  90.  }
  91.  
  92.  #box2 {
  93.    position: absolute;
  94.    background: rgba(0,0,0,0.6);
  95.    height: 70%;
  96.    width: 50%;
  97.    border-radius: 5%;
  98.    top: 15%;
  99.    right: 25%;
  100.    transition-duration: 1.5s;
  101.    font-family: 'Amatic SC';
  102.    opacity: 0;
  103.    font-size: 2.7vh;
  104.    padding: 5px;
  105.  }
  106.  
  107.  #center:hover #box2 {
  108.    opacity: 1;
  109.    transition-duration: 1.5s;
  110.  }
  111.  
  112.  #img {
  113.    position: absolute;
  114.    height: 100%;
  115.    width: 15%;
  116.    top: 0%;
  117.    right: 45%;
  118.    transition-duration: 1.5s;
  119.    background: transparent;
  120.  }
  121.  
  122.  #center:hover #img {
  123.    right: 83%;
  124.    transition-duration: 1.5s;
  125.  }
  126.  
  127.  #host{height:100%;width:100%;overflow:hidden;}
  128.  
  129.  #stats, #bio, #ooc {height:100%;width:100%;overflow:auto;color:#fff;}
  130.  
  131.  h1{font-family:'Dancing Script';font-size:4vh;text-decoration:underline;}
  132.  
  133.  a{font-family:'Satisfy';text-decoration:none;color:#f09eff;transition-duration:1s;}
  134.  
  135.  a:hover{font-size:110%;transition-duration:1s;}
  136.  
  137.  .r{float:right;}
  138.  
  139.  b{color:#95c1f4;}
  140.  
  141.  #navigation {
  142.    position: absolute;
  143.    height: 40%;
  144.    width: 2.5%;
  145.    background: transparent;
  146.    right: 22%;
  147.    top: 30%;
  148.  }
  149.  
  150.  #nav1 {
  151.    position: absolute;
  152.    height: 10%;
  153.    width: 80%;
  154.    top: 20%;
  155.    background: rgba(0,0,0,0.6);
  156.    border: 3px solid;
  157.    border-color: rgba(0,0,0,0.9);
  158.    opacity: 0;
  159.    transition-duration: 1s;
  160.  }
  161.  
  162.   #nav2 {
  163.     position: absolute;
  164.     height: 10%;
  165.     width: 80%;
  166.     top: 50%;
  167.     background: rgba(0,0,0,0.6);
  168.     border: 3px solid;
  169.     border-color: rgba(0,0,0,0.9);
  170.     opacity: 0;
  171.     transition-duration: 1s;
  172.   }
  173.  
  174.   #nav3 {
  175.     position: absolute;
  176.     height: 10%;
  177.     width: 80%;
  178.     top: 80%;
  179.     background: rgba(0,0,0,0.6);
  180.     border: 3px solid;
  181.     border-color: rgba(0,0,0,0.9);
  182.     opacity: 0;
  183.     transition-duration: 1s;
  184.   }
  185.  
  186.   #center:hover #nav1, #center:hover #nav2, #center:hover #nav3{opacity:1;transition-duration: 0.5s;}
  187.  
  188.   #nav1:hover, #nav2:hover, #nav3:hover{
  189.     border-radius: 100%;
  190.     transition-duration: 0.5s;
  191.     transform: rotate(360deg);
  192.     border-color: rgba(0,0,0,0.6);
  193.     background: rgba(0,0,0,0.9);
  194.   }
  195.  
  196.  /* Credit. please don't remove! */
  197.  
  198.  #credit {
  199.    position: absolute;
  200.    background: rgba(0,0,0,0.4);
  201.    border-left: rgb(255,255,255);
  202.    font-family: 'Amatic SC';
  203.    font-size: 2.3vh;
  204.    padding: 3px;
  205.    bottom: 5%;
  206.    left: 3%;
  207.  }
  208.  
  209. </style>
  210. <div id="sheet"></div>
  211. <div id="center">
  212.   <div id="quote1"><center><br><br><br><br>Insert some fancy quote here<br>Boi</center></div>
  213.   <div id="quote2"><center><br><br><br><br>Insert some cute quote here<br>Girl</center></div>
  214.   <div id="img"><img src="http://i.picpar.com/BFmc.png" style="height: 100%;"></div>
  215.   <div id="box1">
  216.     <center><h1>Siblings</h1></center>
  217.     <a href="URL HERE">.quad1</a>.kaela.quote<br>
  218.     <a href="URL HERE">.quad2</a>.mema.quote<br>
  219.     <a href="URL HERE">.quad3</a>.who.quote<br>
  220.     <center><h1>Friends</h1></center>
  221.     <a href="URL HERE">.name</a>.info.quote<br>
  222.     <a href="URL HERE">.name</a>.info.quote<br>
  223.     <a href="URL HERE">.name</a>.info.quote<br>
  224.     <a href="URL HERE">.name</a>.info.quote<br>
  225.     <a href="URL HERE">.name</a>.info.quote<br>
  226.     <a href="URL HERE">.name</a>.info.quote<br>
  227.     <a href="URL HERE">.name</a>.info.quote<br>
  228.     <a href="URL HERE">.name</a>.info.quote<br>
  229.     <a href="URL HERE">.name</a>.info.quote<br>
  230.   </div>
  231.   <div id="box2">
  232.     <div id="host">
  233.       <div id="stats">
  234.         <center><h1>Stats</h1></center>
  235.         <font style="font-size:3vh;">
  236.         <b>Name</b><div class="r">Vici Muliercula</div><br>
  237.         <b>Moniker</b><div class="r">V</div><br>
  238.         <b>Gender</b><div class="r">Female</div><br>
  239.         <b>Age</b><div class="r">20 y.o.</div><br>
  240.         <b>Species</b><div class="r">Nekomimi</div><br>
  241.         <b>Persona</b><div class="r">Sassy, Tsundere AF</div><br>
  242.         <b>Height</b><div class="r">5'1</div><br>
  243.        <b>Weight</b><div class="r">102 lbs</div><br>
  244.        <b>Marital Status</b><div class="r">Single</div><br>
  245.        <b>Orientation</b><div class="r">Demisexual</div><br>
  246.        </font>
  247.      </div>
  248.      <div id="bio">
  249.        <center><h1>Biography</h1>
  250.          .Work.In.Progress.<br>
  251.          Come back later.
  252.        </center>
  253.      </div>
  254.      <div id="ooc">
  255.        <center><h1>Out Of Character</h1></center>
  256.        <b>ღ</b> In-room approach is your best bet.<br>
  257.        <b>ღ</b> Smut is earned.<br>
  258.        <b>ღ</b> I reserve the right to make you disappear [or ignore you, whichever is convenient].<br>
  259.        <b>ღ</b> I'm actually friendlier than my character.<br>
  260.         <b>ღ</b> PM Picky.<br>
  261.         <b>ღ</b> No profile = immediate no.<br>
  262.         <b>ღ</b> Better be ready to dish what you serve.<br>
  263.         <b>ღ</b> LT is preferred.<br>
  264.         <b>ღ</b> Planned or impromptu. Doesn't matter.<br>
  265.        <center><h1>Typist Information</h1></center>
  266.        <b>ღ</b> Femme AF Binch<br>
  267.        <b>ღ</b> 20 y.o.<br>
  268.      </div>
  269.    </div>
  270.  </div>
  271.  <div id="navigation">
  272.    <a href="#stats"><div id="nav1"></div></a>
  273.    <a href="#bio"><div id="nav2"></div></a>
  274.    <a href="#ooc"><div id="nav3"></div></a>
  275.  </div>
  276. </div>
  277. <!-- CREDIT. PLEASE DON'T REMOVE -->
  278. <div id="credit">
  279.   &copy; <a href="https://www.themonster.xyz/" target="_blank">The Monster</a> Send RPC mail to <b>Deum</b> for inquiries~
  280. </div>
  281. <script src="https://www.themonster.xyz/profiles/Addons/free.js"></script>
Add Comment
Please, Sign In to add comment