2024-07-22 18:35:18 -04:00
|
|
|
.about {
|
|
|
|
&__main-content {
|
2024-08-16 20:44:18 -04:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 2em;
|
|
|
|
max-width: 1100px;
|
|
|
|
}
|
|
|
|
|
2024-09-02 19:36:28 -04:00
|
|
|
&__header {
|
|
|
|
max-width: 1100px;
|
|
|
|
}
|
|
|
|
|
2024-08-16 20:44:18 -04:00
|
|
|
&__left-side {
|
|
|
|
flex: 1 1 650px;
|
|
|
|
}
|
2024-09-10 14:19:40 -04:00
|
|
|
|
2024-08-16 20:44:18 -04:00
|
|
|
&__right-side {
|
|
|
|
flex: 1 2 200px;
|
2024-07-22 18:35:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__stats {
|
|
|
|
display: flex;
|
|
|
|
border-top: 1px solid var(--primary-low);
|
|
|
|
border-bottom: 1px solid var(--primary-low);
|
|
|
|
padding: 1em 1em;
|
|
|
|
margin-bottom: 1em;
|
2024-08-16 20:44:18 -04:00
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2024-07-22 18:35:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__stats-item {
|
2024-08-16 20:44:18 -04:00
|
|
|
flex: 1 0 fit-content;
|
|
|
|
|
|
|
|
@include breakpoint(tablet) {
|
|
|
|
margin-bottom: 1em;
|
2024-09-10 14:19:40 -04:00
|
|
|
|
2024-08-16 20:44:18 -04:00
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2024-07-22 18:35:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&__banner {
|
|
|
|
margin-bottom: 1em;
|
2024-09-10 14:19:40 -04:00
|
|
|
width: 100%;
|
|
|
|
height: auto; // Let the height scale with the width
|
|
|
|
position: relative; // Ensure the container can handle absolute positioning for the image
|
|
|
|
padding-top: 27.27%; // Maintain the aspect ratio (300px/1100px * 100)
|
|
|
|
|
|
|
|
&-img {
|
|
|
|
position: absolute; // Allow to fill the full space
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover; // Ensures the image fills the container while preserving aspect ratio
|
|
|
|
}
|
2024-07-22 18:35:18 -04:00
|
|
|
}
|
2024-08-07 04:11:41 -04:00
|
|
|
|
|
|
|
&__activities-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__activities-item-icon {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__activities-item-period {
|
|
|
|
font-size: var(--font-down-2);
|
|
|
|
}
|
2024-08-12 09:23:44 -04:00
|
|
|
|
|
|
|
&__admins,
|
|
|
|
&__moderators {
|
|
|
|
margin-top: 3em;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-page-users-list {
|
|
|
|
display: grid;
|
|
|
|
gap: 1em;
|
2024-08-14 07:57:35 -04:00
|
|
|
grid-template-columns: repeat(auto-fit, minmax(14em, 1fr));
|
2024-08-12 09:23:44 -04:00
|
|
|
|
|
|
|
&__expand-button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-07-22 18:35:18 -04:00
|
|
|
}
|
|
|
|
|
2014-08-11 16:59:00 -04:00
|
|
|
section.about {
|
2023-10-02 13:55:11 -04:00
|
|
|
margin-bottom: 3em;
|
2014-08-11 16:59:00 -04:00
|
|
|
|
2023-10-03 09:43:45 -04:00
|
|
|
.users {
|
|
|
|
display: grid;
|
|
|
|
gap: 1em;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
|
|
|
|
}
|
|
|
|
|
2014-08-11 16:59:00 -04:00
|
|
|
h3 {
|
2023-10-02 13:55:11 -04:00
|
|
|
margin-bottom: 1em;
|
|
|
|
display: flex;
|
2024-01-24 16:36:36 -05:00
|
|
|
flex-wrap: wrap;
|
2023-10-02 13:55:11 -04:00
|
|
|
align-items: center;
|
2024-01-24 16:36:36 -05:00
|
|
|
gap: 0 0.35em;
|
2024-09-10 14:19:40 -04:00
|
|
|
|
2023-10-02 13:55:11 -04:00
|
|
|
.d-icon {
|
|
|
|
color: var(--primary-high);
|
2014-08-11 16:59:00 -04:00
|
|
|
}
|
2024-09-10 14:19:40 -04:00
|
|
|
|
2024-01-24 16:36:36 -05:00
|
|
|
.badge-category__wrapper {
|
|
|
|
font-size: var(--font-0);
|
|
|
|
align-self: baseline;
|
|
|
|
}
|
2023-10-02 13:55:11 -04:00
|
|
|
}
|
2014-08-11 16:59:00 -04:00
|
|
|
|
2023-10-02 13:55:11 -04:00
|
|
|
&.stats {
|
|
|
|
table {
|
|
|
|
td {
|
|
|
|
padding: 0.67em;
|
2024-09-10 14:19:40 -04:00
|
|
|
|
2023-10-02 13:55:11 -04:00
|
|
|
&:not(:first-child) {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2014-08-11 16:59:00 -04:00
|
|
|
}
|
2024-08-20 17:03:42 -04:00
|
|
|
|
|
|
|
.stats-table-footer {
|
|
|
|
max-width: 30em;
|
|
|
|
}
|
2014-08-11 16:59:00 -04:00
|
|
|
}
|
|
|
|
}
|