-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (60 loc) · 1.13 KB
/
style.css
File metadata and controls
60 lines (60 loc) · 1.13 KB
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
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Black+Ops+One&family=Libre+Baskerville:wght@700&family=Pacifico&family=Public+Sans:wght@700&family=Roboto:wght@300&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
background-color: #202020;
}
header{
display: flex;
justify-content: center;
font-family: 'Public Sans', sans-serif;
padding: 8px;
font-size: 30px;
color: #ffffff;
margin-bottom: 20px;
}
.grid{
display: grid;
grid-template-columns: repeat(32, 16px);
}
.main{
border: 1px solid white;
}
.card{
width: 16px;
height: 16px;
background-color: black;
}
.white{
background-color: white;
}
.btn{
background-color: #ff007f;
border: none;
font-size: 12px;
color: #ffffff;
padding: 4px;
border-radius: 2px;
width: 150px;
margin: 10px;
cursor: pointer;
user-select: none;
}
.box{
display: flex;
gap: 50px;
}
.content{
width: 200px;
margin-left: 8px;
background-color: #353535;
}
.rainbow,
.erase,
.prompt{
background-color: #353535;
}
.toggleEffect{
border: 4px solid white ;
}