Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change red to green for better user experience - Update about.html (changed the page colors) #121

Merged
merged 1 commit into from
Oct 5, 2024
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
11 changes: 5 additions & 6 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
.navbar .logo {
font-size: 1.8em;
font-weight: bold;
color: #d32f2f;
color: #000000;
}

.navbar ul {
Expand All @@ -49,15 +49,15 @@

.navbar ul li a {
color: #fff;
background-color: #d32f2f;
background-color: #b5b1a8;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}

.navbar ul li a:hover {
background-color: #b71c1c;
background-color: #444444;
transform: scale(1.1);
}

Expand Down Expand Up @@ -114,12 +114,11 @@
padding: 0;
}

ul li {
background: linear-gradient(145deg, #f9e0e0, #e8b8b8);
.values-principles ul li {
background: linear-gradient(145deg, #b8e7af, hsl(129, 28%, 73%));
margin: 10px 0;
padding: 15px 20px;
border-radius: 5px;
color: #b71c1c;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1),
inset 0 1px 3px rgba(255, 255, 255, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
Expand Down
Loading