-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsucess.css
80 lines (68 loc) · 1.18 KB
/
sucess.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
75
76
77
78
79
80
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.success-stories {
padding: 20px;
}
.success-stories h1 {
text-align: center;
margin-bottom: 20px;
}
.slideshow-container {
position: relative;
max-width: 100%;
margin: auto;
overflow: hidden;
}
.slides {
display: flex;
transition: transform 0.5s ease-in-out;
}
.slide {
min-width: 50%;
box-sizing: border-box;
text-align: center;
}
.slide img {
width: 100%;
height: auto;
display: block;
}
.slide p {
margin: 10px 0 0;
font-size: 18px;
color: #333;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: #333;
font-weight: bold;
font-size: 18px;
border-radius: 0 3px 3px 0;
user-select: none;
background-color: rgba(0,0,0,0.5);
color: white;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
@media only screen and (max-width: 600px) {
.prev, .next {
font-size: 14px;
padding: 12px;
}
.slide p {
font-size: 16px;
}
}