-
Notifications
You must be signed in to change notification settings - Fork 0
/
SAMPLE6.CSS
74 lines (63 loc) · 1.03 KB
/
SAMPLE6.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
body {
font-family: Arial, sans-serif;
}
.swiper-container {
width: 100%;
height: 100%;
}
.swiper-slide {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
cursor: pointer;
}
.swiper-slide img {
width: 100%;
height: auto;
}
.swiper-slide h2 {
font-size: 24px;
margin-top: 20px;
}
.swiper-slide p {
font-size: 16px;
text-align: center;
margin-top: 10px;
}
.btn {
font-size: 16px;
padding: 10px 20px;
margin-top: 20px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
.btn:hover {
background-color: #45a049;
}
.swiper-button-next,
.swiper-button-prev {
background-size: 30px;
background-position: center;
background-repeat: no-repeat;
opacity: 1;
border-radius: 0px;
height: 40px;
width: 40px;
margin-top: -20px;
}
.swiper-button-next {
right: 0;
}
.swiper-button-prev {
left: 0;
}
.swiper-button-next:after,
.swiper-button-prev:after {
display: none;
}