header rewrite start
This commit is contained in:
parent
b539c3592a
commit
7021d0ba07
6 changed files with 47 additions and 136 deletions
|
@ -1,34 +1,3 @@
|
|||
/* Container for the login layout */
|
||||
.login-container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr; /* 1fr for sidebar, 3fr for main content */
|
||||
grid-auto-flow: column;
|
||||
overflow-x: hidden;
|
||||
height: 100%; /* Ensure it takes full height */
|
||||
}
|
||||
|
||||
/* Button for login action */
|
||||
.login-button {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 10px;
|
||||
z-index: 9999; /* Highest z-index for the login button */
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
.login-button button {
|
||||
padding: 10px 20px;
|
||||
background-color: var(--input-button-color);
|
||||
color: var(--text-color);
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.login-button button:hover {
|
||||
background-color: var(--input-button-hover-color);
|
||||
}
|
||||
|
||||
/* Overlay for popup - full screen and centered */
|
||||
.popup-overlay {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue