footer? reviews

This commit is contained in:
Evdokia
2025-04-26 00:27:24 +03:00
parent 5ce92c4b81
commit 7f2ae842d2
16 changed files with 691 additions and 276 deletions

View 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;
}