footer? reviews
This commit is contained in:
48
src/components/Reviews/Reviews.css
Normal file
48
src/components/Reviews/Reviews.css
Normal file
@@ -0,0 +1,48 @@
|
||||
.reviews-section {
|
||||
max-width: 800px;
|
||||
margin: 40px auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.reviews-section h2 {
|
||||
text-align: center;
|
||||
margin-bottom: 32px;
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.reviews-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.review-card {
|
||||
border: 1px solid #eee;
|
||||
border-radius: 10px;
|
||||
background: #fafbfc;
|
||||
padding: 20px 24px;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
|
||||
}
|
||||
|
||||
.review-text {
|
||||
font-size: 16px;
|
||||
margin-bottom: 12px;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.review-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.review-author {
|
||||
font-weight: bold;
|
||||
color: #6C63FF;
|
||||
}
|
||||
|
||||
.star-rating {
|
||||
color: #FFD700;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user