web


git clone https://radroots.dev/git/web.git
Log | Files | Refs | Submodules | README | LICENSE

apps-base.css (917B)


      1 :root {
      2     background-color: #000000;
      3 }
      4 
      5 html {
      6     @apply select-none cursor-none;
      7 }
      8 
      9 select:focus {
     10     outline: none;
     11 }
     12 
     13 button:focus {
     14     outline: none;
     15 }
     16 
     17 select {
     18     appearance: none;
     19     -webkit-appearance: none;
     20     -moz-appearance: none;
     21     background: transparent;
     22     background-image: none;
     23 }
     24 
     25 select::-ms-expand {
     26     display: none;
     27 }
     28 
     29 div:focus {
     30     outline: 4px solid transparent;
     31 }
     32 
     33 .scroll-hide::-webkit-scrollbar {
     34     display: none;
     35 }
     36 
     37 .scroll-hide {
     38     -ms-overflow-style: none;
     39     scrollbar-width: none;
     40 }
     41 
     42 @keyframes fade-in {
     43     from {
     44         opacity: 0;
     45     }
     46 
     47     to {
     48         opacity: 1;
     49     }
     50 }
     51 
     52 .fade-in {
     53     opacity: 0;
     54     animation: fade-in 250ms ease-in-out forwards;
     55 }
     56 
     57 .fade-in-long {
     58     opacity: 0;
     59     animation: fade-in 350ms ease-in-out forwards;
     60 }
     61 
     62 .pre-wrap-text {
     63     white-space: pre-wrap;
     64 }
     65 
     66 .flex-fluid {
     67     width: 100%;
     68     height: 100%;
     69     flex: 1 0 100%;
     70 }