-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 1.07 KB
/
style.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
63
64
65
66
67
68
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.App {
text-align: center;
background-color: #fff;
max-width: 90%;
width: 1024px;
margin: 0 auto;
display: flex;
flex-direction: column;
}
.App-header {
display: flex;
flex-direction: row;
justify-content: center;
align-self: center;
padding: 1em;
width: 100%;
}
.logo {
width: 100%;
}
.Main {
border: 1px solid grey;
background-color: #efebdc;
padding: 2em;
text-align: left;
}
code, pre {
background-color: #fff;
padding: 0.1em;
}
small {
display: block;
margin-bottom: 1em;
}
footer ul {
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
}
footer ul li {
padding: 1em;
}
footer ul li svg {
width: 50px;
}