Files
Lovemap/app/statistics/styles.scss
T

93 lines
1.5 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%;
& > .infosContainer {
display: flex;
flex-direction: column;
gap: 10px;
& > .username {
font-size: 1.1rem;
color: #d94253;
}
& > .sinceDate {
font-size: 0.9rem;
font-weight: 300;
color: #d94253;
}
}
& > .buttonsContainer {
display: flex;
flex-wrap: nowrap;
align-items: center;
gap: 10px;
& > .button {
$size: 25px;
width: $size;
height: $size;
border: none;
background-color: transparent;
color: #d94253;
cursor: pointer;
}
}
}
& > .separator {
display: block;
width: 90%;
height: 1px;
background-color: #d94253;
background: linear-gradient(
90deg,
rgba(#d94253, 0) 0%,
rgba(#d94253, 1) 10%,
rgba(#d94253, 1) 90%,
rgba(#d94253, 0) 100%
);
}
& > .statistics {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 20px;
justify-items: center;
align-items: center;
padding: 40px 20px;
width: 100%;
& > .statistic {
display: flex;
flex-direction: column;
align-items: center;
font-weight: 300;
color: #d94253;
& > .slotCounter {
font-size: 3rem;
}
& > .statName {
color: #d94253;
}
}
}
}