-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
137 lines (122 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
html {
font-size: 10px;
background: url("img/beyBWsmall.jpg") bottom center;
background-size: cover;
}
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
letter-spacing: 0.1rem;
margin-top: 20px;
padding: 0 5px 0 30px;
background-color: black;
font-family: "Roboto", sans-serif;
align-self: flex-start;
}
h1 {
font-size: 40px;
margin: 0;
font-family: "Roboto", sans-serif;
text-transform: uppercase;
color: #ffc600;
}
h2 {
font-size: 15px;
margin-top: -10px;
color: white;
font-family: "Open Sans", sans-serif;
}
#container {
margin: 0;
padding: 0;
font-family: sans-serif;
display: flex;
}
input[type="range"] {
-webkit-appearance: none;
}
input {
width: 5vw;
height: 2vh;
cursor: pointer;
box-shadow: 5% 5% 5% #000000;
background: none;
border-radius: 0;
border: 1px solid #000000;
}
input[type="range"]::-webkit-slider-thumb {
box-shadow: 1px 1px 5px #000000;
border: 0px solid #000000;
height: 8px;
width: 9px;
border-radius: 4px;
background: #ffc600;
cursor: pointer;
-webkit-appearance: none;
margin-top: -3px;
}
.keys {
display: flex;
flex: 1;
flex-wrap: wrap;
min-height: 100vh;
max-width: 50%;
align-content: center;
justify-content: center;
}
.key {
border: 0.4rem solid black;
border-radius: 0.5rem;
margin: 1rem;
font-size: 1.5rem;
padding: 1rem 0.5rem;
transition: all 0.09s ease;
width: 10rem;
height: 90px;
text-align: center;
color: white;
background: rgba(0, 0, 0, 0.4);
text-shadow: 0 0 0.5rem black;
}
.rythmBox {
display: flex;
flex-direction: column;
align-items: center;
}
.playing {
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 1rem #ffc600;
}
.halo {
border: 0.4rem solid black;
border-radius: 0.5rem;
font-size: 12pt;
padding: 1rem 0.5rem;
transition: all 0.07s ease;
width: 20%;
margin: auto;
text-align: center;
color: #ffc600;
background: rgba(0, 0, 0, 0.4);
text-shadow: 0 0 0.5rem black;
display: block;
text-transform: uppercase;
align-self: center;
}
kbd {
display: block;
font-size: 4rem;
color: white;
}
.sound {
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: 0.1rem;
color: #ffc600;
}