-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathstyle.css
103 lines (84 loc) · 1.4 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
* {
margin: 0; padding: 0;
}
html {
height: 100%;
}
body {
background-color: #1e2227;
display: flex;
align-items: center;
justify-content: center;
flex-flow: column;
height: 100%;
font-family: Arial, sans-serif;
color: #e9e9e9;
}
#play-button {
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
flex-flow: column;
}
.title {
margin-bottom: 40px;
font-size: 40px;
text-align: center;
}
#tempo {
font-size: 40px;
}
.bpm {
font-size: 12px;
text-align: center;
}
.tempo-controls {
margin-top: 30px;
display: flex;
align-items: center;
justify-content: center;
flex-flow: row;
}
.tempo-container {
margin: 0 15px;
}
button {
padding: 6px;
border: none;
border-radius: 100%;
width: 40px;
height: 40px;
margin: 5px;
background-color: #2a4949;
color: #e9e9e9;
cursor: pointer;
}
button:focus {
outline: none;
}
.created-by {
margin-top: 40px;
}
a {
color: #e9e9e9;
}
a:hover {
color: #356161;
}
.play {
width: 0;
height: 0;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
border-left: 50px solid #e9e9e9;
margin-left: 15px;
}
.pause {
width: 15px;
height: 60px;
border: none;
border-left: 15px solid #e9e9e9;
border-right: 15px solid #e9e9e9;
}