From 49d09432980747f7713f1b5131b0573d15916920 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Wed, 25 Jan 2023 16:26:55 +0100 Subject: Add styles --- css/style.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 css/style.css diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..50720ae --- /dev/null +++ b/css/style.css @@ -0,0 +1,26 @@ +body{ + background-color: #eee; +} +.forecast { + margin: 0; + padding: 0.3rem; +} + +.forecast > h1, +.day-forecast { + margin: 0.5rem; + padding: 0.3rem; + font-size: 1.2rem; +} + +.day-forecast { + border-radius: 5px; + border: 1px solid lightgrey; + background: right/contain content-box border-box no-repeat url('/media/examples/rain.svg') white; +} + +.day-forecast > h2, +.day-forecast > p { + margin: 0.2rem; + font-size: 1rem; +} -- cgit v1.2.3