Advertisement
weeblet

Untitled

Nov 1st, 2021
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.28 KB | None | 0 0
  1. *{
  2.     margin: 0px;
  3.     padding: 0px;
  4.     transition: all 100ms;
  5.     font-family: monospace !important;
  6. }
  7.  
  8. ::-webkit-scrollbar {
  9.     width: 2px;
  10.     height: 2px;
  11.     background: transparent;  
  12. }
  13. ::-webkit-scrollbar-thumb {
  14.     background: gray;
  15. }
  16.  
  17. a{
  18.     color: cyan;
  19.     font-weight: bold;
  20.     text-decoration: none;
  21. }
  22.  
  23. a:hover{
  24.     background-color: darkcyan;
  25.     color: cyan;
  26. }
  27.  
  28. body{
  29.     color: white;
  30.     background-image: url("../media/background.png");
  31.     background-size: cover;
  32.     background-repeat: no-repeat;
  33.     background-attachment:fixed;
  34.     background-position-y: center;
  35.     background-position-x: center;
  36.  
  37.     overflow: hidden;
  38.     width: 100%;
  39.     height: 100%;
  40. }
  41.  
  42. .topBar{
  43.     /* padding: 3px; */
  44.     width: 100vw;
  45.     background-color: navy;
  46.     opacity: 0.8;
  47.     font-size: medium;
  48. }
  49.  
  50. .console{
  51.     max-height: 90vh;
  52.     margin: 10px;
  53.     margin-top: 3vh;
  54.     padding: 10px;
  55.     background-color: #1f2125;
  56.     outline: 2px solid black;
  57.     opacity: 0.85;
  58.     font-size: x-large;
  59.     line-height: 1.07;
  60.     overflow: scroll;
  61. }
  62.  
  63. .console:hover{
  64.     opacity: 0.9;
  65. }
  66.  
  67. blink{ animation: cursor-blink 1.5s steps(2) infinite;}
  68. @keyframes cursor-blink {
  69.   0% {
  70.     opacity: 0;
  71.   }
  72. }
  73.  
  74. details summary{
  75.     cursor: pointer;
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement