diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-02-10 22:30:20 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-02-10 23:39:22 +0100 |
commit | 0b80dd9da688d9d8d4393cfa31b341c718265179 (patch) | |
tree | 8695abbd77bb2e71e7cecd5f2b9d48472acae7a9 /css | |
parent | 77d1847e2de8077cea8854a15406a99c14aee2d8 (diff) |
Add daily data when user clicks a day:
- Heavy use of function passing
- SVG graphs
- A lot of fun
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css index cf7626d..50d1abb 100644 --- a/css/style.css +++ b/css/style.css @@ -17,6 +17,7 @@ body{ .day-forecast { border-radius: 5px; border: 1px solid lightgrey; + cursor: pointer; } .day-forecast h2 { @@ -48,3 +49,15 @@ footer{ margin-right: 1rem; margin-left: 1rem; } + +.temp-label{ + font-size: 4px; + text-anchor: middle; +} +.weather-label{ + font-size: 8px; + text-anchor: middle; +} +.graph-line{ + stroke: lightgrey; +} |