-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (81 loc) · 1.49 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (81 loc) · 1.49 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body{
height: 100vh;
background-color: #f1d9ee;
}
h1{
text-align: center;
}
.container{
display: flex;
position: absolute;
top:25%;
width:97%;
justify-content: space-between;
}
.canvasContainer {
display: flex;
width:35vw;
align-items: center;
justify-content: center;
}
.canvasContainer canvas {
margin-right: 20px;
}
.elementContainer {
display: flex;
position: relative;
flex-direction: column;
width: 40vw;
height: 43vh;
align-items: center;
margin-left: 20px;
}
.imageContainer {
display: flex;
background-color: whitesmoke;
width: 40vw;
max-width: 40vw;
}
.imageContainer img {
width:100%;
height: 100%;
object-fit: contain;
}
.buttonContainer {
display: flex;
justify-content: center;
margin-top: 20px;
}
button {
width:20vw;
height: 60px;
cursor: pointer;
font-size: large;
font-weight: bold;
background-color: whitesmoke;
border-radius: 5px;
border-color: whitesmoke;
}
@media only screen and (max-width:900px){
button {
font-size:10px;
}
}
#alert {
position: absolute;
top:15%;
left:50%;
transform: translate(-50%,-50%);
background-color: green;
color:whitesmoke;
border-radius: 5px;
padding: 15px;
width:300px;
text-align: center;
align-content: center;
justify-content: center;
font-size: 14px;
font-family: arial;
font-weight: bold;
display: none;
}