-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestileos.css
More file actions
53 lines (47 loc) · 819 Bytes
/
estileos.css
File metadata and controls
53 lines (47 loc) · 819 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
47
48
49
50
51
52
53
body {
font-family: sans-serif;
background-color: #111;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.slideshow-container {
position: relative;
width: 80%;
max-width: 600px;
height: 400px;
overflow: hidden;
border: 2px solid #fff;
border-radius: 10px;
box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.mySlides {
display: none;
width: 100%;
height: 100%;
object-fit: cover;
}
.mySlides.active {
display: block;
}
.controls {
margin-top: 20px;
display: flex;
gap: 20px;
}
.controls button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #444;
color: white;
cursor: pointer;
}
.controls button:hover {
background-color: #666;
}