2024-04-24 18:46:31 -06:00
|
|
|
#account-pane {
|
|
|
|
|
display: none;
|
2024-04-24 19:03:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#account-pane-content-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 23:33:40 -06:00
|
|
|
|
|
|
|
|
|
2024-04-24 19:03:39 -06:00
|
|
|
#account-header-container {
|
2024-04-24 20:00:06 -06:00
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2024-04-24 19:03:39 -06:00
|
|
|
padding: 10px;
|
|
|
|
|
border-bottom: 3px solid red;
|
2024-04-24 20:00:06 -06:00
|
|
|
|
|
|
|
|
#username {
|
|
|
|
|
font-size: 23px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
2024-04-24 19:03:39 -06:00
|
|
|
}
|
|
|
|
|
|
2024-04-24 20:33:40 -06:00
|
|
|
#account-favorite-teams-container {
|
2024-04-24 20:00:06 -06:00
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 20:33:40 -06:00
|
|
|
.account-favorite-teams-card {
|
2024-04-24 20:00:06 -06:00
|
|
|
|
2024-04-24 19:03:39 -06:00
|
|
|
display: flex;
|
2024-04-24 20:00:06 -06:00
|
|
|
align-items: center; /* Align items vertically in the center */
|
|
|
|
|
background-color: white;
|
|
|
|
|
border: 1px solid rgb(218, 218, 218);
|
|
|
|
|
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 10px 20px;
|
2024-04-24 23:33:40 -06:00
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
2024-04-24 19:03:39 -06:00
|
|
|
|
2024-04-24 23:33:40 -06:00
|
|
|
.account-favorite-teams-card:hover {
|
|
|
|
|
transform: scale(1.01); /* Scale the row by 1.1 on hover */
|
|
|
|
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
|
|
|
|
|
|
|
|
|
|
#account-favorite-teams-card-title {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#account-favorite-teams-card-logo {
|
|
|
|
|
transform: scale(1.02); /* Scale the row by 1.1 on hover */
|
|
|
|
|
}
|
2024-04-24 20:00:06 -06:00
|
|
|
}
|
2024-04-24 19:03:39 -06:00
|
|
|
|
2024-04-24 20:33:40 -06:00
|
|
|
#account-favorite-teams-card-logo {
|
|
|
|
|
width: 35px;
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#account-favorite-teams-card-title {
|
|
|
|
|
font-weight: 600;
|
2024-04-24 23:33:40 -06:00
|
|
|
text-decoration: none;
|
|
|
|
|
color: black;
|
2024-04-24 20:33:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-04-24 23:33:40 -06:00
|
|
|
/* Delete Button CSS --> Switches Between Icons */
|
2024-04-24 21:16:15 -06:00
|
|
|
|
2024-04-24 23:33:40 -06:00
|
|
|
/* Align the delete button container */
|
2024-04-24 21:16:15 -06:00
|
|
|
#account-delete-favorite-team-button-container {
|
2024-04-24 20:33:40 -06:00
|
|
|
margin-left: auto; /* Align the container all the way to the right */
|
2024-04-24 21:16:15 -06:00
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-24 23:33:40 -06:00
|
|
|
.account-delete-favorite-team-button {
|
2024-04-24 21:16:15 -06:00
|
|
|
width: 15px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
|
|
}
|
2024-04-24 23:33:40 -06:00
|
|
|
|
|
|
|
|
/* Don't show hover icon on start */
|
|
|
|
|
#account-delete-favorite-team-button-hover {
|
|
|
|
|
display: none; /* Initially hide the hover image */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hover Effects */
|
|
|
|
|
|
|
|
|
|
#account-delete-favorite-team-button-container:hover #account-delete-favorite-team-button {
|
|
|
|
|
display: none; /* Hide the default image when hovered over */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#account-delete-favorite-team-button-container:hover #account-delete-favorite-team-button-hover {
|
|
|
|
|
display: inline-block; /* Display the hover image when hovered over */
|
|
|
|
|
}
|