mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-14 15:49:31 -07:00
49 lines
654 B
SCSS
49 lines
654 B
SCSS
@use 'shared/_colors'as c;
|
|
@use 'shared/_utils'as u;
|
|
|
|
.weather-display .main.regional-forecast {
|
|
|
|
|
|
position: relative;
|
|
|
|
.map {
|
|
position: absolute;
|
|
transform-origin: 0 0;
|
|
}
|
|
|
|
.location {
|
|
position: absolute;
|
|
width: 140px;
|
|
margin-left: -40px;
|
|
margin-top: -35px;
|
|
|
|
>div {
|
|
position: absolute;
|
|
@include u.text-shadow();
|
|
}
|
|
|
|
.icon {
|
|
top: 26px;
|
|
left: 44px;
|
|
|
|
img {
|
|
max-height: 32px;
|
|
}
|
|
}
|
|
|
|
.temp {
|
|
font-family: 'Star4000 Large';
|
|
font-size: 28px;
|
|
padding-top: 2px;
|
|
color: c.$title-color;
|
|
top: 28px;
|
|
text-align: right;
|
|
width: 40px;
|
|
}
|
|
|
|
.city {
|
|
font-family: Star4000;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
} |