forked from unisonweb/codebase-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
64 lines (56 loc) · 977 Bytes
/
Copy pathbase.css
File metadata and controls
64 lines (56 loc) · 977 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
52
53
54
55
56
57
58
59
60
61
62
63
64
* {
box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
ul,
p,
ol,
table,
tr,
td,
li {
margin: 0;
padding: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
html {
font-size: var(--size-base);
font-family: var(--font-sans-serif);
/* TODO: Make configurable by users */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-ligatures */
font-variant-ligatures: none;
/* normal */
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
text-size-adjust: none;
}
body {
font-size: 1rem;
line-height: 1.4;
background: var(--u-color_background);
color: var(--u-color_text);
}
input {
border: 0;
border-radius: 0;
font-family: var(--font-sans-serif);
caret-color: var(--u-color_caret);
}
::placeholder {
color: var(--u-color_text_subdued);
}
li::marker {
color: var(--u-color_icon);
}
mark {
color: var(--u-color_search-highlight_text);
background: var(--u-color_search-highlight_background);
}