-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
61 lines (55 loc) · 1 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
body {
background-color: lightseagreen;
}
.black-keys {
display: flex;
height: 97vh;
width: 99vw;
justify-content: center;
align-items: center;
}
.black-keys kbd {
bottom: 25px;
display: inline-block;
height: 150px;
width: 50px;
font-size: 35px;
color: #fff;
text-align: center;
border-width: 2px;
border-style: solid;
border-color: #000;
border-radius: 12px;
background-color: #000;
}
.left-keys {
position: relative;
left: 23px;
margin-left: -50px;
margin-right: 68px;
}
.right-keys {
position: relative;
left: 44px;
margin-right: 15px;
}
.white-keys {
position: absolute;
display: flex;
height: 97vh;
width: 99vw;
justify-content: center;
align-items: center;
}
.white-keys kbd {
display: inline-block;
height: 200px;
width: 70px;
border-style: solid;
border-width: 2px;
border-radius: 12px;
font-size: 35px;
text-align: center;
line-height: 10;
background-color: #fff;
}