-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (55 loc) · 1.37 KB
/
style.css
File metadata and controls
60 lines (55 loc) · 1.37 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
53
54
55
56
57
58
59
60
body, html {
margin: 0;
padding: 0;
font-family: 'Orbitron', sans-serif;
background-color: #222;
}
h1 {
text-align: center;
font-size: 3.5rem;
color: white;
margin-top: 3vw;
}
.keys {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 30vw;
height: 30vw;
margin-left: 35vw;
}
.key {
margin: auto;
color: white;
text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000, 0 0 25px #ff0000;
background-image: -webkit-gradient(linear, left top, right bottom, from(#666), to(#444));
background-image: linear-gradient(to bottom right, #666, #444);
border: .1rem solid #111;
border-radius: 1rem;
width: 9vw;
height: 9vw;
line-height: 9vw;
-webkit-transition: all 0.1s;
transition: all 0.1s;
}
.playing {
-webkit-transform: scale(0.95);
transform: scale(0.95);
border-color: #ff0000;
-webkit-box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000;
box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000;
}
p {
font-size: 2rem;
margin: auto;
text-align: center;
}
/*# sourceMappingURL=style.css.map */