-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (42 loc) · 793 Bytes
/
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
body {
display: flex;
flex-direction: column;
align-items: center;
background-color: rgb(138, 138, 138);
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1 {
color: white;
}
.sketchpad {
border: 1px ;
width: 384px;
height: 384px;
display: flex;
flex-flow: row wrap;
background-color: rgba(255, 255, 255, 0.911);
}
.btn {
padding: 10px;
display: flex;
gap: 0px 10px;
margin-bottom: 20px;
}
button {
padding: 10px;
border-radius: 22px;
border: 1px;
background-color: aqua;
}
button:hover {
background-color: rgb(104, 103, 103);
color: black;
}
.firstgrid {
border: 1px dotted rgb(138, 138, 138);
width: 22px;
height: auto;
}
.firstgridhover {
background-color: aqua;
}