Skip to content

Commit

Permalink
Update designs, logos, accessibility functions and designs, contact a…
Browse files Browse the repository at this point in the history
…nd personnel info, etc
  • Loading branch information
Dae Sanghwi committed Sep 15, 2024
1 parent 201e4c3 commit 93319b3
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
--primary-color: #E91E63;
--secondary-color: #C2185B;
--accent-color: #AD1457;
--highlight-color: #F06292;
--highlight-color: #FF80AB;
--text-color: #FFFFFF;
--bg-color: #880E4F;
--card-bg: #9C27B0;
--header-bg: rgba(136, 14, 79, 0.95);
--footer-bg: #4A0E2E;
--link-color: #00E5FF; /* New bright cyan color for links */
--link-hover-color: #40FFFF; /* Slightly lighter cyan for hover state */
}

body {
Expand Down Expand Up @@ -215,6 +217,25 @@ footer {
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

a {
color: var(--link-color);
text-decoration: none;
transition: color 0.3s ease;
}

a:hover {
color: var(--link-hover-color);
text-decoration: underline;
}

.footer-content a {
color: var(--link-color);
}

.footer-content a:hover {
color: var(--link-hover-color);
}

@media (max-width: 768px) {
.nav-links {
display: none;
Expand Down

0 comments on commit 93319b3

Please sign in to comment.