forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
51 lines (44 loc) · 790 Bytes
/
Copy pathapp.css
File metadata and controls
51 lines (44 loc) · 790 Bytes
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
html {
font-size: 100%;
height: 100vh;
overflow: hidden;
}
body {
background-color: var(--color-bg-secondary);
color: var(--text-color-primary);
font: var(--text-medium);
height: 100%;
letter-spacing: var(--letter-spacing-medium);
position: relative;
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
}
@media screen and (height <= 400px) {
html {
font-size: 80%;
}
p {
font: var(--text-large);
letter-spacing: var(--letter-spacing-large);
}
}
@media screen and (height >= 700px) and (width >= 600px) {
html {
font-size: 150%;
}
}
#app {
height: 100%;
}
button {
border: none;
cursor: pointer;
padding: 0;
user-select: none;
}
.link {
background: none;
color: var(--color-blue);
cursor: pointer;
text-decoration: underline;
}