summaryrefslogtreecommitdiffstats
path: root/static/peach.css
blob: 6d1589d03e6dcb269b9ab9b47cada4430c7b99e9 (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
111
/**
 * 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;
    row-gap: 10px;
}

@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: 0px;
    font-size: 1.5em;
}

.period-container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.now-container {
    display: flex;
    flex-direction: column;
}

.temperature-forecast-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temperature-forecast-container .temperature {
    font-size: 2.8em;
}

.temperature-forecast-container .forecast {
    font-size: 1.8em;
    font-weight: 500;
    color: rgb(90,90,90);
    text-align: center;
}

.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;
}

.periods-container {
    width: 440px;
    display: flex;
    justify-content: space-around;
    align-content: space-around;
}

.periods-container .period  .temperature {
    font-size: 1.2em;
}

.periods-container .period  .hour {
    font-size: 0.8em;
    color: rgb(150,150,150)
}