Faculty and Course Forms

This commit is contained in:
Harshitha Shetty
2024-12-04 03:54:40 +05:30
parent e9b57359f1
commit 2f0597cb1e
14 changed files with 325 additions and 46 deletions

View File

@@ -0,0 +1,26 @@
/* Navbar Container */
.navbar {
background-color: #800000; /* Maroon background */
height: 60px; /* Navbar height */
width: 100%; /* Full width */
display: flex; /* Flexbox for alignment */
justify-content: flex-end; /* Align items to the right */
align-items: center; /* Center vertically */
padding: 0 20px; /* Horizontal padding for spacing */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
position: fixed; /* Fix the navbar to the top */
top: 0;
z-index: 1000; /* Place above other elements */
}
/* User Icon */
.user-icon {
font-size: 30px; /* Icon size */
color: #fff; /* White color for the icon */
cursor: pointer; /* Pointer cursor on hover */
transition: color 0.3s ease-in-out; /* Smooth hover effect */
}
.user-icon:hover {
color: #ffcccc; /* Light pink on hover */
}