-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
62 lines (53 loc) · 1.04 KB
/
index.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
body {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
font: inherit;
font-size: 100%;
min-height: 100vh;
font-family: "NotoSansTC";
box-sizing: border-box;
color: #1f100b;
letter-spacing: 3px;
box-sizing: border-box;
position: relative;
background-color: #faf7f7;
color: #1f100b;
letter-spacing: 3px;
}
#root {
min-height: 100vh;
display: flex;
flex-direction: column;
}
li {
list-style-type: none;
}
ul {
padding: 0;
}
code {
font-family: "ABeeZee", monospace, "Montserrat";
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
@font-face {
font-family: "ABeeZee";
src: local("ABeeZee"), url(./src/fonts/ABeeZee-Regular.ttf);
}
@font-face {
font-family: "Montserrat";
src: local("Montserrat"), url(./src/fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
font-family: "NotoSansTC";
src: local("NotoSansTC"), url(./src/fonts/NotoSansTC-VariableFont_wght.ttf);
}
.App {
text-align: center;
padding: 50px;
}
.zoomed {
transform: scale(3);
}