-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (61 loc) · 1.08 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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0 1em;
background-color: #161B1F;
font-size: 18px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
a {
color: yellow;
}
.header {
text-align: center;
margin: 3em 0;
color: yellow;
}
.keys {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
max-width: 64em;
margin: 3em auto;
padding: 1em;
border: 3px solid #EEEEEE;
border-radius: 1em;
}
.key {
width: 100%;
padding: 1em;
}
.key--playing .key__content {
background: yellow!important;
}
.key__content {
position: relative;
height: 200px;
padding: .75em;
transition: all .1s;
border-radius: 1em;
background: #999999;
}
.key__content span {
display: block;
width: 100%;
height: 100%;
color: #FFFFFF;
padding: .75em;
text-transform: uppercase;
font-weight: bold;
background-color: #161B1F;
}
@media screen and (min-width: 35.8em) {
.key {
width: 33.3333%;
}
.key__content {
height: 300px;
}
}