-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (67 loc) · 1.08 KB
/
styles.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #333333;
}
.grid {
display: grid;
grid-template-columns: repeat(32, 1fr);
grid-template-rows: repeat(4, 1fr);
grid-gap: 8px;
}
.cell {
width: 30px;
height: 40px;
background-color: grey;
cursor: pointer;
}
.cell.row1 {
background-color: grey;
}
.cell.row1.on {
background-color: #fc7442;
}
.cell.row2 {
background-color: grey;
}
.cell.row2.on {
background-color: #fdc334;
}
.cell.row3 {
background-color: grey;
}
.cell.row3.on {
background-color: #fee934;
}
.cell.row4 {
background-color: grey;
}
.cell.row4.on {
background-color: #fdfffe;
}
button {
margin-top: 20px;
font-size: 1.5rem;
padding: 10px 20px;
cursor: pointer;
background-color: grey;
color: #333333;
border: none;
border-radius: 4px;
}
button.play {
background-color: #grey;
}
button.play:hover {
background-color: #fdfffe;
}
button.stop {
background-color: grey;
}
button.stop:hover {
background-color: #fdfffe;
}