Files
WeatherStar4000/server/styles/scss/_hazards.scss
2025-06-01 23:25:07 -05:00

29 lines
517 B
SCSS

@use 'shared/_colors'as c;
@use 'shared/_utils'as u;
.weather-display .main.hazards {
&.main {
overflow-y: hidden;
height: 480px;
.hazard-lines {
min-height: 400px;
padding-top: 10px;
background-color: rgb(112, 35, 35);
.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;
}
}
}
}