-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
94 lines (89 loc) · 1.55 KB
/
styles.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
88
89
90
91
92
93
94
@import url("https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap");
html,
body {
padding: 0;
margin: 0;
}
body {
background-color: #222;
text-align: center;
margin-top: 40px;
}
.preload {
font-family: "Nanum Pen Script";
position: absolute;
opacity: 0;
user-select: none;
}
canvas {
background-color: #f6e5f5;
box-shadow: 0 2px 8px #000;
border-radius: 2px;
transition-property: opacity;
transition-duration: 0.1s;
user-select: none;
}
footer {
margin: 24px;
display: inline-block;
padding: 6px 12px;
border-radius: 500px;
background-color: rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 #000 inset;
font-family: sans-serif;
color: #888;
font-size: 12px;
cursor: default;
user-select: none;
}
footer b {
color: #000;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
margin: 0 4px;
}
a {
color: #26a;
text-decoration: none;
}
footer a:hover {
color: #27d;
}
.green {
color: #7accaf;
}
.yellow {
color: #f5e4aa;
}
.red {
color: #da7783;
}
header,
header a {
font-family: "Nanum Pen Script";
font-size: 60px;
color: #7accaf;
text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
margin: 24px;
}
main.help {
max-width: 900px;
margin: 0 auto;
}
section {
margin: 10px;
font-family: "Nanum Pen Script";
font-size: 30px;
color: #f6e5f5;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
section div {
display: inline-block;
vertical-align: middle;
max-width: 320px;
margin: 0 16px;
text-align: left;
}
section canvas {
vertical-align: middle;
margin: 16px;
}