-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (76 loc) · 1.33 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body {
background-color: black;
display: flex;
flex-direction: column;
align-items: center;
}
.Model {
background-size: cover;
background-repeat: no-repeat;
/* display: none; */
width: 240px; /* Set the desired width */
height: 150px; /* Set the desired height */
z-index: 10;
/* padding: 10px; */
margin: 10px;
}
#ModelContainer {
/* padding: 20px; */
margin: 10px;
display: flex;
justify-content: center;
}
#Model1 {
background-image: url("Model1.jpg");
}
#Model2 {
background-image: url("Model2.png");
}
.upper-canvas {
background-repeat: no-repeat;
background-size: cover;
}
.canvas-container {
margin: 20px;
display: flex;
justify-content: center;
/* padding: 20px; */
}
.Button {
user-select: none;
}
label {
display: inline-block;
padding: 8px 16px;
background-color: #007bff;
color: #ffffff;
text-align: center;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
text-decoration: none;
}
label:hover {
background-color: #0056b3;
}
button {
padding: 8px 16px;
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
text-decoration: none;
}
button:hover {
background-color: #0056b3;
}
#ButtonContainer {
display: flex;
justify-content: center;
}
.CustomButton {
margin: 10px;
}