add dewpoint to hourly and expand to 36 hours

This commit is contained in:
Matt Walsh
2026-01-17 11:42:26 -06:00
parent 34dedb44c1
commit 320d3139c3
6 changed files with 74 additions and 29 deletions

View File

@@ -11,7 +11,7 @@
right: 60px;
width: 360px;
font-family: 'Star4000 Small';
font-size: 32px;
font-size: 28px;
@include u.text-shadow();
text-align: right;
@@ -23,6 +23,10 @@
color: red;
}
.dewpoint {
color: green;
}
.cloud {
color: lightgrey;
}
@@ -52,32 +56,33 @@
.x-axis {
bottom: 0px;
left: 0px;
width: 640px;
left: 54px;
width: 532px;
height: 20px;
.label {
text-align: center;
width: 50px;
transform: translateX(-50%);
white-space: nowrap;
&.l-1 {
left: 25px;
left: 0px;
}
&.l-2 {
left: 158px;
left: calc(532px / 4 * 1);
}
&.l-3 {
left: 291px;
left: calc(532px / 4 * 2);
}
&.l-4 {
left: 424px;
left: calc(532px / 4 * 3);
}
&.l-5 {
left: 557px;
left: calc(532px / 4 * 4);
}
}
@@ -110,10 +115,14 @@
}
&.l-2 {
top: 140px;
top: calc(280px / 3);
}
&.l-3 {
bottom: calc(280px / 3 - 11px);
}
&.l-4 {
bottom: 0px;
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long