- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
Latest commit
52 lines (46 loc) · 827 Bytes
/
Copy pathstyles.css
File metadata and controls
52 lines (46 loc) · 827 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
body {
font-family: sans-serif;
background-color:#111;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height:100vh;
margin:0;
}
.slideshow-container {
display: flex;
align-items: center;
justify-content: center;
border:2px solid #fff;
border-radius:10px;
padding:10px;
background-color:#000;
box-shadow:0020pxrgba(255,255,255,0.2);
}
.mySlides {
display: none;
max-width:100%;
max-height:80vh;
}
.mySlides.active {
display: block;
}
.controls {
margin-top:20px;
display: flex;
gap:20px;
}
.controlsbutton {
padding:10px20px;
font-size:16px;
border: none;
border-radius:5px;
background-color:#444;
color: white;
cursor: pointer;
}
.controlsbutton:hover {
background-color:#666;
}