-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
31 lines (27 loc) · 624 Bytes
/
style.css
File metadata and controls
31 lines (27 loc) · 624 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
.image-container {
display: flex;
flex-direction: column;
gap: 1.5rem;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
}
.image-container img {
width: 100%;
height: auto;
max-width: 100%;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
.image-container {
flex-direction: row;
justify-content: space-between;
gap: 1rem;
}
.image-container img {
width: 30%;
height: auto;
}
}