-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
62 lines (54 loc) · 904 Bytes
/
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
body{
background-color: #1E1E1E;
color: #558B3D;
font-family: 'Ubuntu Mono';
font-size: 14px;
margin: 0;
padding: 0;
}
header img {
height: 200px;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
canvas {
display: block;
margin-left: auto;
margin-right: auto;
width: 600px;
height: 300px;
}
main {
text-align: center;
}
main button {
width: 150px;
height: 35px;
margin: 6px;
background:#E6193C;
color: white;
border: none;
font-family: 'Ubuntu Mono';
font-size: 14px;
}
input[type='range']{
width: 400px;
}
input[type='file'] {
display: none;
}
footer {
background-color: #1a1a1a;
position: fixed;
width: 100%;
height: 20px;
bottom: 0;
text-align: center;
font-size: 12px;
padding-top: 5px;
}
.fa-heart{
color: #E6193C
}