tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

_DSMessage.scss (748B)


      1 .ds-message {
      2  margin: var(--space-small) 0 0;
      3 
      4  .title {
      5    display: flex;
      6    align-items: center;
      7 
      8    .glyph {
      9      width: 16px;
     10      height: 16px;
     11      margin: 0 var(--space-small) 0 0;
     12      -moz-context-properties: fill;
     13      fill: var(--newtab-text-secondary-color);
     14      background-position: center center;
     15      background-size: 16px;
     16      background-repeat: no-repeat;
     17    }
     18 
     19    .title-text {
     20      font-size: var(--font-size-small);
     21      color: var(--newtab-text-secondary-color);
     22      font-weight: var(--heading-font-weight);
     23      padding-inline-end: var(--space-medium);
     24    }
     25 
     26    .link {
     27      font-size: var(--font-weight-small);
     28 
     29      &:hover,
     30      &:focus {
     31        text-decoration: underline;
     32      }
     33    }
     34  }
     35 }