defango

http://canium.org/asset/main.css

Jan 19th, 2019
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.29 KB | None | 0 0
  1. @font-face {
  2.     font-family: 'code';
  3.     src: url(code.woff);
  4. }
  5.  
  6. body {
  7.     background-color: #000000;
  8.     width: 100%;
  9.     font-family: 'code';
  10.     margin: 0 0 0 0;
  11.     font-size: 15px;
  12.     overflow-x: hidden;
  13. }
  14.  
  15. #caniumlogo {
  16.     width: 4%;
  17.     margin-top: 20px;
  18.     margin-left: 95%;
  19. }
  20.  
  21. @keyframes fadein {
  22.     0% {
  23.         background-color: #000000;
  24.         color: #ffffff;
  25.     }
  26.     50% {
  27.         background-color: #ffffff;
  28.         color: #000000;
  29.     }
  30.     100% {
  31.         background-color: #000000;
  32.         color: #ffffff;
  33.     }
  34. }
  35.  
  36. #command {
  37.     color: #FF0000;
  38. }
  39.  
  40. #loading {
  41.     margin-left: 15px;
  42.     color: #ffffff;
  43.     margin-top: 5px;
  44. }
  45.  
  46. #input {
  47.     border: none;
  48.     display: inline-block;
  49.     background-color: rgba(0, 0, 0, 0);
  50.     color: #ff0000;
  51.     font-size: 15px;
  52.     font-family: 'code';
  53.     width: 90%;
  54. }
  55.  
  56. input:focus {
  57.     outline: none;
  58. }
  59.  
  60. #log {
  61.     color: #ffffff;
  62. }
  63.  
  64. #cursor {
  65.     color: #ffffff;
  66.     animation-name: fadein;
  67.     animation-duration: 4s;
  68.     animation-iteration-count: infinite;
  69. }
  70.  
  71. #input-cap {
  72.     width: 100%;
  73.     display: inline-block;
  74.     animation-name: fadein;
  75.     animation-duration: 4s;
  76.     animation-iteration-count: infinite;
  77.     margin-top: 10px;
  78. }
  79.  
  80. @media only screen and (max-width: 600px) {
  81.             #caniumlogo{
  82.                 width: 12%;
  83.                 margin-top: 10px;
  84.                 margin-left: 85%;
  85.                 }
  86.           }
Add Comment
Please, Sign In to add comment