56 lines
1.1 KiB
CSS
56 lines
1.1 KiB
CSS
#login-container {
|
|
display: none;
|
|
}
|
|
|
|
#login-page {
|
|
width: 400px;
|
|
height: fit-content;
|
|
position: absolute;
|
|
top: 150px; /* Adjust this value as needed */
|
|
right: 20px; /* Adjust this value as needed */
|
|
z-index: 5;
|
|
background: linear-gradient(to bottom, white, rgb(245, 245, 245), rgb(227, 227, 227)); /* Gradient from white to gray */
|
|
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
|
|
border: 1px solid gray;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#login-submit {
|
|
padding: 5px 10px;
|
|
background-color: red;
|
|
border-color: red;
|
|
|
|
border: 1px solid red;
|
|
border-radius: 8px;
|
|
color: white;
|
|
}
|
|
|
|
#login-submit:hover {
|
|
background-color: darkred;
|
|
border-color: darkred;
|
|
color: white;
|
|
}
|
|
/* CSS for the account info card */
|
|
.account-info-card {
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
padding: 20px;
|
|
width: 300px;
|
|
}
|
|
|
|
.info-container {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#username {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
#teamlogo{
|
|
width: 23px;
|
|
height: 23px;
|
|
}
|
|
|
|
|