-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.scss
More file actions
109 lines (107 loc) · 1.8 KB
/
app.scss
File metadata and controls
109 lines (107 loc) · 1.8 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
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
.device {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
min-height: 90vh;
}
.keyboard {
margin: 1em;
text-align: center;
-webkit-user-select: none;
user-select: none;
.hand {
display: inline-block;
}
label {
color: #fff;
display: inline-block;
font: {
size: 30px;
style: italic;
weight: 700;
}
text-align: center;
width: 80px;
span {
display: inline-block;
}
}
button {
background: #000;
border: none;
border-radius: 8px;
box-shadow: 0 2px 10px 0 rgba(0,0,0,0.50);
color: #fff;
font: {
size: 30px;
weight: 300;
}
line-height: 60px;
margin: 0.25em;
width: 60px;
height: 60px;
&:hover {
cursor: pointer;
}
&:active,
&.active {
background-color: #fff;
box-shadow: none;
color: #999;
}
}
}
.controls {
text-align: center;
margin: 1em;
-webkit-user-select: none;
user-select: none;
h2 {
font-size: 120%;
letter-spacing: 0.2em;
line-height: 2;
text-transform: uppercase;
margin: 1em 0 0.5em;
}
div, section {
padding-bottom: 1em;
}
label {
display: inline-block;
letter-spacing: 0.1em;
line-height: 2;
text: {
align: center;
transform: uppercase;
}
}
input {
display: flex;
// display: block;
margin: auto;
}
input[type="number"] {
background-color: rgba(204, 204, 204, 0.5);
border: none;
color: #000;
width: 2.5em;
text-align: left;
padding: 0.25em;
font-size: 80%;
display: none;
}
.master-vol {
display: flex;
justify-content: center;
}
.waveforms {
display: flex;
label {
margin: 0 auto;
span {
display: block;
}
}
}
}