fancy navigation

This commit is contained in:
Thijs Stobbelaar 2023-09-21 16:38:58 +02:00
parent 3325c38b41
commit 821f4d450f

View file

@ -14,34 +14,40 @@ body {
color: white; color: white;
} }
nav { nav {
background-color: #333; background: linear-gradient(to right, #FF416C, #FF4B2B); /* Gradient Background */
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1); /* Slight Shadow for Depth */
padding: 10px 0; /* Vertical Padding */
} }
nav ul { nav ul {
list-style-type: none; list-style-type: none;
padding: 0; padding: 0;
text-align: center; /* Center the navigation items */
} }
nav li { nav li {
display: inline-block; display: inline-block;
margin-right: 10px; margin: 0 15px; /* Spacing between items */
}
nav li:last-child {
margin-right: 0;
} }
nav a { nav a {
color: white; color: white;
padding: 10px 15px; padding: 10px 20px;
display: block; border-radius: 25px; /* Rounded Edges */
border-radius: 5px; transition: background-color 0.3s, transform 0.3s; /* Smooth Transition for Hover Effect */
transition: background-color 0.3s; font-weight: 600; /* Slightly Bold */
font-size: 16px; /* Adjust as needed */
} }
nav a:hover { nav a:hover {
background-color: #555; background: rgba(255, 255, 255, 0.1); /* Slight White Background on Hover */
transform: translateY(-2px); /* Slight Lift on Hover */
}
nav a:active {
transform: translateY(1px); /* Slight Pressed-In effect on Click */
} }
header, main, footer { header, main, footer {