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
49 lines (42 loc) · 768 Bytes
/
Copy pathapp.css
File metadata and controls
49 lines (42 loc) · 768 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
html {
font-size: 100%;
height: 100vh;
overflow: hidden;
}
body {
background-color: var(--color-bg-primary);
color: var(--text-color-primary);
font: var(--text-default);
height: 100%;
text-rendering: optimizelegibility;
-webkit-font-smoothing: antialiased;
}
noscript {
display: block;
}
#app {
display: flex;
flex-direction: column;
height: 100%;
}
a,
.link {
color: var(--color-blue);
cursor: pointer;
text-decoration: underline;
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
button {
border: none;
cursor: pointer;
padding: 0;
user-select: none;
}
button:disabled {
opacity: var(--opacity-disabled);
pointer-events: none;
}