-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreview.css
More file actions
58 lines (49 loc) · 909 Bytes
/
review.css
File metadata and controls
58 lines (49 loc) · 909 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
/* Google Reviews Section */
.google-reviews {
background-color: #f7f7f7;
padding: 20px;
border-radius: 10px;
margin-top: 20px;
}
.google-reviews h2 {
font-size: 24px;
color: #333;
margin-bottom: 20px;
}
.reviews-container {
display: flex;
flex-direction: column;
gap: 15px;
}
.review {
background-color: #fff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.review strong {
font-size: 16px;
color: #333;
}
.review p {
margin-top: 10px;
font-size: 14px;
color: #666;
}
.top-review {
background-color: #e6f7ff;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.leave-review p {
font-size: 14px;
margin-top: 10px;
}
.leave-review a {
color: #007bff;
text-decoration: none;
}
.leave-review a:hover {
text-decoration: underline;
}