2024-07-23 06:35:18 +08:00
|
|
|
.about {
|
|
|
|
&__main-content {
|
|
|
|
display: grid;
|
2024-08-07 16:11:41 +08:00
|
|
|
grid-template-columns: 2.5fr 1fr;
|
2024-07-23 06:35:18 +08:00
|
|
|
column-gap: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__stats {
|
|
|
|
display: flex;
|
|
|
|
border-top: 1px solid var(--primary-low);
|
|
|
|
border-bottom: 1px solid var(--primary-low);
|
|
|
|
padding: 1em 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__stats-item {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__banner {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
min-height: 300px;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
2024-08-07 16:11:41 +08: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 21:23:44 +08:00
|
|
|
|
|
|
|
&__admins,
|
|
|
|
&__moderators {
|
|
|
|
margin-top: 3em;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.about-page-users-list {
|
|
|
|
display: grid;
|
|
|
|
gap: 1em;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
|
|
|
|
|
|
|
|
&__expand-button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-07-23 06:35:18 +08:00
|
|
|
}
|
|
|
|
|
2014-08-12 04:59:00 +08:00
|
|
|
section.about {
|
2023-10-03 01:55:11 +08:00
|
|
|
margin-bottom: 3em;
|
2014-08-12 04:59:00 +08:00
|
|
|
|
2023-10-03 21:43:45 +08:00
|
|
|
.users {
|
|
|
|
display: grid;
|
|
|
|
gap: 1em;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
|
|
|
|
}
|
|
|
|
|
2014-08-12 04:59:00 +08:00
|
|
|
h3 {
|
2023-10-03 01:55:11 +08:00
|
|
|
margin-bottom: 1em;
|
|
|
|
display: flex;
|
2024-01-25 05:36:36 +08:00
|
|
|
flex-wrap: wrap;
|
2023-10-03 01:55:11 +08:00
|
|
|
align-items: center;
|
2024-01-25 05:36:36 +08:00
|
|
|
gap: 0 0.35em;
|
2023-10-03 01:55:11 +08:00
|
|
|
.d-icon {
|
|
|
|
color: var(--primary-high);
|
2014-08-12 04:59:00 +08:00
|
|
|
}
|
2024-01-25 05:36:36 +08:00
|
|
|
.badge-category__wrapper {
|
|
|
|
font-size: var(--font-0);
|
|
|
|
align-self: baseline;
|
|
|
|
}
|
2023-10-03 01:55:11 +08:00
|
|
|
}
|
2014-08-12 04:59:00 +08:00
|
|
|
|
2023-10-03 01:55:11 +08:00
|
|
|
&.stats {
|
|
|
|
table {
|
|
|
|
td {
|
|
|
|
padding: 0.67em;
|
|
|
|
&:not(:first-child) {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2014-08-12 04:59:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|