-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
111 lines (110 loc) · 2.08 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
*{
margin: 0;
padding: 0;
}
body{
background-image: url("drum.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.drum_kit{
display: flex;
flex-direction: row;
justify-content: center;
gap: 11px;
margin-top: 90px;
color: rgb(255, 255, 255);
}
.key {
border: turquoise solid 2px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 45px;
color: white;
height: 80px;
width: 80px;
font-size: x-large;
}
.shadow{
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #c765fe;
}
.shadow2{
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #0c037c;
}
#A:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #c765fe;
}
#S:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #c765fe;
}
#D:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #c765fe;
}
#F:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #c765fe;
}
#G:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #c765fe;
}
#H:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #0c037c;
}
#J:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #0c037c;
}
#K:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #0c037c;
}
#L:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #0c037c;
}
#L:hover {
transform: scale(1.2,1.2);
transition: 0.3s;
box-shadow: 0 0 15px #0c037c;
}
#A, #S, #D, #F {
border: #5427fe solid 3.5px;
}
#G, #H, #J, #K, #L {
border: #0c037c solid 3.5px;
}
#press_key {
display: flex;
justify-content: center;
align-items: center;
margin: auto;
margin-top: 95px;
background-color: #020612;
outline: none;
border: none;
color: aliceblue;
font-size: large;
letter-spacing: 4px;
}
input{
text-align: center;
}