Working navbar 99%
This commit is contained in:
parent
e12cf8c21e
commit
18c719a22d
@ -28,8 +28,6 @@ body {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-top: 8em;
|
|
||||||
margin-top: 0;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: #f0f0f0; /* Optional background color */
|
background-color: #f0f0f0; /* Optional background color */
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
|
@ -1,87 +1,18 @@
|
|||||||
@tailwind base;
|
/* navbar.module.css */
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
||||||
|
|
||||||
|
.navBar {
|
||||||
.navbar {
|
@apply top-6 left-6 right-6 transition-all duration-300 z-50;
|
||||||
/* position: fixed;
|
|
||||||
@apply transition-all duration-300 top-6 left-6 right-6; */
|
|
||||||
/* background-color: white;
|
|
||||||
border-radius: 0px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 1em 2em;
|
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
||||||
z-index: 1000; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* .navbar a {
|
.navBarInitial {
|
||||||
color: black;
|
@apply bg-transparent text-white absolute;
|
||||||
text-decoration: none;
|
|
||||||
margin: 0 0.5em;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar a:hover {
|
.navBarScrolledUp {
|
||||||
color: #555;
|
@apply bg-white text-black rounded-lg shadow-lg fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left,
|
/* Custom style */
|
||||||
.right {
|
.navBarScrolledUp {
|
||||||
display: flex;
|
backdrop-filter: blur(10px); /* Adds a blur effect */
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar .center a {
|
|
||||||
color: black;
|
|
||||||
text-decoration: none;
|
|
||||||
margin: 0 0;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
.center .logo {
|
|
||||||
height: 50px; /* Adjust the logo size as needed */
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-center .logo {
|
|
||||||
height: 50px; /* Adjust the logo size as needed */
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-search,
|
|
||||||
.fa-user {
|
|
||||||
font-size: 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
|
||||||
.navbar {
|
|
||||||
top: 1em;
|
|
||||||
left: 1em;
|
|
||||||
right: 1em;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-center {
|
|
||||||
margin: 1em 0;
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar a.active {
|
|
||||||
font-weight: bold;
|
|
||||||
border-bottom: 2px solid black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar {
|
|
||||||
border-radius: 25px; /* Makes the corners more rounded */
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar a {
|
|
||||||
font-size: 1.1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-search,
|
|
||||||
.fa-user {
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
*/
|
|
@ -29,13 +29,12 @@ export default function Navbar() {
|
|||||||
return () => window.removeEventListener('scroll', handleScroll);
|
return () => window.removeEventListener('scroll', handleScroll);
|
||||||
}, []); // Empty dependency array
|
}, []); // Empty dependency array
|
||||||
|
|
||||||
const navClasses =
|
const navClasses = `${styles.navBar} ${
|
||||||
navBarStyle === 'scrolledUp'
|
navBarStyle === 'scrolledUp' ? styles.navBarScrolledUp : styles.navBarInitial
|
||||||
? 'bg-white text-black rounded-b-lg shadow-lg fixed'
|
}`;
|
||||||
: 'bg-transparent text-white';
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<nav className={`navbar fixed top-6 left-6 right-6 transition-all duration-300 ${navClasses} z-50`}>
|
<nav className={navClasses}>
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
<div className="flex items-center justify-between h-16">
|
<div className="flex items-center justify-between h-16">
|
||||||
{/* Left side */}
|
{/* Left side */}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user