-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
73 lines (61 loc) · 990 Bytes
/
app.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
* {
border: none;
margin: 0;
padding: 0;
}
body {
background-color: #2a2a2a;
}
canvas {
border: 1px solid #585858;
margin-top: 50px;
}
.content {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.row {
align-items: center;
display: flex;
}
.col {
align-items: center;
display: flex;
flex-direction: column;
}
h1 {
color: #9c27b0;
font-family: 'Press Start 2P', cursive;
margin-top: 50px;
text-transform: uppercase;
}
svg {
height: 40px;
width: 40px;
}
button {
border-radius: 4px;
cursor: pointer;
font-family: 'Press Start 2P', cursive;
font-size: 12px;
padding: 10px;
text-transform: uppercase;
}
button.start {
background: #6bd82b;
color: #294e13;
}
button.pause {
background: yellow;
color: #848421;
}
.config {
display: flex;
flex-direction: column;
margin-left: 15px;
}
.hide {
display: none;
}