-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslideshow.css
More file actions
46 lines (40 loc) · 942 Bytes
/
slideshow.css
File metadata and controls
46 lines (40 loc) · 942 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
// slideshow.css
// https://magradacatalunya.com/
.slideshow-container {
width: 98%;
aspect-ratio: 5 / 3;
background-size: cover;
background-position: center;
margin: 10px auto;
border: 1px solid #ffd1ff;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
}
.controls {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 10px;
}
.controls button {
padding: 8px 15px;
font-size: 14px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.controls button:hover {
background-color: #0056b3;
transform: translateY(-2px);
}
.controls button:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}