More CSS streamlining

This commit is contained in:
Lucas Patenaude
2024-04-24 02:54:33 -06:00
parent 31637aaef4
commit 0f1288524a
5 changed files with 18 additions and 71 deletions

View File

@@ -2,46 +2,5 @@
display: none;
}
#login-page {
}
#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;
}

View File

@@ -1,13 +1,3 @@
#register-container {
display: none;
}
#register-page button {
padding: 5px 10px;
background-color: red;
border-color: red;
border: 1px solid red;
border-radius: 8px;
color: white;
}