-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (49 loc) · 957 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
51
52
53
54
55
56
57
58
59
html {
background: url(image.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
body{
height: 100vh;
margin: 0;
padding:0;
font-family: sans-serif;
}
.keys{
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
margin: 0 auto;
height: 120px;
margin-top: 225px;
}
.key{
border: 4px solid rgb(16, 199, 231);
border-radius: 5px;
margin: 10px;
font-size: 15px;
padding: 10px 40px;
transition: all 0.07s ease;
width: 100px;
color: white;
background: rgba(0,0,0,0.4);
text-shadow: 0 0 5px black;
}
kbd{
display: block;
font-size: 40px;
}
.sound{
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: #71d81d;
text-align: center;
}
.playing{
transform: scale(1.1);
border-color: rgb(0, 4, 255);
box-shadow: 0 0 10px rgb(0, 4, 255);
}