-
Notifications
You must be signed in to change notification settings - Fork 0
/
reviews.css
54 lines (48 loc) · 955 Bytes
/
reviews.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
.reviews {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
margin-bottom: 24px;
}
.revcard {
width: 28%;
color: black;
padding: 1%;
border: 1px solid rgba(255, 255, 255, .25);
border-radius: 20px;
background-color: white;
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}
.revcard h3 {
margin-left: 50px;
font-weight: 700;
font-size: 20px;
}
.revcard p {
font-weight: 500;
font-size: 16px;
margin-bottom: 0px;
}
.revatar {
width: 48px;
height: 48px;
border-radius: 50%;
background-size: cover;
background-position: center center;
background-color: #eee;
transform: translateY(10px);
}
.revhead {
display: flex;
justify-content: center;
}
@media only screen and (max-width: 600px) {
.reviews {
justify-content: center;
}
.revcard {
width: 90%;
margin-bottom: 24px;
float: left;
}
}