-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (88 loc) · 1.45 KB
/
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
94
95
96
97
98
99
100
101
102
body{
margin:0;
font-family: "Lato", sans-serif;
color: #fff;
}
*{
box-sizing: border-box;
}
.testimonials{
min-height: 100vh;
background: #081131;
float: left;
width: 100%;
padding:100px 15px;
}
.container{
max-width: 1170px;
margin: auto;
}
.testimonials .title{
margin-bottom:60px
}
.testimonials .title h1{
text-align: center;
color:#fff;
font-size: 36px;
margin:0;
}
.testimonials .slider{
border:1px solid #7e8bb6;
max-width: 600px;
margin: auto;
text-align: center;
padding:30px;
background-color: #081131;
border-radius: 50px;
}
.testimonials .slider-indicator{
text-align: center;
padding-bottom:30px;
}
.testimonials .slider-indicator img{
max-height:80px;
max-width:80px;
border-radius:50% 0% 50% 0%;
display: inline-block;
margin:0 8px;
opacity:0.2;
border:4px solid #fff;
cursor: pointer;
transition: opacity 1s ease;
}
.testimonials .slider-indicator img.active{
opacity:1;
}
.testimonials .slider p{
font-size:18px;
color:#fff;
word-spacing: 2px;
}
.testimonials .slider .client-info h3{
font-weight: bold;
color:#0059f7;
font-size:18px;
margin:30px 0 10px;
}
.testimonials .slider .client-info span{
display: block;
font-size:16px;
color:#f1f3f2;
}
.testimonials .slider .slide{
display: none;
}
.testimonials .slider .slide.active{
display: block;
animation: slide 1s ease;
}
@keyframes slide{
0%{
opacity: 0;
transform: translateX(-15px);
}
100%{
opacity: 1;
transform: translateX(0px)
}
}