github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/components/inline-definitions.scss (about)

     1  .inline-definitions {
     2    .label {
     3      text-transform: uppercase;
     4      display: inline-block;
     5      color: darken($grey-blue, 20%);
     6      margin-right: 2rem;
     7      margin-bottom: 0;
     8      font-size: inherit;
     9      font-weight: $weight-semibold;
    10    }
    11  
    12    &.is-faded {
    13      color: darken($grey-blue, 20%);
    14    }
    15  
    16    .pair {
    17      margin-right: 2em;
    18      white-space: nowrap;
    19  
    20      &.is-wrappable {
    21        white-space: normal;
    22        display: block;
    23        .tag {
    24          vertical-align: middle;
    25        }
    26      }
    27  
    28      .term {
    29        font-weight: $weight-semibold;
    30        margin-right: 0.5em;
    31      }
    32  
    33      &.is-faded {
    34        color: darken($grey-blue, 20%);
    35      }
    36  
    37      .has-emphasis {
    38        color: $text;
    39        font-weight: $weight-semibold;
    40      }
    41    }
    42  
    43    .icon-field {
    44      display: flex;
    45      margin-left: -1em;
    46      .icon-container {
    47        width: 1.5em;
    48      }
    49    }
    50  
    51    &.is-small {
    52      font-size: $size-7;
    53    }
    54  }