Advertisement
BappidyBoopidy

Really Simple Filler Code [Come Steal]

Dec 22nd, 2016
690
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.46 KB | None | 0 0
  1. <style>
  2. /*
  3. INVISIBLE CREDIT; PLEASE DON'T REMOVE
  4.  
  5. Author: Elle
  6. For: Anyone
  7. Text type: CSS/HTML
  8. */
  9.   @import url('https://fonts.googleapis.com/css?family=Fredericka+the+Great');
  10.   ::-webkit-scrollbar {width:0.3vw;height:0.3vh;}
  11.   ::-webkit-scrollbar-track {border-radius: 0px;background:transparent;}
  12.   ::-webkit-scrollbar-thumb {border-radius: 0px;background:transparent;}
  13.  
  14.   body {
  15.     overflow:hidden;
  16.     background: #222229;
  17.   }
  18.  
  19.   #coding {
  20.     position:fixed;
  21.     width: 100%;
  22.     height: 10%;
  23.     background: transparent;
  24.     left: 0%;
  25.     right: 0%;
  26.     top: 25%;
  27.     font-family: Fredericka the Great;
  28.     font-size: 400%;
  29.     color: #eee;
  30.     animation: pulse 4s 1;
  31.     -webkit-animation: pulse 4s 1;
  32.     animation-fill-mode: forwards;
  33.     -webkit-animation-fill-mode: forwards;
  34.     animation-iteration-count: infinite;
  35.     animation-direction: alternate;
  36.   }
  37.  
  38.   @keyframes pulse{
  39.     from{opacity:1;}
  40.     to{opacity:0;}
  41.   }
  42.  
  43.   @-webkit-keyframes pulse{
  44.     opacity{opacity:1;}
  45.     to{opacity:0;}
  46.   }
  47.  
  48.   #typing {
  49.     position: fixed;
  50.     width: 100%;
  51.     height: 5%;
  52.     background: transparent;
  53.     top: 37%;
  54.     left: 0%;
  55.     right: 0%;
  56.   }
  57.  
  58.   #elle {
  59.     position: absolute;
  60.     font-family: Fredericka the Great;
  61.     font-size: 3.5vh;
  62.     left: 42.5%;
  63.     color: #eee;
  64.   }
  65.  
  66.   #dot1 {
  67.     position: absolute;
  68.     font-family: Fredericka the Great;
  69.     font-size: 3.5vh;
  70.     left: 54.5%;
  71.     color: #eee;
  72.     opacity: 0;
  73.     animation: beep 1.5s 1;
  74.     -webkit-animation: beep 1.5s 1;
  75.     animation-iteration-count: infinite;
  76.     animation-direction: alternate;
  77.   }
  78.  
  79.   @keyframes beep{
  80.     from{opacity:0;}
  81.     to{opacity:1;}
  82.   }
  83.  
  84.   @-webkit-keyframes beep{
  85.     from{opacity:0;}
  86.     to{opacity:1;}
  87.   }
  88.  
  89.   #dot2 {
  90.     position: absolute;
  91.     font-family: Fredericka the Great;
  92.     font-size: 3.5vh;
  93.     left: 55.2%;
  94.     color: #eee;
  95.     opacity: 0;
  96.     animation: throb 1.5s 1;
  97.     -webkit-animation: throb 1.5s 1;
  98.     animation-delay: 0.5s;
  99.     -webkit-animation-delay: 0.5s;
  100.     animation-iteration-count: infinite;
  101.     animation-direction: alternate;
  102.   }
  103.  
  104.   @keyframes throb{
  105.     from{opacity:0;}
  106.     to{opacity:1;}
  107.   }
  108.  
  109.   @-webkit-keyframes throb{
  110.     from{opacity:0;}
  111.     to{opacity:1;}
  112.   }
  113.  
  114.   #dot3 {
  115.     position: absolute;
  116.     font-family: Fredericka the Great;
  117.     font-size: 3.5vh;
  118.     left: 55.9%;
  119.     color: #eee;
  120.     opacity: 0;
  121.     animation: flicker 1.5s 1;
  122.     -webkit-animation: flicker 1.5s 1;
  123.     animation-delay: 1s;
  124.     -webkit-animation-delay: 1s;
  125.     animation-iteration-count: infinite;
  126.     animation-direction: alternate;
  127.   }
  128.    
  129.   @keyframes flicker{
  130.     from{opacity:0;}
  131.     to{opacity:1;}
  132.   }
  133.  
  134.   @-webkit-keyframes flicker{
  135.     from{opacity:0;}
  136.     to{opacity:1;}
  137.   }
  138.  
  139.   #img {
  140.     position: fixed;
  141.     width: 100%;
  142.     height: 40%;
  143.     background: transparent;
  144.     left: 0%;
  145.     right: 0%;
  146.     bottom: 17%;
  147.     z-index: -1;
  148.   }
  149.  
  150.   #credit {
  151.     position: fixed;
  152.     width: 15%;
  153.     height: 3%;
  154.     background: rgba(0,0,0,0.4);
  155.     border-left: 5px solid;
  156.     border-color: #474747;
  157.     bottom: 8%;
  158.     left: 42%;
  159.     right: 0%;
  160.     font-family: Fredericka the Great;
  161.     font-size: 2vh;
  162.     color: #eee;
  163.   }
  164.  
  165.   a {
  166.     text-decoration: none;
  167.     color: #a3c6ff;
  168.   }
  169.  
  170.   a:hover {
  171.     color: #39547f;
  172.     transition-duration: 0.5s;
  173.   }
  174.  
  175.   #text {
  176.     position: fixed;
  177.     height: 40%;
  178.     width: 37%;
  179.     background: transparent;
  180.     top: 43%;
  181.     left: 31.5%;
  182.   }
  183.    
  184.   #text:hover #help{
  185.     opacity: 1;
  186.     transition-duration: 1s;
  187.   }
  188.  
  189.   #help {
  190.     position: fixed;
  191.     height: 15%;
  192.     width: 30%;
  193.     background: transparent;
  194.     top: 55%;
  195.     left: 35%;
  196.     opacity: 0;
  197.     transition-duration: 1s;
  198.   }
  199. </style>
  200. <div id="coding"><center>Coding in Progress</center></div>
  201. <div id="typing">
  202.   <div id="elle">Elle is typing</div>
  203.   <div id="dot1">.</div>
  204.   <div id="dot2">.</div>
  205.   <div id="dot3">.</div>
  206. </div>
  207. <div id="img">
  208.   <center><img src="https://i.gyazo.com/3a1d27f17c3c17e6343bd66669520bc7.gif" style="height:100%"></center>
  209. </div>
  210. <div id="credit">
  211.    <center>
  212.      &copy; <a href="https://roleplay.chat/profile.php?user=Elsie">Elle.</a> Get the code <a href="http://pastebin.com/WKhkjpZH">here.</a>
  213.    </center>
  214. </div>
  215. <div id="text">
  216.   <div id="help">
  217.     <center><img src="http://i.imgur.com/SQC1BWa.png" style="float: center;"></center>
  218.   </div>
  219. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement