forked from CSI-KJSCE/appointment_to_examiner
frontend changes
This commit is contained in:
@@ -1,44 +1,57 @@
|
||||
.navbar {
|
||||
background-color: #800000; /* Maroon background */
|
||||
height: 50px; /* Navbar height */
|
||||
height: 50px; /* Increased 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 */
|
||||
display: flex; /* Use flexbox for layout */
|
||||
justify-content: space-between; /* Space between items */
|
||||
align-items: center; /* Align items vertically */
|
||||
padding: 0 20px; /* Horizontal padding */
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
|
||||
position: fixed; /* Fix the navbar to the top */
|
||||
position: fixed; /* Fixed position */
|
||||
top: 0;
|
||||
z-index: 1000; /* Place above other elements */
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
box-sizing: border-box; /* Include padding and border in the height calculation */
|
||||
.mb-10 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 1000;
|
||||
box-sizing: border-box;
|
||||
.navbar-container{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.navbar select,
|
||||
.navbar input {
|
||||
height: auto;
|
||||
margin: 0;
|
||||
padding: 5px 10px;
|
||||
font-size: 16px; /* Ensure consistent font size */
|
||||
}
|
||||
|
||||
|
||||
/* 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 */
|
||||
font-size: 30px; /* Size of user icon */
|
||||
color: #fff; /* Color of the icon */
|
||||
margin-left: 20px; /* Space after the icon before the buttons */
|
||||
cursor: pointer; /* Cursor type */
|
||||
transition: color 0.3s ease-in-out; /* Transition for hover effect */
|
||||
}
|
||||
|
||||
.user-icon:hover {
|
||||
color: #ffcccc; /* Light pink on hover */
|
||||
color: #ffcccc; /* Color on hover */
|
||||
}
|
||||
|
||||
.button-container {
|
||||
display: flex; /* Flexbox for buttons */
|
||||
gap: 20px; /* Gap between buttons */
|
||||
}
|
||||
|
||||
.button-container button {
|
||||
background-color: #c00000; /* Button color */
|
||||
color: white; /* Text color */
|
||||
border: none; /* No border */
|
||||
|
||||
cursor: pointer; /* Cursor type */
|
||||
font-size: 12px; /* Font size */
|
||||
white-space: nowrap; /* Prevent text wrapping */
|
||||
transition: background-color 0.3s; /* Smooth transition for hover */
|
||||
padding: 6px 10px;
|
||||
}
|
||||
|
||||
.button-container button:hover {
|
||||
background-color: #ffcccc; /* Hover color */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user