universe

Universe
git clone https://git.dasho.dev/universe.git
Log | Files | Refs | Submodules | README

badges.css (513B)


      1 .badge {
      2  display: inline-block;
      3  min-width: 2.1em;
      4  padding: 0.3em;
      5  border-radius: 50%;
      6  font-size: 0.6rem;
      7  text-align: center;
      8  background: #1779ba;
      9  color: #fefefe;
     10 }
     11 .badge.primary {
     12  background: #1779ba;
     13  color: #fefefe;
     14 }
     15 .badge.secondary {
     16  background: #767676;
     17  color: #fefefe;
     18 }
     19 .badge.success {
     20  background: #3adb76;
     21  color: #0a0a0a;
     22 }
     23 .badge.warning {
     24  background: #ffae00;
     25  color: #0a0a0a;
     26 }
     27 .badge.alert {
     28  background: var(--red);
     29  color: #fefefe;
     30 }