-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (66 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;500;700;900&display=swap');
:root {
--font-size: 10px;
--grid-column: 80;
--grid-row: 80;
}
* {
font-family: 'Noto Sans KR', sans-serif;
padding: 0;
margin: 0;
background-color: black;
color: white;
}
body {
width: 100%;
height: 100%;
}
#content {
width: 100%;
white-space: pre-wrap;
line-height: 1;
display: grid;
grid-template-columns: repeat(var(--grid-column), 1fr);
grid-template-rows: repeat(var(--grid-row), 1fr);
}
#content *::selection {
background: pink;
color: lightseagreen;
}
.cell {
width: var(--font-size);
height: var(--font-size);
font-size: var(--font-size);
letter-spacing: calc(var(--font-size) / 100 * 8);
text-align: center;
display: block;
}
button {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
border-radius: 50%;
height: 100px;
width: 100px;
font-size: 25px;
background-color: black;
color: white;
box-shadow: 0px 0px 10px rgb(255 255 255 /50%);
border-style: solid;
}
button::after {
content: 'PLAY';
}
button.captured {
background-color: white;
color: black;
box-shadow: none;
}
button.captured::after {
content: 'STOP';
}
video,
canvas {
display: none;
}