Files
Lovemap/app/statistics/styles.scss
T
2024-10-11 19:08:52 +02:00

82 lines
1.3 KiB
SCSS

.accountContainer {
flex-grow: 1;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
& > .header {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
gap: 20px;
padding: 20px;
width: 100%;
background-color: #d94253;
& > .infosContainer {
display: flex;
flex-direction: column;
gap: 10px;
& > .username {
font-size: 1.1rem;
color: #ffffff;
}
& > .sinceDate {
font-size: 0.9rem;
font-weight: 300;
color: #e1e1e1;
}
}
& > .buttonsContainer {
display: flex;
flex-wrap: nowrap;
align-items: center;
gap: 10px;
& > .button {
$size: 25px;
width: $size;
height: $size;
border: none;
background-color: transparent;
color: #ffffff;
cursor: pointer;
}
}
}
& > .statistics {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 15px;
padding: 40px 20px;
width: 100%;
& > .statistic {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 10px;
border: 1px solid #d94253;
border-radius: 10px;
background-color: #f9e2e5;
font-weight: 300;
color: #d94253;
& > .slotCounter {
font-size: 3rem;
}
& > .statName {
color: #d94253;
}
}
}
}