-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (87 loc) · 1.3 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
body{
background: #333;
font-family: 'Roboto', sans-serif;
}
.container{
margin:0 auto;
}
.menu{
background: #777;
padding:10px;
display: flex;
justify-content: center;
}
.header{
align-self: center;
color:#c7e210;
font-size: 1.5em;
margin-right: 10%;
}
.pad{
width:20px;
height: 30px;
background: grey;
box-shadow: inset 1px 1px 2px 0px black;
border-radius: 20%;
}
.block{
background: #aaa;
padding: 20px;
margin: 10px auto;
display: flex;
flex-direction: row;
justify-content:space-around;
align-content: center;
border-radius: 5px;
box-shadow: 0px 3px 4px 0px grey;
}
.grid{
padding: 0 20px;
align-items: center;
}
.beat{
width: 5px;
height: 5px;
background: white;
border-radius: 50%;
}
.nameBlock{
width:50px;
text-align: center;
text-shadow: 2px 2px 5px white;
}
.selected{
background: #c7e210;
box-shadow: 2px 2px 2px 0px black;
}
.input-wrap{
padding: 0 20px;
align-self: center;
}
button{
display: block;
border:none;
margin:0 5px;
padding: 0;
background: inherit;
outline: none;
}
i.fa-play-circle-o:hover{
color:#989898;
}
i.fa-pause-circle-o:hover{
color:#989898;
}
.pause-toggle{
color:#ce0707;
}
.play-color{
color:#30a903;
}
#tempo{
background: #777;
border:none;
outline: none;
font-size: 1em;
width:50px;
}