-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.css
More file actions
57 lines (48 loc) · 861 Bytes
/
Copy pathreview.css
File metadata and controls
57 lines (48 loc) · 861 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
/* Review Section Styles */
.reviews {
background-color: #f9f9f9;
padding: 40px 0;
}
.section-title {
font-size: 28px;
margin-bottom: 30px;
}
.review-form {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.review-form .form-group {
margin-bottom: 15px;
}
.star-rating {
display: flex;
flex-direction: row;
justify-content: flex-start;
margin-bottom: 10px;
}
.star {
font-size: 24px;
cursor: pointer;
color: #ccc;
transition: color 0.2s;
}
.star:hover,
.star.active {
color: gold;
}
#rating-value {
font-weight: bold;
color: #007bff;
}
.list-group-item {
display: flex;
justify-content: space-between;
align-items: center;
}
.badge {
font-size: 14px;
padding: 5px 10px;
border-radius: 12px;
}