Files
ScoreSpot/ProjectSourceCode/src/resources/css/login-and-registration/account.css

54 lines
920 B
CSS
Raw Normal View History

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;
}
#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
}
#login-form-container {
display: flex;
flex-direction: column;
}
2024-04-24 20:00:06 -06:00
#favorite-teams-container {
padding: 10px;
}
2024-04-24 19:03:39 -06:00
.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;
margin: 10px 0;
2024-04-24 19:03:39 -06:00
2024-04-24 20:00:06 -06:00
}
2024-04-24 19:03:39 -06:00
2024-04-24 20:00:06 -06:00
.favorite-teams-card-logo-container {
2024-04-24 19:03:39 -06:00
img {
2024-04-24 20:00:06 -06:00
width: 80px;
max-height: 80px;
2024-04-24 19:03:39 -06:00
}
2024-04-24 18:46:31 -06:00
}