-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle_static.css
More file actions
44 lines (37 loc) · 1.05 KB
/
style_static.css
File metadata and controls
44 lines (37 loc) · 1.05 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
body {
font-family: Arial, sans-serif;
text-align: center;
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Two columns */
gap: 25px; /* Larger gap between setups */
padding: 10px;
}
.interactive-container {
width: 75%; /* Full width of the webpage */
max-width: none; /* Remove the max-width constraint */
margin: 0 auto; /* Center the container */
height: 300px; /* Increased height for better visibility */
}
.image-container {
display: flex;
justify-content: center;
gap: 10px; /* Smaller gap between images of the same setup */
margin-top: 10px; /* Reduced vertical spacing */
}
.image-container img {
border: 1px solid #ccc;
width: 192px; /* Reduced display size */
height: 192px; /* Reduced display size */
object-fit: contain; /* Ensure the full image is visible */
}
.slider-container {
margin-top: 10px; /* Reduced vertical spacing */
}
.slider-label {
font-size: 14px; /* Slightly smaller font for slider labels */
}
.slider {
width: 300px;
}