-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestimonials.css
More file actions
79 lines (67 loc) · 1.2 KB
/
testimonials.css
File metadata and controls
79 lines (67 loc) · 1.2 KB
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
.testimonials {
padding: 100px 0px;
}
.testimonials .title h1::before {
left: 30%;
}
.testimonials-content {
position: relative;
overflow: hidden;
flex: 0 0 100%;
max-width: 100%;
}
.testimonials-box {
float: left;
transition: margin 1s ease;
}
.testimonials-img {
background-color: #fff;
margin-bottom: 15px;
border: 1px solid rgb(226, 221, 221);
padding: 40px 20px;
border-radius: 4px;
display: flex;
flex-wrap: nowrap;
float: left;
width: 100%;
}
.test-img {
flex: 0 0 118px;
max-width: 118px;
}
.test-img img {
height: 100px;
width: 100px;
border-radius: 50%;
}
.testimonials-text p {
font-size: 15px;
font-weight: 400;
line-height: 24px;
color: #838383;
margin: 0;
}
.testimonials-text h6 {
font-size: 16px;
font-weight: 600;
color: #000;
margin: 10px 0 5px;
}
.slider {
float: left;
width: 100%;
text-align: center;
}
.slider div {
height: 15px;
width: 15px;
background-color: #fff;
border: 1px solid #5f88e0;
border-radius: 50%;
display: inline-block;
margin: 10px 6px;
cursor: pointer;
}
.slider div.active {
background-color: #5f88e0;
}