diff options
author | Ekaitz <ekaitz@elenq.tech> | 2023-01-30 11:53:23 +0100 |
---|---|---|
committer | Ekaitz <ekaitz@elenq.tech> | 2023-01-30 11:57:29 +0100 |
commit | 89ed26b8399441a5f3543a3cda4ea580318a9f8c (patch) | |
tree | c8018b481f345f95abf97159d823f40ce9bf4248 /css/style.css | |
parent | d701b1e01c36f6fe7bf372884ccf7dd2fda95577 (diff) |
Make styles cleaner:
- max-width
- make day forecast heading selector work
- day forecast bg color to whitesmoke
S
Diffstat (limited to 'css/style.css')
-rw-r--r-- | css/style.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/css/style.css b/css/style.css index 6e22d00..cf7626d 100644 --- a/css/style.css +++ b/css/style.css @@ -2,8 +2,9 @@ body{ background-color: #eee; } .forecast { - margin: 0; + margin: auto; padding: 0.3rem; + max-width: 800px; } .forecast > h1, @@ -18,9 +19,8 @@ body{ border: 1px solid lightgrey; } -.day-forecast > h2 { - margin: 0.2rem; - font-size: 1rem; +.day-forecast h2 { + font-size: 1.1rem; } .day-forecast{ @@ -28,6 +28,7 @@ body{ flex-wrap: wrap; justify-content: space-between; align-items: center; + background-color: whitesmoke; } .day-forecast-text{ min-width: 200px; |