2022-08-05 19:03:14 +00:00
|
|
|
@use 'shared/_colors'as c;
|
|
|
|
@use 'shared/_utils'as u;
|
2022-07-29 21:12:42 +00:00
|
|
|
|
2022-08-04 16:25:17 +00:00
|
|
|
.weather-display .main.current-weather {
|
|
|
|
&.main {
|
2022-07-29 21:12:42 +00:00
|
|
|
|
|
|
|
.col {
|
|
|
|
height: 50px;
|
|
|
|
width: 255px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 10px;
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
@include u.text-shadow();
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
font-family: 'Star4000 Extended';
|
|
|
|
font-size: 24pt;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
2022-08-03 21:32:13 +00:00
|
|
|
right: 0px;
|
2022-07-29 21:12:42 +00:00
|
|
|
font-family: 'Star4000 Large';
|
2022-09-23 20:12:10 +00:00
|
|
|
font-size: 16pt;
|
2022-07-29 21:12:42 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
.row {
|
2022-08-03 21:32:13 +00:00
|
|
|
margin-bottom: 12px;
|
2022-07-29 21:12:42 +00:00
|
|
|
|
|
|
|
.label,
|
|
|
|
.value {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.value {
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.temp {
|
|
|
|
font-family: 'Star4000 Large';
|
|
|
|
font-size: 24pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.condition {}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
height: 100px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 126px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wind-container {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
&>div {
|
|
|
|
width: 45%;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wind-label {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wind {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wind-gusts {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.location {
|
|
|
|
color: c.$title-color;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|