-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
68 lines (64 loc) · 1.37 KB
/
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
60
61
62
63
64
65
66
67
68
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height:100vh;
display:flex;
justify-content: center;
align-items:center;
background-image:url('image/victorian-gaab88c7a8_1920.jpg');
background-position: center;
background-repeat: no-repeat;
background-size:cover;
}
.container{
/* border:2px solid rgb(201, 31, 31); */
text-align: center;
text-transform: uppercase;
}
.container h1{
font-family: 'Courier New', Courier, monospace;
/* border:2px solid rgb(201, 31, 31); */
padding-bottom:3rem;
font-size:3rem;
}
.key-container{
/* border:2px solid rgb(0, 0, 0); */
display: flex;
flex-wrap: wrap;
min-width:300px;
height:fit-content;
justify-content: space-evenly;
}
.key{
border:2px solid rgb(255, 255, 255);
width:70px;
height:70px;
margin-right:1rem;
display: flex;
flex-direction: column;
margin:0.5rem;
transition: all 0.3s;
box-shadow:0px 0px 10px 2px rgb(0, 0, 0);
}
.play{
transform:scale(1.3);
border: 2px solid rgb(255, 219, 14);
box-shadow:0px 0px 10px 2px yellow;
color:aqua;
}
.key kbd{
/* border:2px solid rgb(140, 232, 28); */
text-align: center ;
font-size:2rem;
/* color:aqua; */
}
.sound{
/* border:2px solid rgb(232, 0, 0); */
text-align: center;
text-transform: capitalize;
font-weight:300;
color:#ffffff;
}