Skip to content
Merged
Changes from all commits
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
27 changes: 25 additions & 2 deletions Website/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1246,8 +1246,6 @@ body.dark-mode {
.dark-mode .milestone-card p{
color:black;
}


.testimonial-section {
background-color: #111151;
padding: 60px 20px;
Expand All @@ -1274,6 +1272,7 @@ body.dark-mode {
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
text-align: center;
transition: background-color 0.3s, box-shadow 0.3s;
}

.testimonial img {
Expand All @@ -1295,6 +1294,18 @@ body.dark-mode {
color: #ffd700;
}

/* Hover effect */
.testimonial:hover {
background-color: #ffd700; /* Change to a contrasting color */
color: #111151; /* Change text color */
box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); /* Brighter shadow */
}

.testimonial:hover p,
.testimonial:hover h3 {
color: #111151; /* Ensure text is visible against new background */
}

/* Light Mode for Testimonial Section */
.dark-mode .testimonial-section {
background-color: #f9f9f9;
Expand Down Expand Up @@ -1322,6 +1333,18 @@ body.dark-mode {
border: 2px solid #ddd;
}

/* Hover effect for dark mode */
.dark-mode .testimonial:hover {
background-color: #555; /* A darker color for light mode */
color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .testimonial:hover p,
.dark-mode .testimonial:hover h3 {
color: #fff; /* Ensure text remains visible */
}

body {
font-family: Arial, sans-serif;
background-color: #0a0266;
Expand Down
Loading