-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtestimonies_style.css
93 lines (81 loc) · 1.6 KB
/
testimonies_style.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
81
82
83
84
85
86
87
88
89
90
91
92
93
.testmn {
width: 100%;
display: flex;
margin: auto;
align-items: center;
height: 100vh;
background-color: #111;
}
.swiper-container {
width: 100%;
height: 90%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
}
.slide-container {
padding: 11px 32px;
}
.slide-card {
background-color: #111;
box-shadow: 0 8px 30px -7px #000;
margin: 0 20px;
padding: 9px 33px;
border-radius: 20px;
border: 0;
cursor: grab;
}
.slide-card .slide-card-img-top {
max-width: 100px;
border-radius: 50%;
margin: 15px auto 0;
box-shadow: 0 8px 20px -4px #000;
width: 100px;
height: 100px;
}
.slide-card h5 {
color: #01b0f8;
font-size: 21px;
line-height: 1.3;
}
.slide-card h5 span {
font-size: 18px;
color: #fff;
}
.slide-card p {
font-size: 18px;
color: rgb(240, 222, 222);
padding-bottom: 15px;
}
.swiper-slide.swiper-slide-active {
transform: scale(1.2);
}
.autoplay {
position: absolute;
color: #000;
font: 100px/100% arial, sans-serif;
right: 15px;
text-decoration: none;
text-shadow: 0 1px 0 #fff;
top: 15px;
width: auto;
height: auto;
z-index: 999;
opacity: 0.4;
transition: opacity 0.1s ease-in, transform 0.1s ease-out;
animation: fade_close 3s ease-out;
}
@media (max-width: 800px) {
.slide-container {
padding: 0px 0px;
}
.swiper-slide {
width: 360px;
}
}