Sha256: 83459bc7c3a96de64b3af7ef7b6d71f3d636171f26988b2de62900fbb0409d79
Contents?: true
Size: 1.03 KB
Versions: 9
Compression:
Stored size: 1.03 KB
Contents
.areachart{ //common svg{ background-color: darken($light-gray, 2.5); overflow: visible; border-radius: 3px; } .title{ fill: $muted; text-transform: uppercase; font-weight: 600; } .area{ fill: rgba(var(--primary-rgb), .05); } .line{ fill: none; stroke: rgba(var(--primary-rgb), .2); stroke-width: 4px; } .circle{ fill: rgba(var(--primary-rgb), .2); } .tick{ opacity: .5; .dashed{ stroke-dasharray: 1, 3; } } .sum{ font-weight: 600; font-size: rem-calc(map-get(map-get(map-get($header-styles, medium), 'h1'), 'font-size')) * 1.5; } // color-dependent $map: $foundation-palette; @each $key, $value in $map{ &.#{$key}{ .area{ fill: rgba($value, .05); } .line{ stroke: rgba($value, .2); } .circle{ fill: rgba($value, .2); } } } // variations &.small{ .sum{ font-size: rem-calc(map-get(map-get(map-get($header-styles, medium), 'h3'), 'font-size')); } } }
Version data entries
9 entries across 9 versions & 1 rubygems