-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.css
65 lines (65 loc) · 925 Bytes
/
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
63
64
65
html, section, img {
background-color: rgba(0,0,0, 0.1);
}
body {
text-align: center;
margin: 0;
padding: 0;
}
section {
display: inline-block;
/* margin: 0 auto; */
margin: 1em;
padding: 1em;
text-align: left;
vertical-align: top;
}
section div + div {
margin-top: 1em;
}
a {
color: #888;
}
a:hover {
color: #000;
}
img {
/* background-color: #000; */
}
img,
canvas {
border: 1px solid #ddd;
/* box-shadow: 3px 3px rgba(0,0,0, 0.1); */
}
canvas {
position: relative;
}
canvas:hover {
border-color: #aaa;
}
.toggle::after {
content: ".";
}
.toggle::before {
display: inline-block;
border: 1px solid currentColor;
margin-right: 4px;
padding: 0;
width: 23px;
height: 23px;
line-height: 23px;
font-size: 22px;
font-family: monospace;
text-align: center;
vertical-align: middle;
content: "+";
}
.toggle.open::after {
content: ":";
}
.toggle.open::before {
content: "-";
}
.hid {
display: none;
}