-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslideshow.css
More file actions
61 lines (58 loc) · 937 Bytes
/
slideshow.css
File metadata and controls
61 lines (58 loc) · 937 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
54
55
56
57
58
59
60
61
.form-group {
margin-top: 20px;
text-align: center;
}
.button {
display: inline-block;
padding: 15px 15px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: teal;
border: none;
border-radius: 15px;
box-shadow: 0 9px rgb(202, 196, 196);
margin-top: 15px;
margin-bottom: 15px;
}
.button:hover {
background-color: rgb(135, 135, 212);
}
.button:active {
background-color: teal;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
#img {
object-fit: fill;
height: 500px;
width: 500px;
}
#container
{
margin-right: 180px;
text-align: center;
}
.prev
{
display: flex;
}
.next
{
display: flex;
}
#left-arr
{
margin-top: 180px;
margin-left: 100px;
float: left;
}
#right-arr
{
margin-top: -310px;
margin-right: 100px;
float: right;
}