-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (47 loc) · 1.07 KB
/
main.css
File metadata and controls
52 lines (47 loc) · 1.07 KB
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
body{
position: absolute;
margin:0;
padding:0;
background-color: rgb(99 100 146);
width: 100%;
height: 100%;
display:flex;
justify-content: center;
align-items: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.keys{
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 20px;
}
.key{
width: 100px;
height: 100px;
border-radius: 50%;
background-color: rgba(41, 41, 41, 0.328);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 18px;
color: rgb(255, 255, 255);
cursor: pointer;
border: 4px solid rgba(41, 41, 41, 0.7);
transition: all .09s ease;
}
.playing{
background-color: rgba(41, 41, 41, 0.7);
transform: scale(1.1);
border-color: rgb(255, 204, 0);
}
.key kbd{
font-size: 40px;
font-weight: bold;
color: rgb(255, 255, 255);
}
.key span{
color: rgb(255, 204, 0)
}