Advertisement
BappidyBoopidy

Code Coffee

Mar 17th, 2017 (edited)
1,151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 9.79 KB | None | 0 0
  1. <style>
  2.  
  3. /*
  4.  
  5. INVISIBLE CREDIT; PLEASE DON'T REMOVE
  6.  
  7. Author: Elle
  8. For: Winters [RPC Profile]
  9. Date of Completion: March 17, 2017; 5:28 AM EST
  10. Language: CSS/HTML
  11.  
  12. */
  13.  
  14.  @import url('https://fonts.googleapis.com/css?family=Sacramento|Teko|Wire+One|Yesteryear');
  15.  
  16.  ::-webkit-scrollbar{width:0.5vh;height:0.1vh;}
  17.  ::-webkit-scrollbar-track{border-radius:0;background:transparent;}
  18.  ::-webkit-scrollbar-thumb{border-radius:0;background:#774f29;}
  19.  
  20.  
  21.  
  22.  /* fonts */
  23.  
  24.   *{font-family: 'Teko', sans-serif;font-size: 2.8vh;color:#3a2715;}
  25.  
  26.   a{font-family:'Sacramento', cursive;color:#7c5133;text-decoration:none;transition-duration:0.5s;}
  27.  
  28.   a:hover{color: #686868; transition-duration:0.5s;}
  29.  
  30.   h1{font-family:'Yesteryear',cursive;font-size:4vh;color:#774f29;}
  31.  
  32.   b{color:#663c30;}
  33.  
  34.   i{color:#704113;}
  35.  
  36.   .r{float:right;}
  37.  
  38.  
  39.  
  40.  
  41.   body{
  42.     background: #898989;
  43.   }
  44.  
  45.  
  46.  
  47.  
  48.  
  49.   /*makes sure the image is undraggable and unselectable*/
  50.  
  51.   img {
  52.     user-select: none;
  53.     user-drag: none;
  54.     -ms-user-select: none;
  55.     -moz-user-select: none;
  56.     -webkit-user-select: none;
  57.     -webkit-user-drag: none;
  58.   }
  59.  
  60.  
  61.  
  62.  
  63.  
  64. /* boxes and hover effects */
  65.  
  66.   #magic{
  67.     position: fixed;
  68.     height: 90%;
  69.     width: 100%;
  70.     left: 0;
  71.     top: 5%;
  72.     z-index: 1;
  73.   }
  74.  
  75.   #main{
  76.     position: fixed;
  77.     height: 100%;
  78.     width: 20%;
  79.     right:70%;
  80.     top:0;
  81.     z-index: -1;
  82.     transition-duration: 1s;
  83.   }
  84.  
  85.   #magic:hover #main{
  86.     right: 49%;
  87.     transition-duration: 1s;
  88.   }
  89.  
  90.   #box {
  91.     position: fixed;
  92.     height: 70%;
  93.     width:60%;
  94.     top: 17%;
  95.     left: 1%;
  96.     opacity: 0;
  97.     transition-duration: 1s;
  98.   }
  99.  
  100.   #magic:hover #box{
  101.     top: 20%;
  102.     opacity: 1;
  103.     transition-duration: 1s;
  104.     transition-delay: 1.5s;
  105.   }
  106.  
  107.   #host{
  108.     height:100%;
  109.     width:100%;
  110.     overflow:hidden;
  111.     }
  112.  
  113.   #bio, #friends, #ooc{
  114.     height:94%;
  115.     width:96%;
  116.     overflow:auto;
  117.     background: rgba(196, 166, 127,0.85);
  118.     border: 5px solid;
  119.     border-radius: 5%;
  120.     padding:10px;
  121.   }
  122.  
  123.   #stats{
  124.   height:100%;
  125.   width:100%;
  126.   overflow:hidden;
  127.   }
  128.  
  129.   #box1, #box2{
  130.    float:left;
  131.    background: rgba(196, 166, 127,0.85);
  132.     border: 5px solid;
  133.     border-radius: 5%;
  134.     height:94%;
  135.     padding:10px;
  136.     width:46%;
  137.     overflow:hidden;
  138.   }
  139.  
  140.   #quote{
  141.     position:fixed;
  142.     font-size: 10vh;
  143.     text-shadow: rgba(0,0,0,0.4) 0.3vh 0.3vh 0.3vh;
  144.     height: auto;
  145.     width: auto;
  146.     top:7.5%;
  147.     left: 6%;
  148.     transition-duration: 1s;
  149.     opacity:0;
  150.   }
  151.  
  152.   #magic:hover #quote{
  153.     top:10.5%;
  154.     transition-duration: 1s;
  155.     transition-delay: 2.5s;
  156.     opacity: 1;
  157.   }
  158.  
  159.   #navi{
  160.     position: fixed;
  161.     font-size: 5vh;
  162.     text-shadow: rgba(0,0,0,1) 0.3vh 0.3vh 0.3vh;
  163.     height: auto;
  164.     width: auto;
  165.     top: 7.5%;
  166.     left: 45%;
  167.     transition-duration: 1s;
  168.     opacity: 0;
  169.   }
  170.  
  171.   #magic:hover #navi{
  172.     top: 10.5%;
  173.     transition-duration: 1s;
  174.     transition-delay: 3.5s;
  175.     opacity:1;
  176.   }
  177.  
  178.  
  179.  
  180.   /* change default size of links for the navi */
  181.  
  182.  
  183.   a.size{
  184.     font-size:10vh;
  185.     }
  186.    
  187.  
  188.  
  189.  
  190.  
  191. /* animation for the navigation buttons; just delete this if you don't want it */
  192.  
  193.  
  194.   a.n{
  195.     animation: jump 0.5s 1;
  196.     -webkit-animation: jump 0.5s 1;
  197.     animation-iteration-count: infinite;
  198.     animation-fill-mode: forwards;
  199.     -webkit-animation-fill-mode: forwards;
  200.     animation-direction:alternate;
  201.   }
  202.  
  203.   a.a{
  204.     animation: jump 0.5s 1;
  205.     -webkit-animation: jump 0.5s 1;
  206.     animation-iteration-count: infinite;
  207.     animation-fill-mode: forwards;
  208.     -webkit-animation-fill-mode: forwards;
  209.     animation-direction:alternate;
  210.     animation-delay: 0.5s;
  211.   }
  212.  
  213.   a.v{
  214.     animation: jump 0.5s 1;
  215.     -webkit-animation: jump 0.5s 1;
  216.     animation-iteration-count: infinite;
  217.     animation-fill-mode: forwards;
  218.     -webkit-animation-fill-mode: forwards;
  219.     animation-direction:alternate;
  220.     animation-delay: 1s;
  221.   }
  222.  
  223.   a.i{
  224.     animation: jump 0.5s 1;
  225.     -webkit-animation: jump 0.5s 1;
  226.     animation-iteration-count: infinite;
  227.     animation-fill-mode: forwards;
  228.     -webkit-animation-fill-mode: forwards;
  229.     animation-direction:alternate;
  230.     animation-delay: 1.5s;
  231.   }
  232.  
  233.   @keyframes jump{
  234.     from{opacity:1;}
  235.     to{opacity:0.7;}
  236.   }
  237.  
  238.   @-webkit-keyframes jump{
  239.     from{opacity:1;}
  240.     to{opacity:0.7;}
  241.   }
  242.  
  243.  
  244.  
  245.   /* transition between tabs */
  246.  
  247.   #stats:target, #bio:target, #friends:target, #ooc:target{
  248.     animation: pop 1s 1;
  249.     -webkit-animation: pop 1s 1;
  250.     animation-fill-mode: forwards;
  251.     -webkit-animation-fill-mode: forwards;
  252.   }
  253.  
  254.   @keyframes pop{
  255.     from{opacity:0;}
  256.     to{opacity:1;}
  257.   }
  258.  
  259.   @-webkit-keyframes pop{
  260.     from{opacity:0;}
  261.     to{opacity;1;}
  262.   }
  263.  
  264.  
  265.  
  266.  
  267.  
  268.   /* VISIBLE CREDIT PLEASE DON'T REMOVIE */
  269.  
  270.   #credit {
  271.     position: fixed;
  272.     bottom: 3%;
  273.     right: 2%;
  274.     background: rgba(255,255,255,0.3);
  275.     border-left: 2px solid;
  276.     border-color: #fff;
  277.     padding: 3px;
  278.     text-shadow: #000 0.1vh 0.1vh 0.1vh;
  279.     z-index: 1;
  280.   }
  281.  
  282.  
  283. </style>
  284. <div id="magic">
  285. <div id="main">
  286.   <img src="https://static1.e621.net/data/be/f7/bef77334d33c9eb3ec626e705b8d66a9.jpg" height="100%">
  287. </div>
  288.  
  289. <div id="box">
  290.   <div id="host">
  291.     <div id="stats">
  292.       <div id="box1">
  293.         <center><h1>Statistics</h1></center>
  294.         <b>Name</b><div class="r">Winters</div><br>
  295.         <b>Moniker</b><div class="r">Snow? Idk coffee</div><br>
  296.         <b>Age</b><div class="r">23 y.o. [?]</div><br>
  297.         <b>Gender</b><div class="r">Female</div><br>
  298.         <b>Marital Status</b><div class="r">Single</div><br>
  299.         <b>Height</b><div class="r">5'3</div><br>
  300.        <b>Figure</b><div class="r">Fit</div><br>
  301.        <b>Other things</b><div class="r">Just copy paste as required</div>
  302.      </div>
  303.      <div id="box2">
  304.        <center><h1>What did you want here?</h1></center>
  305.        normal <b>bold</b> <i>italicized</i> <u>underlined</u> <s>strikethrough</s>
  306.        <a href="URL HERE">links</a>
  307.      </div>
  308.    </div>
  309.    <br>
  310.    <div id="bio">
  311.      <center><h1>Biography</h1></center>
  312.      <center>This is the part where you write about your pretty lil character's backstory. Sob story,
  313.         happy story, angry story. You name it! I'm just typing this out unneccessarily so you can see if
  314.        the text will look good even in paragprah form. If it hurts the eyes, if it's too compressed. Ya know,
  315.         things like that we can edit in and out depending on your preference. Now, I'm going to go ahead and skip
  316.        down a few lines so you can see the scrollbar because at this point in my coding, I haven't seen it myself
  317.         and I wanna see if it will fit the whole color scheme. So... <i>NYOOM!</i>
  318.         <br><br><br><br><br><br><br><br><br><br>
  319.         Oh ew! HALP! Well obviously when I send this to you, you're not going to see it anymore but the
  320.        scroll bar is... <i>gags.</i> It has a white track and a grey thumb. <i><b>Which does not fit my color scheme!</b></i>
  321.        Lemme fix that real quick.<br>
  322.        <i>scrolls up to the CSS portion</i><br>
  323.        .... <s>I didn't put in the specifications for the scrollbar!!</s> No wonder.<br>
  324.         <i>A few edits later...</i><br>
  325.         Okay there we go~ Looks good to me. Now onto the next tab! <i>NYOOM!</i>
  326.       </center>
  327.     </div>
  328.     <br>
  329.     <div id="friends">
  330.       <center><h1>Relations</h1></center>
  331.       <center>
  332.        <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  333.       <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br>
  334.       <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  335.       <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br>
  336.       <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  337.       <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br>
  338.       <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  339.       <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br>
  340.       <a target="_blank" href="PROFILE LINK HERE"><img src="IMAGE LINK HERE" height="75" width="75" align="left" border="3"></a>
  341.       <center><b>- Name -</b><br> <i>foe/friend/neutral</i></center> small note.<br><br><br>
  342.      </center>
  343.     </div>
  344.     <br>
  345.     <div id="ooc">
  346.       <center><h1>Out of Character</b></h1></center>
  347.       <b>✬</b> In-room approach is your best bet.<br>
  348.       <b>✬</b> PM picky.<br>
  349.       <b>✬</b> Other OOC bullets just copy-paste as needed.<br>
  350.       <center><h1>Typist's Information</h1></center>
  351.      <b>✬</b> Obviously you can forego this portion, but just in case you want someone to contact you outside of RPC.<br>
  352.      <b>✬</b> Skype: _____<br>
  353.      <b>✬</b> Femme/Homme AF<br>
  354.      <b>✬</b> 20 y.o.
  355.    </div>
  356.  </div>
  357. </div>
  358. <div id="quote">
  359.  Insert a quote here
  360. </div>
  361. <!-- REMOVE ANIMATION NAVI HTML CODE
  362.  
  363. <div id="navi>
  364.  <a href="#stats" class="size">n</a>
  365.  <a href="#bio" class="size">a</a>
  366.  <a href="#friends" class="size">v</a>
  367.  <a href="#ooc" class="size">i</a>
  368.  
  369. -->
  370. <div id="navi">
  371.  <a href="#stats" class="n size">n</a>
  372.  <a href="#bio" class="a size">a</a>
  373.  <a href="#friends" class="v size">v</a>
  374.  <a href="#ooc" class="i size">i</a>
  375. </div>
  376. </div>
  377. <!-- VISIBLE CREDIT; PLEASE DON'T REMOVE -->
  378. <div id="credit">
  379.   &copy; <a href="https://themonstrousdev.github.io/" target="_blank">The Monster.</a> Send an RPC mail to <b>Deum</b> for any questions
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement