-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSynth.sass
97 lines (81 loc) · 1.84 KB
/
Synth.sass
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
$base-black: #3e3e3e
$active: #ff6060
.Sequence
display: inline-block
.ButtonBox
margin-top: 10%
margin-bottom: 20%
.Button
border: $base-black 1px solid
display: inline-block
margin: 4px
width: 3em
height: 3em
border-radius: 3em
color: $base-black
background: white
cursor: pointer
transition: 1s cubic-bezier(0, 1, 0, 1)
@media (max-width: 480px)
width: 5em
height: 5em
border-radius: 1em
&:hover, &:active
border: $active 1px solid
background: $active
.Black
border: white 1px solid
color: white
background: $base-black
.Pressed
border: $active 1px solid
background: $active
transform: translate(0, 3em)
.MousePressed
border: $active 1px solid
background: $active
.Separator
border: 1px darken($base-black, 5%) solid
margin: 30px
.OctaveControl
font-size: 17pt
display: inline-block
width: 2em
margin: 10px
cursor: pointer
.PushButton
display: inline-block
padding: 1em 2em
margin: 0.5em
cursor: pointer
border-radius: 0.2em
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.22)
transition: 0.3s
user-select: none
cursor: pointer
@media (max-width: 480px)
border-radius: 1em
img
width: 14px
@media (min-width: 480px)
&:hover
background: lighten($base-black, 10%)
.ActivePushButton
background: $active
transform: translateY(2px)
box-shadow: 0 3px 10px rgba(0,0,0,0.2), inset 0px -1px 0 rgba(0,0,0,0.22)
footer
position: fixed
left: 0
bottom: 0
padding: 10px 0
width: 100%
background-color: $base-black
color: white
text-align: center
img
width: 20px
a
color: white
text-decoration: none
font-weight: bold