github.com/hernad/nomad@v1.6.112/ui/app/styles/components/inline-definitions.scss (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 .inline-definitions { 7 .label { 8 text-transform: uppercase; 9 display: inline-block; 10 color: darken($grey-blue, 20%); 11 margin-right: 2rem; 12 margin-bottom: 0; 13 font-size: inherit; 14 font-weight: $weight-semibold; 15 } 16 17 &.is-faded { 18 color: darken($grey-blue, 20%); 19 } 20 21 .pair { 22 margin-right: 2em; 23 white-space: nowrap; 24 25 &.is-wrappable { 26 white-space: normal; 27 display: block; 28 .tag { 29 vertical-align: middle; 30 } 31 } 32 33 .term { 34 font-weight: $weight-semibold; 35 margin-right: 0.5em; 36 } 37 38 &.is-faded { 39 color: darken($grey-blue, 20%); 40 } 41 42 .has-emphasis { 43 color: $text; 44 font-weight: $weight-semibold; 45 } 46 } 47 48 .icon-field { 49 display: flex; 50 margin-left: -1em; 51 .icon-container { 52 width: 1.5em; 53 } 54 } 55 56 &.is-small { 57 font-size: $size-7; 58 } 59 }