X-Git-Url: https://pwan.org/git/?a=blobdiff_plain;f=src%2Fstylesheets%2Fbase.scss;h=eb6f48c47637e15753fee456e2da7f7436ace07d;hb=3b8f1f7e9ba745532e0a7a58c44009eaa86e6efc;hp=4a59d22636b631020aa03cd9cd3d0c40fd7271e5;hpb=39e4c825ef452111149e52862f5ea32a00789a46;p=tech-radar.git diff --git a/src/stylesheets/base.scss b/src/stylesheets/base.scss index 4a59d22..eb6f48c 100644 --- a/src/stylesheets/base.scss +++ b/src/stylesheets/base.scss @@ -1,17 +1,12 @@ @import 'colors'; body { - font: 9px 'Open Sans'; + font: 11px 'Open Sans'; } svg { padding: 20px; - .first { fill: $green; } - .second { fill: $blue; } - .third { fill: $orange; } - .fourth { fill: $violet; } - circle { &:nth-child(1) { stroke: none; fill: $grey-light; } &:nth-child(2) { stroke: none; fill: $grey; } @@ -19,8 +14,15 @@ svg { &:nth-child(4) { stroke: none; fill: $grey-darkest; } } + .blip-group { + cursor: pointer; + } + circle, polygon { - stroke: $white; + &.first { fill: $green; stroke: $white; } + &.second { fill: $blue; stroke: $white; } + &.third { fill: $orange; stroke: $white; } + &.fourth { fill: $violet; stroke: $white; } } line { @@ -28,16 +30,58 @@ svg { } text { - .blip-text { + &.first { fill: $green; } + &.second { fill: $blue; } + &.third { fill: $orange; } + &.fourth { fill: $violet; } + + &.first, &.second, &.third, &.fourth { + font-size: 16px; + font-weight: bold; + } + + &.blip-text { + font-size: 9px; font-style: italic; fill: $white; } - .line-text { - font-size: 16px; + &.blip-name { + font-size: 12px; + font-weight: bold; + fill: $black; + display: none; + } + + &.line-text { font-weight: bold; text-transform: uppercase; fill: $black; } } } + +.radar-ref-table { + width: 1080px; + font-size: 16px; + line-height: 26px; + padding: 20px; + + tr:nth-child(odd) { + background: $grey-darkest; + } + + tr:nth-child(even) { + background: $grey; + } + + td { + padding: 10px 15px; + } + + tr.radar-ref-status-group { + font-size: 20px; + font-weight: bold; + background: $grey-lightest; + } +}