summaryrefslogtreecommitdiff
path: root/css/style.css
blob: b3a5a606a6e9516422fef5e77eda568e22885111 (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
39
40
41
42
43
44
45
46
47
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;
}

footer{
  font-style: italic;
  font-size: smaller;
  text-align: right;
  padding: 0.3rem;
  margin-right: 1rem;
  margin-left: 1rem;
}