31 lines
504 B
SCSS
31 lines
504 B
SCSS
$primary-color: 0, 123, 160;
|
|
$primary-color-translucent: rgba($primary-color, 0.7);
|
|
Hud
|
|
{
|
|
}
|
|
.primary-color-background {
|
|
background-color: rgb($primary-color);
|
|
}
|
|
.primary-color-translucent-background {
|
|
background-color: $primary-color-translucent;
|
|
}
|
|
label
|
|
{
|
|
font-family: Poppins;
|
|
color: white;
|
|
font-size: 32px;
|
|
|
|
&.subtitle
|
|
{
|
|
font-size: 16px;
|
|
}
|
|
|
|
&.header {
|
|
font-size: 48px;
|
|
}
|
|
|
|
&.material-icon {
|
|
font-family: "Material Icons";
|
|
}
|
|
}
|