summaryrefslogtreecommitdiff
path: root/css/style.css
blob: 1fed4ea73637333686ed67b170be57ff6a677aa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
}

.day-forecast{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.day-forecast-text{
  min-width: 200px;
}
.day-forecast-image{
  padding: 1em;
}