mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 15:49:31 -07:00
33 lines
560 B
SCSS
33 lines
560 B
SCSS
@use 'shared/_colors'as c;
|
|
@use 'shared/_utils'as u;
|
|
@use 'shared/positions'as p;
|
|
|
|
.weather-display .local-forecast {
|
|
|
|
// clamp width to standard
|
|
&.main {
|
|
width: calc(p.$standard-width - (2 * p.$blue-box-margin));
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
top: 15px;
|
|
margin: 0px 10px;
|
|
box-sizing: border-box;
|
|
height: 280px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.forecasts {
|
|
position: relative;
|
|
}
|
|
|
|
.forecast {
|
|
font-family: 'Star4000';
|
|
font-size: 24pt;
|
|
text-transform: uppercase;
|
|
@include u.text-shadow();
|
|
min-height: 280px;
|
|
line-height: 40px;
|
|
}
|
|
} |