70 lines
1.3 KiB
CSS
70 lines
1.3 KiB
CSS
/* Navbar styles */
|
|
.navbar {
|
|
background-color: green; /* Material-UI Primary Color */
|
|
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Logo styles */
|
|
.navbar-logo {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-weight: bold;
|
|
color: white;
|
|
text-decoration: none;
|
|
margin-right: auto;
|
|
}
|
|
|
|
/* Menu styles */
|
|
.navbar-menu {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: auto;
|
|
}
|
|
|
|
/* Search styles */
|
|
.search {
|
|
position: relative;
|
|
border-radius: 4px;
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
.search:hover {
|
|
background-color: rgba(255, 255, 255, 0.25);
|
|
}
|
|
.search-icon-wrapper {
|
|
padding: 8px;
|
|
height: 100%;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.search-input {
|
|
color: inherit;
|
|
width: 100%;
|
|
padding: 8px 8px 8px 40px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* User avatar styles */
|
|
.navbar-user {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
/* Typography styles */
|
|
.navbar-typography {
|
|
font-family: 'monospace';
|
|
font-weight: 700;
|
|
letter-spacing: .3rem;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Button styles */
|
|
.navbar-button {
|
|
margin: 2;
|
|
color: white;
|
|
display: block;
|
|
} |