-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathglobal.css
60 lines (53 loc) · 1.07 KB
/
global.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
html {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
line-height: 1.5;
tab-size: 4;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
*,
::before,
::after {
box-sizing: border-box;
}
body,
html,
#root {
height: 100%;
margin: 0;
}
body {
font-family: inherit;
line-height: inherit;
color: #ffffff;
background-color: #000;
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: inherit;
text-decoration: inherit;
}
code,
pre {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
pre {
background-color: rgba(55, 65, 81, 1);
color: rgba(229, 231, 235, 1);
border-radius: 0.25rem;
overflow: auto;
padding: 0.5rem 0.75rem;
}
svg {
display: block;
shape-rendering: auto;
text-rendering: optimizeLegibility;
}