-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (58 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
:root {
--primary: rgb(190, 255, 170);
--ignored: rgb(255, 100, 100);
}
/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
display: none;
}
html {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
body {
background-color: black;
color: var(--primary);
margin-left: 13px;
margin-right: 13px;
}
.slide {
margin-bottom: 21px;
display: flex;
}
canvas.ignored {
opacity: 30%;
background-color: red;
filter: grayscale(100%);
}
.toolButton {
width: 30px;
height: 30px;
flex-shrink: 0;
margin-top: 13px;
cursor: pointer;
border: none;
border-top-right-radius: 50%;
border-bottom-right-radius: 50%;
color: black;
display: flex;
align-items: center;
justify-content: center;
}
.ignoreButton {
background-color: var(--ignored);
}
.showButton {
background-color: var(--primary);
}
textarea {
margin-left: 13px;
width: 100%;
}
textarea.ignored {
display: none;
}
.saver {
margin-top: 21px;
margin-bottom: 21px;
}