-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (61 loc) · 1.13 KB
/
style.css
File metadata and controls
72 lines (61 loc) · 1.13 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
html {
font-size: min(max(2rem, 4vw), 30px);
padding: calc(8px + 1.5625vw);
text-align: center;
}
header {
padding: calc(8px + 1.5625vw);
}
nav {
display: flex;
align-items: center;
flex-direction: row;
column-gap: 1rem;
row-gap: 0rem;
justify-content: center;
}
figure {
flex-wrap: nowrap;
display: flex;
align-items: center;
flex-direction: row;
row-gap: 0rem;
margin-top: 0;
margin-bottom: 0;
justify-content: center;
flex: 25%;
}
#weather_body {
display: flex;
flex-direction: column;
align-items: center;
background-image:
radial-gradient(rgba(100, 110, 10, 0.5), rgba(0, 0, 0, 0));
}
.ascii_art {
font-family: monospace;
font-size: 0.5rem;
line-height: 0.5rem;
text-align: center;
max-width: 32ch;
text-overflow: clip;
}
#location_text {
font-weight: bold;
font-size: large;
text-align: center;
}
#weather_display {
display: flex;
}
#numeric_temperature {
font-size: 8rem;
line-height: 90%;
}
#units_div {
align-self: flex-start;
flex-shrink: 2;
}
#change_temperature {
gap: 1rem;
}