generated from webmural/bluv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lev.css
65 lines (54 loc) · 913 Bytes
/
lev.css
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
* {
box-sizing: border-box;
}
:any-link {
text-decoration-style: dotted;
text-decoration-line: line-through;
}
html {
font-family: sans-serif;
font-size: max(3ch, 3vmax + 2vmin);
line-height: 1.618;
}
body {
margin: 0;
overflow-wrap: anywhere;
}
.dbqp {
display: flex;
flex-flow: row wrap;
font-size: 20vmax;
font-weight: unset;
margin: 0;
}
.dbqp > * {
align-items: center;
display: inline-flex;
flex-basis: 25%;
justify-content: center;
min-height: 100vh;
padding: 5vw;
text-shadow:
0 1vh 0 var(--tape-hex),
0 2vh 0 var(--tape-hex),
0 3vh 0 powderblue;
}
.hope {
align-items: flex-start;
display: flex;
flex-flow: column;
justify-content: center;
min-height: 100vh;
}
.hope a {
padding: 1vh 5vw;
}
@media (orientation: portrait) {
.dbqp > * {
flex-basis: 50%;
min-height: 50vh;
}
.hope a {
padding: 1vh 8vw;
}
}