-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (44 loc) · 941 Bytes
/
styles.css
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
48
49
50
51
:root {
--primary-color: #3498db;
--secondary-color: #148543;
--background-color: #2c3e50;
--text-color: #aebbbe;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
color: var(--text-color);
background-color: var(--background-color);
padding: 10px;
}
#weatherInfo {
background-color: var(--primary-color);
border-radius: 2px;
color: var(--text-color);
display: flex;
justify-content: flex-start;
text-align: center;
align-items: stretch;
flex-direction: row;
flex-wrap: wrap;
}
[id^="variable-"] {
background-color: var(--secondary-color);
margin: 5px;
}
#weatherInfo h3 {
margin: 0;
padding: 10px;
color: var(--background-color);
font-size: 1.45em;
}
#weatherInfo p {
margin: 0;
padding: 10px;
color: var(--background-color);
font-size: 1.5em;
}
#map {
height: 300px;
width: 50%;
border-radius: 8px;
}