Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 104 additions & 0 deletions assets/testimonials/test.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}

.eventica-section {
padding: 3rem 1rem;
background-color: #f8f8f8;
}

.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}

.subheading {
font-size: 1rem;
color: #606060;
}

.main-heading {
margin-top: 0.5rem;
font-size: 2rem;
font-weight: bold;
color: #333333;
}

.write-review {
margin-top: 2rem;
}

.write-review-link {
font-size: 1rem;
font-weight: bold;
text-decoration: none;
color: #ffffff;
background-color: #333333;
padding: 0.5rem 1.5rem;
border-radius: 5px;
transition: background-color 0.2s ease;
}

.write-review-link:hover {
background-color: #555555;
}

/* Reviews Section */
.reviews-container {
margin-top: 3rem;
}

.reviews-grid {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}

/* Review Card */
.review-card {
background-color: #ffffff;
border: 2px solid #000000;
border-radius: 20px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
max-width: 300px;
text-align: left;
flex: 1;
}

.card-content {
text-align: left;
}

.event-title {
font-size: 1.5rem;
font-weight: bold;
color: #333333;
margin-bottom: 0.5rem;
}

.reviewer-name {
font-size: 1rem;
color: #606060;
margin-bottom: 0.5rem;
}

.review-text {
font-size: 1rem;
color: #333333;
margin-bottom: 1rem;
}

.review-rating {
font-size: 1.2rem;
font-weight: bold;
color: #ff9900;
text-align: left;
}

Loading
Loading