ws4kp-linhanced/server/styles/scss/_current-weather.scss

102 lines
1.3 KiB
SCSS
Raw Normal View History

2022-08-05 14:03:14 -05:00
@use 'shared/_colors'as c;
@use 'shared/_utils'as u;
2022-07-29 16:12:42 -05:00
2022-08-04 11:25:17 -05:00
.weather-display .main.current-weather {
&.main {
2022-07-29 16:12:42 -05:00
.col {
height: 50px;
width: 255px;
display: inline-block;
margin-top: 10px;
padding-top: 10px;
2022-07-29 16:12:42 -05:00
position: absolute;
@include u.text-shadow();
&.left {
font-family: 'Star4000 Extended';
font-size: 24pt;
}
&.right {
right: 0px;
font-family: "Star4000 Large";
font-size: 20px;
2022-07-29 16:12:42 -05:00
font-weight: bold;
line-height: 24px;
2022-07-29 16:12:42 -05:00
.row {
margin-bottom: 12px;
2022-07-29 16:12:42 -05: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;
2025-05-21 13:55:27 -05:00
max-height: 32px;
2022-07-29 16:12:42 -05:00
margin-bottom: 10px;
padding-top: 4px;
2025-05-21 13:55:27 -05:00
overflow: hidden;
text-wrap: nowrap;
2022-07-29 16:12:42 -05:00
}
}
}