mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 15:49:31 -07:00
38 lines
730 B
SCSS
38 lines
730 B
SCSS
@use 'shared/_colors'as c;
|
|
@use 'shared/_utils'as u;
|
|
@use 'shared/positions'as p;
|
|
|
|
#hazards-html.weather-display {
|
|
background-image: url('../images/backgrounds/7.png');
|
|
}
|
|
|
|
.weather-display .main.hazards {
|
|
&.main {
|
|
overflow-y: hidden;
|
|
height: p.$standard-height;
|
|
background-color: rgb(112, 35, 35);
|
|
|
|
|
|
.hazard-lines {
|
|
min-height: 400px;
|
|
padding-top: 10px;
|
|
|
|
.hazard {
|
|
font-family: 'Star4000';
|
|
font-size: 24pt;
|
|
color: white;
|
|
@include u.text-shadow(0px);
|
|
position: relative;
|
|
text-transform: uppercase;
|
|
margin-top: 10px;
|
|
margin-left: 80px;
|
|
margin-right: 80px;
|
|
padding-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.wide.hazards #container {
|
|
background: url(../images/backgrounds/7-wide.png);
|
|
} |