Skip to content

Commit

Permalink
minor upgrade style
Browse files Browse the repository at this point in the history
  • Loading branch information
semosem committed Aug 30, 2024
1 parent ba8e78c commit 1bda48b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ nav {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-color);
text-transform: uppercase; /* Ensures uppercase for a bold look */
transition: color 0.3s ease, transform 0.3s ease-in-out; /* Adds smooth transition and transform */
}

.logo:hover {
transform: scale(1.1); /* Pop-out effect on hover */
}

.nav-links {
Expand All @@ -56,11 +62,14 @@ nav {
text-decoration: none;
margin-left: 30px;
font-weight: 500;
transition: color 0.3s ease;
text-transform: uppercase; /* Ensures uppercase for consistency */
font-size: 1.1rem; /* Slightly increase font size for better visibility */
transition: color 0.3s ease, transform 0.3s ease-in-out; /* Adds smooth transition and transform */
}

.nav-links a:hover {
color: var(--primary-color);
transform: scale(1.1); /* Pop-out effect on hover */
}

.hero {
Expand Down

0 comments on commit 1bda48b

Please sign in to comment.