-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (40 loc) · 696 Bytes
/
style.css
File metadata and controls
47 lines (40 loc) · 696 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
47
* {
margin: 0;
padding: 0;
user-select: none;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
background: rgb(80, 80, 80);
}
.controls {
display: flex;
align-items: center;
margin: auto auto 10px auto;
}
#result {
margin: 10px auto auto auto;
}
button {
margin: 0 10px;
border: none;
padding: 10px;
border-radius: 5px;
color: white;
background: rgb(50, 50, 50);
outline: none;
cursor: pointer;
}
button:hover {
background: rgb(45, 45, 45);
}
canvas {
background: rgb(50, 50, 50);
margin: 0 auto auto auto;
}