-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (62 loc) · 1.11 KB
/
styles.css
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
62
63
64
65
66
67
68
69
70
71
72
73
74
* {
box-sizing: border-box;
margin: 0px;
}
.slideshow-container {
max-width: 1000px;
max-height: 400px;
position: relative;
margin: auto;
}
.myslides{
display: none;
}
.prev, .next {
cursor: pointer;
top: 50%;
width: auto;
position: absolute;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bold;
font-size: 18px;
}
.next{
right: 0;
}
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
.numbertext {
color: #f2f2f2;
font-size: 14px;
padding: 8px 12px;
position: absolute;
font-weight: bold;
top: 0;
}
.text{
color:#f2f2f2;
font-size: 17px;
font-weight: bold;
padding: 8px 12px;
position: absolute;
bottom: 2px;
width: 100%;
text-align: center;
background-color: rgba(121, 120, 120,0.6);
}
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}