initial data and graph

This commit is contained in:
Matt Walsh
2025-05-15 16:04:57 -05:00
parent 93ac03acd4
commit 5946ee495a
13 changed files with 259 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,61 @@
@use 'shared/_colors'as c;
@use 'shared/_utils'as u;
#spc-outlook-html.weather-display {
background-image: url('../images/backgrounds/6.png');
}
.weather-display .spc-outlook {
.container {
position: relative;
top: 0px;
margin: 0px 10px;
box-sizing: border-box;
height: 300px;
overflow: hidden;
}
.risk-levels {
position: absolute;
left: 206px;
font-family: 'Star4000 Small';
font-size: 32px;
@include u.text-shadow();
.risk-level {
position: relative;
top: -14px;
height: 20px;
}
}
.days {
position: absolute;
top: 120px;
.day {
height: 60px;
.day-name {
position: absolute;
font-family: 'Star4000';
font-size: 24pt;
width: 200px;
text-align: right;
@include u.text-shadow();
padding-top: 20px;
}
.risk-bar {
position: absolute;
width: 150px;
height: 40px;
left: 210px;
margin-top: 20px;
border: 3px outset hsl(0, 0%, 70%);
background: linear-gradient(0deg, hsl(0, 0%, 40%) 0%, hsl(0, 0%, 60%) 50%, hsl(0, 0%, 40%) 100%);
}
}
}
}

View File

@@ -12,4 +12,5 @@
@use 'regional-forecast';
@use 'almanac';
@use 'hazards';
@use 'media';
@use 'media';
@use 'spc-outlook';