-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (74 loc) · 1.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
:root {
--yellow: #fcfa81;
--brown: #42331c;
}
*,
*:after,
*:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul {
margin: 0;
}
h1 {
margin-top: 10px;
color: var(--brown);
}
body {
background-color: #eee;
font-family: 'Roboto', Arial, Helvetica, sans-serif;
color: #888;
text-align: center;
}
.container {
width: 300px;
height: 300px;
margin: 1.2em auto;
background-color: var(--yellow);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-radius: 4px;
box-shadow: 0 2px 3px 4px rgba(0,0,0,0.1);
}
canvas {
display: block;
margin: 0 auto;
background-color: var(--yellow);
}
#loading {
display: none;
}
#error {
display: none;
color: #ff4949;
padding: 1em;
}
button {
display: block;
margin: 0 auto;
margin-bottom: 3em;
padding: 0.5em 2em;
}
footer {
width: 300px;
margin: 0 auto;
}
p {
font-size: 0.8rem;
text-align: center;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color: var(--brown);
}
.git {
margin-top: 0.3em;
text-align: center;
}