github.com/hernad/nomad@v1.6.112/ui/app/styles/core/typography.scss (about) 1 /** 2 * Copyright (c) HashiCorp, Inc. 3 * SPDX-License-Identifier: MPL-2.0 4 */ 5 6 a { 7 color: $blue; 8 text-decoration: underline; 9 10 &:hover { 11 color: $blue; 12 text-decoration: underline; 13 } 14 } 15 16 code { 17 color: currentColor; 18 background: transparent; 19 text-transform: none; 20 padding: 0; 21 font-size: 1em; 22 } 23 24 .nowrap { 25 white-space: nowrap; 26 } 27 28 .is-interactive { 29 cursor: pointer; 30 } 31 32 .is-faded { 33 color: darken($grey-blue, 20%); 34 }