blob: 9fc48f78d59ed66dc083417aee4a17f13220a625 (
plain) (
blame)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/**
* Copyright © 2022 siddharth <s@ricketyspace.net>
* SPDX-License-Identifier: ISC
*/
@font-face {
font-family: Roboto;
src: url('/static/font/RobotoFlex-Regular.ttf');
font-display: swap;
}
body {
font-family: Roboto, sans-serif;
text-transform: lowercase;
}
.peach {
display: flex;
flex-direction: row;
justify-content: center;
}
.root-container {
display: flex;
flex-direction: column;
gap: 15px;
}
@media (min-width: 440px) {
.root-container {
width: 440px;
}
}
.header-container,
.main-container {
display: flex;
justify-content: center;
}
.header-container h1 {
margin: 0;
}
.header {
margin-top: 10px;
margin-bottom: 15px;
font-size: 1.5em;
}
.period-container {
display: flex;
flex-direction: column;
row-gap: 25px;
}
.now-container {
display: flex;
flex-direction: column;
}
.temperature-forecast-container {
display: grid;
grid-template-columns: 10% 70px auto 10%;
grid-template-rows: auto;
justify-content: center;
justify-items: center;
align-items: center;
column-gap: 5px;
}
.temperature-forecast-container .temperature {
font-size: 2.2em;
grid-column-start: 2;
grid-column-end: 3;
}
.temperature-forecast-container .forecast {
font-size: 1.8em;
font-weight: 500;
color: rgb(90,90,90);
grid-column-start: 3;
grid-column-end: 4;
}
.wind-container {
display: flex;
flex-direction: row;
justify-content: center;
column-gap: 10px;
color: rgb(90,90,90);
}
.current-period-container {
font-size: 0.9em;
color: rgb(150,150,150);
}
.timeline-container {
display: flex;
justify-content: center;
color: rgb(230,230,230);
}
.periods-container {
width: 440px;
display: flex;
justify-content: space-around;
align-content: space-around;
}
|