-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (56 loc) · 909 Bytes
/
style.css
File metadata and controls
66 lines (56 loc) · 909 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#canvas-div {
position: absolute;
width: 500px;
height: 600px;
z-index: 1;
top: 50%;
left: 50%;
margin: -300px 0 0 -250px;
}
#canvas {
}
#left-panel {
position: absolute;
width: 350px;
height: 600px;
z-index: 1;
top: 50%;
left: 50%;
margin: -300px 0 0 -600px;
box-sizing: border-box;
padding-top: 40px;
text-align: center;
}
#right-panel {
position: absolute;
width: 350px;
height: 600px;
z-index: 1;
top: 50%;
left: 50%;
margin: -300px 0 0 250px;
box-sizing: border-box;
padding: 40px;
text-align: center;
}
.button {
box-sizing: border-box;
border-radius: 10px;
border: 3px solid black;
z-index: 2;
background-color: red;
}
#top-button {
width: 270px;
height: 150px;
margin: 90px 0 0 0;
}
#bottom-button {
width: 270px;
height: 150px;
margin: 40px 0 0 0;
}
.button-text{
text-align: center;
padding-top: 30px;
}