-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (45 loc) · 745 Bytes
/
style.css
File metadata and controls
49 lines (45 loc) · 745 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
48
html, body, div, span, footer, header, h1 {
margin: 0;
padding: 0;
}
#container {
position: relative;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 60px 10px;
}
footer {
margin-top: 20px;
text-align: center;
}
#openBtn {
font-size: 18px;
font-weight: 700;
width: 200px;
height: 50px;
background: #47cf73;
color: #000;
padding: 10px 16px;
border-radius: 4px;
border: 3px solid transparent;
cursor: pointer;
}
#openBtn:hover {
background: #4ee47e;
}
#openBtn:focus {
outline: none;
}
#canvasContainer {
display: flex;
justify-content: center;
padding: 0px 60px;
}
canvas {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.658);
}