-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (37 loc) · 724 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (37 loc) · 724 Bytes
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
/* center the canvas */
canvas {
padding: 0;
margin: auto;
display: block;
width: auto; /* could specify canvas element width here */
}
/* center the controls */
#playerControls {
text-align: center;
color: #fff
}
body {
background-color: rgb(35, 39, 35);
}
footer {
text-align: center;
}
/* Stylize the buttons */
.container {
width:100%;
height:100%;
padding-left: 11%;
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
border-radius: 50%;
}
.button:hover {background-color: #3e8e41}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}