-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstaly.css
More file actions
95 lines (63 loc) · 995 Bytes
/
Copy pathstaly.css
File metadata and controls
95 lines (63 loc) · 995 Bytes
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
{
margin: 0:;
padding: 0:;
font-family:"montserrat",sans-serif;
}
.testimonials{
padding: 40px 0;
background: #f1f1f1;
color: #434343;
text-align: center;
}
.inner{
max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 0 20px;
}
.border{
width: 16px;
height: 5px;
background: #6ab04c;
margin: 26px auto;
}
.row{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.col{
flex: 33.33%;
max-width: 33.33%;
box-sizing: border-box;
padding: 15px;
}
.testimonial{
background: #fff;
padding: 30px;
}
.testimonial img{
width: 100px;
height: 100px;
border-radius: 50%;
}
.name{
font-transform: uppercase;
margin: 20px 0;
}
.star{
color: #bf8078;
margin-bottom: 20px;
}
@media screen and (max-width:960px){
.col{
flex: 100%;
max-width: 80%;
}
}
@media screen and (max-width:600px){
.col{
flex: 100%;
max-width: 100%;
}
}