blob: 4b3696ecc3cb3d77125074da51a993d70ee0e773 (
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
48
49
50
51
52
|
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
header {
width: 100%;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
header button, header label {
margin: 0 10px;
}
#container {
width: 100%;
/* max-width: 1920px; */
padding: 20px;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.block {
width: 420px;
height: 420px;
flex-shrink: 0;
padding: 5px;
border: 1px solid black;
}
@media (max-width: 440px) {
.grid {
padding: 20px 0;
}
}
/* Block specific stuff */
.block #time {
justify-content: center;
}
|