summaryrefslogtreecommitdiff
path: root/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/style.css')
-rw-r--r--css/style.css24
1 files changed, 14 insertions, 10 deletions
diff --git a/css/style.css b/css/style.css
index 459fdec..f7b9eaa 100644
--- a/css/style.css
+++ b/css/style.css
@@ -8,29 +8,30 @@ body{
}
.forecast > h1,
-.day-forecast {
+.day-forecast-container {
margin: 0.5rem;
padding: 0.3rem;
font-size: 1.2rem;
}
-.day-forecast {
+.day-forecast-container{
border-radius: 5px;
border: 1px solid lightgrey;
cursor: pointer;
+ background-color: whitesmoke;
}
-
-.day-forecast h2 {
- font-size: 1.1rem;
-}
-
-.day-forecast{
+.day-forecast {
+ display: flex;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
- background-color: whitesmoke;
}
+
+.day-forecast h2 {
+ font-size: 1.1rem;
+}
+
.day-forecast-text{
min-width: 200px;
margin: 0 2rem;
@@ -65,5 +66,8 @@ footer{
text-transform: lowercase;
}
.day-forecast-text p:first-letter {
-text-transform: uppercase;
+ text-transform: uppercase;
+}
+.hourly-forecast {
+ width: 100%;
}