mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 21:32:45 +08:00
46 lines
830 B
SCSS
46 lines
830 B
SCSS
.groups-page {
|
|
h1 {
|
|
margin: 20px 0px;
|
|
}
|
|
}
|
|
|
|
.groups-table {
|
|
width: 100%;
|
|
|
|
.groups-name {
|
|
span {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.avatar-flair {
|
|
$size: 30px;
|
|
|
|
background-size: $size;
|
|
height: $size;
|
|
width: $size;
|
|
|
|
i {
|
|
font-size: $size !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
th {
|
|
border-bottom: 3px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
padding: 5px 0px 5px 5px;
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
font-weight: normal;
|
|
text-align: left;
|
|
}
|
|
|
|
tr {
|
|
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
|
|
td {
|
|
color: dark-light-diff($primary, $secondary, 50%, -50%);
|
|
padding: 0.8em 0;
|
|
}
|
|
}
|
|
}
|