2020-03-09 12:37:29 -04:00
|
|
|
.directory {
|
|
|
|
.filter-name {
|
|
|
|
float: none;
|
|
|
|
}
|
2020-02-28 10:01:48 -05:00
|
|
|
|
2020-03-09 12:37:29 -04:00
|
|
|
.filters {
|
2020-02-28 10:01:48 -05:00
|
|
|
display: flex;
|
2020-03-09 12:37:29 -04:00
|
|
|
justify-content: space-between;
|
2020-02-28 10:01:48 -05:00
|
|
|
flex-wrap: wrap;
|
2020-03-09 12:37:29 -04:00
|
|
|
|
|
|
|
> span {
|
|
|
|
margin-bottom: 5px;
|
2020-02-28 10:01:48 -05:00
|
|
|
}
|
2020-03-09 12:37:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.group-filter:not(.active) .select-kit-header {
|
2020-11-27 13:13:46 -05:00
|
|
|
color: var(--primary-high);
|
2020-03-09 12:37:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-card-directory {
|
2020-03-09 13:22:38 -04:00
|
|
|
display: grid;
|
2020-03-12 09:39:31 -04:00
|
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
|
|
@media only screen and (min-width: 500px) {
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
|
|
|
}
|
2020-03-12 09:44:22 -04:00
|
|
|
|
2022-06-18 10:52:34 -04:00
|
|
|
.user-card-container {
|
2020-03-12 09:44:22 -04:00
|
|
|
margin: 60px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports (display: grid) {
|
|
|
|
display: grid;
|
2022-06-18 10:52:34 -04:00
|
|
|
|
|
|
|
.user-card-container {
|
2020-03-12 09:44:22 -04:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-06-18 10:52:34 -04:00
|
|
|
|
2020-03-09 13:22:38 -04:00
|
|
|
grid-gap: 60px 20px;
|
|
|
|
margin-top: 60px;
|
2020-03-09 12:37:29 -04:00
|
|
|
|
|
|
|
.user-card {
|
|
|
|
z-index: z("base");
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
.badge-section {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.usercard-controls {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-card-container {
|
2020-03-09 13:22:38 -04:00
|
|
|
width: 100%;
|
2022-06-18 10:52:34 -04:00
|
|
|
|
2020-11-27 13:13:46 -05:00
|
|
|
background-color: var(--secondary);
|
2023-06-15 10:12:33 -04:00
|
|
|
box-shadow: var(--shadow-card);
|
2020-03-09 12:37:29 -04:00
|
|
|
margin-bottom: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-card-directory-footer {
|
2020-11-27 13:13:46 -05:00
|
|
|
background-color: var(--secondary);
|
2020-03-09 12:37:29 -04:00
|
|
|
padding: 0px 10px 10px 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
.stat {
|
|
|
|
flex-basis: 0;
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin: 2px;
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-size: $font-down-2;
|
|
|
|
|
|
|
|
.d-icon {
|
|
|
|
margin-right: 0.2em;
|
2020-11-27 13:13:46 -05:00
|
|
|
color: var(--primary-medium);
|
2020-03-09 12:37:29 -04:00
|
|
|
}
|
|
|
|
}
|
2020-02-28 10:01:48 -05:00
|
|
|
}
|
2020-03-09 12:37:29 -04:00
|
|
|
}
|
|
|
|
}
|