meshviewer/scss/modules/_legend.scss
2017-10-29 15:11:40 +01:00

52 lines
738 B
SCSS

header {
h1 {
display: inline-block;
}
}
.language-switch {
background: transparent;
border: 0;
color: $color-black;
float: right;
margin: 20px 16px 0 0;
option {
background: $color-white;
}
}
.legend {
.symbol {
border-radius: 50%;
display: inline-block;
height: 1em;
vertical-align: -5%;
width: 1em;
}
}
// Dot looks compared to thin font a bit darker - lighten it 10%
.legend-new {
.symbol {
background-color: lighten($color-new, 10%);
}
}
.legend-online {
.symbol {
background-color: lighten($color-online, 10%);
}
}
.legend-offline {
.symbol {
background-color: lighten($color-offline, 10%);
}
}
.legend-online,
.legend-offline {
margin-left: 1em;
}