-
Notifications
You must be signed in to change notification settings - Fork 1
/
display.css
97 lines (81 loc) · 1.35 KB
/
display.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
h1, h2, form, body, canvas, div, button, input {
margin: 0;
border: 0;
outline: 0;
padding: 0;
text-decoration: inherit;
box-sizing: inherit;
vertical-align: inherit;
text-align: inherit;
color: inherit;
font: inherit;
background: transparent;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: black;
font-family: 'Audiowide', cursive;
}
canvas {
display: block;
margin: auto auto;
height: calc(100vh - 270px);
}
h1 {
margin-top: 30px;
color: DeepSkyBlue;
text-align: center;
font-size: 90px;
letter-spacing: 5px;
}
button, input {
border-radius: 5px;
background-color: #ffffff;
}
button {
padding: 5px 10px;
cursor: pointer;
}
button.selected {
background-color: #e14c14;
}
#control {
position: fixed;
bottom: 0;
left: calc(50% - 500px);
width: 930px;
height: 80px;
background-color: #3c3c3c;
border-radius: 5px;
padding: 20px 40px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.measures button {
width: 30px;
margin-top: 5px;
font-size: 20px;
}
h2 {
font-size: 30px;
}
.action {
font-size: 40px;
margin-right: 93px;
}
.action button {
width: 155px;
text-align: center;
}
.tempo input {
font-size: 20px;
width: 110px;
padding: 5px 10px;
margin-top: 5px;
}