-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAgendaCountdown.module.less
More file actions
63 lines (54 loc) · 1.15 KB
/
AgendaCountdown.module.less
File metadata and controls
63 lines (54 loc) · 1.15 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
@import './theme.less';
.wrap {
display: grid;
gap: 0.75rem;
max-width: 520px;
}
.label {
margin: 0;
color: @muted;
font-size: 0.72rem;
font-family: @heading;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 0.8rem;
li {
gap: 0.7rem;
box-shadow:
inset 0 0 0 1px rgba(255, 255, 255, 0.03),
0 0 26px rgba(44, 232, 255, 0.08);
border: 1px solid rgba(44, 232, 255, 0.26);
border-radius: 18px;
background: linear-gradient(180deg, rgba(44, 232, 255, 0.08), rgba(44, 232, 255, 0.03));
min-height: 120px;
strong {
color: #fff;
font-size: clamp(2.3rem, 4vw, 3.8rem);
line-height: 1;
font-family: @heading;
letter-spacing: 0.08em;
}
span {
color: rgba(255, 255, 255, 0.72);
font-size: 0.82rem;
font-family: @heading;
letter-spacing: 0.2em;
text-transform: uppercase;
}
}
}
@media (max-width: 767px) {
.grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
li {
min-height: 96px;
strong {
font-size: 2rem;
}
}
}
}