2021-08-27 17:58:52 +00:00
|
|
|
// Global variables
|
|
|
|
$input-padding: 0.3rem;
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
.noselect {
|
|
|
|
-webkit-touch-callout: none; /* iOS Safari */
|
|
|
|
-webkit-user-select: none; /* Chrome/Safari/Opera */
|
|
|
|
-khtml-user-select: none; /* Konqueror */
|
|
|
|
-moz-user-select: none; /* Firefox */
|
|
|
|
-ms-user-select: none; /* IE/Edge */
|
|
|
|
user-select: none; /* non-prefixed version, currently */
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
br {
|
|
|
|
border-style: none; // why, IE...
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
@include usevar(background-color, main-background-color);
|
|
|
|
@include usevar(color, main-color);
|
|
|
|
|
|
|
|
font-family: "Fira Sans", sans-serif;
|
|
|
|
background-size: cover;
|
|
|
|
min-height: 100vh;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: px2rem(14px);
|
2021-08-28 13:41:09 +00:00
|
|
|
line-height: 1.5;
|
2021-03-11 04:19:37 +00:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2021-09-22 10:59:03 +00:00
|
|
|
a, .link {
|
2021-03-11 04:19:37 +00:00
|
|
|
@include usevar(color, link-color);
|
|
|
|
@include usevar(border-bottom-color, link-border-color);
|
|
|
|
|
2021-09-01 06:15:13 +00:00
|
|
|
border-bottom: none;
|
|
|
|
text-decoration: none;
|
2021-03-11 04:19:37 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
/* text-decoration:underline; */
|
|
|
|
}
|
|
|
|
|
|
|
|
&.external::after {
|
|
|
|
font-family: "icons";
|
|
|
|
content:" 1";
|
|
|
|
vertical-align:middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ol {
|
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: circle;
|
2021-09-01 06:15:13 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-none {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2021-09-01 06:15:13 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2021-03-11 04:19:37 +00:00
|
|
|
padding-left: 5px;
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
2021-09-01 06:15:13 +00:00
|
|
|
h1, h2, h3, h4, h5 {
|
2021-03-11 04:19:37 +00:00
|
|
|
font-weight: 500;
|
2021-09-01 06:15:13 +00:00
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
font-size: 1.5rem;
|
2021-03-11 04:19:37 +00:00
|
|
|
line-height: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
strong {
|
2021-09-01 06:15:13 +00:00
|
|
|
font-weight: 600;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
em {
|
2021-09-01 06:15:13 +00:00
|
|
|
font-style: italic;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2021-09-01 06:15:13 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-spaced p {
|
|
|
|
$spacing: 0.6em;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-top: $spacing;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: $spacing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
2021-09-01 06:15:13 +00:00
|
|
|
border-collapse: collapse;
|
|
|
|
table-layout: fixed;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
th, td {
|
|
|
|
@include usevar(color, fg-font-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
vertical-align:baseline;
|
|
|
|
}
|
|
|
|
|
2021-09-01 06:15:13 +00:00
|
|
|
hr {
|
2021-03-11 04:19:37 +00:00
|
|
|
@include usevar(border-top-color, hr-color);
|
|
|
|
@extend .mv3;
|
|
|
|
|
|
|
|
border-width: 1px 0 0;
|
|
|
|
border-top-style: solid;
|
|
|
|
}
|
|
|
|
|
2021-07-30 22:32:19 +00:00
|
|
|
$monospace-fonts: "Fira Mono", monospace;
|
|
|
|
|
|
|
|
.mono {
|
|
|
|
font-family: $monospace-fonts;
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
article code {
|
2021-07-30 22:32:19 +00:00
|
|
|
font-family: $monospace-fonts;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.big { font-size:120%; }
|
|
|
|
|
|
|
|
.title {
|
2021-09-01 06:15:13 +00:00
|
|
|
font-weight: bold;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.clear {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.full {
|
2021-09-01 06:15:13 +00:00
|
|
|
width: 100%;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
2021-09-01 06:15:13 +00:00
|
|
|
display: none;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.empty {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.column h2 {
|
2021-09-01 06:15:13 +00:00
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.margin-center {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-shrink-0 {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-grow-1 {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2021-07-20 01:12:27 +00:00
|
|
|
.flex-fair {
|
|
|
|
flex-basis: 1px;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media #{$breakpoint-not-small} {
|
|
|
|
.flex-fair-ns {
|
|
|
|
flex-basis: 1px;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-24 20:48:28 +00:00
|
|
|
@media #{$breakpoint-large} {
|
|
|
|
.flex-fair-l {
|
|
|
|
flex-basis: 1px;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-10 21:32:19 +00:00
|
|
|
.c--normal {
|
|
|
|
@include usevar('color', 'fg-font-color');
|
|
|
|
}
|
|
|
|
|
2022-09-10 16:29:57 +00:00
|
|
|
.c--inherit {
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover, &:active {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
.b--theme {
|
|
|
|
@include usevar(border-color, theme-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.c--dim {
|
|
|
|
@include usevar(color, dim-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.c--theme-dim {
|
|
|
|
@include usevar(color, theme-color-dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
.b--dim {
|
|
|
|
@include usevar(border-color, dim-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.b--theme-dim {
|
|
|
|
@include usevar(border-color, theme-color-dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
.c--dimmer {
|
|
|
|
@include usevar(color, dimmer-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.c--theme-dimmer {
|
|
|
|
@include usevar(color, theme-color-dimmer);
|
|
|
|
}
|
|
|
|
|
|
|
|
.b--dimmer {
|
|
|
|
@include usevar(border-color, dimmer-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.b--theme-dimmer {
|
|
|
|
@include usevar(border-color, theme-color-dimmer);
|
|
|
|
}
|
|
|
|
|
|
|
|
.c--dimmest {
|
|
|
|
@include usevar(color, dimmest-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.c--theme-dimmest {
|
|
|
|
@include usevar(color, theme-color-dimmest);
|
|
|
|
}
|
|
|
|
|
|
|
|
.b--dimmest {
|
|
|
|
@include usevar(border-color, dimmest-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.b--theme-dimmest {
|
|
|
|
@include usevar(border-color, theme-color-dimmest);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg--dim {
|
|
|
|
@include usevar(background-color, dim-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg--content {
|
|
|
|
@include usevar(background-color, content-background);
|
|
|
|
}
|
|
|
|
|
2021-10-24 20:48:28 +00:00
|
|
|
.bg--card {
|
|
|
|
@include usevar(background-color, card-background);
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
.f8 {
|
|
|
|
font-size: 0.65rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mw-site {
|
|
|
|
max-width: 80rem;
|
|
|
|
}
|
|
|
|
|
2021-04-24 04:27:45 +00:00
|
|
|
.mh-3 {
|
|
|
|
max-height: $height-3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mh-4 {
|
|
|
|
max-height: $height-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mh-5 {
|
|
|
|
max-height: $height-5;
|
|
|
|
}
|
|
|
|
|
2021-09-01 06:15:13 +00:00
|
|
|
.mh-6 {
|
|
|
|
max-height: $height-6;
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
.mh-100 {
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mh-50vh {
|
|
|
|
max-height: 50vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mh-60vh {
|
|
|
|
max-height: 60vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mh-70vh {
|
|
|
|
max-height: 70vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mh-80vh {
|
|
|
|
max-height: 80vh;
|
|
|
|
}
|
|
|
|
|
2021-06-12 03:51:07 +00:00
|
|
|
.minw-100 {
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minh-1 {
|
|
|
|
min-height: $height-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minh-2 {
|
|
|
|
min-height: $height-2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minh-3 {
|
|
|
|
min-height: $height-3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minh-4 {
|
|
|
|
min-height: $height-4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.minh-5 {
|
|
|
|
min-height: $height-5;
|
|
|
|
}
|
|
|
|
|
2021-07-30 22:32:19 +00:00
|
|
|
.minh-6 {
|
|
|
|
min-height: $height-6;
|
|
|
|
}
|
|
|
|
|
2022-08-05 04:03:45 +00:00
|
|
|
.h1-5 {
|
|
|
|
height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
.fira {
|
|
|
|
font-family: "Fira Sans", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bi-avoid { break-inside: avoid; }
|
|
|
|
.cc-auto { column-count: auto; }
|
|
|
|
.cc1 { column-count: 1; }
|
|
|
|
.cc2 { column-count: 2; }
|
|
|
|
.cc3 { column-count: 3; }
|
|
|
|
.cg0 { column-gap: $spacing-none; }
|
|
|
|
.cg1 { column-gap: $spacing-extra-small; }
|
|
|
|
.cg2 { column-gap: $spacing-small; }
|
|
|
|
.cg3 { column-gap: $spacing-medium; }
|
|
|
|
.cg4 { column-gap: $spacing-large; }
|
|
|
|
.cg5 { column-gap: $spacing-extra-large; }
|
|
|
|
|
2022-07-26 16:34:05 +00:00
|
|
|
.g0 { gap: $spacing-none; }
|
|
|
|
.g1 { gap: $spacing-extra-small; }
|
|
|
|
.g2 { gap: $spacing-small; }
|
|
|
|
.g3 { gap: $spacing-medium; }
|
|
|
|
.g4 { gap: $spacing-large; }
|
|
|
|
.g5 { gap: $spacing-extra-large; }
|
|
|
|
|
2023-04-22 16:31:14 +00:00
|
|
|
.aspect-ratio--2x1 {
|
|
|
|
padding-bottom: 50%;
|
|
|
|
}
|
|
|
|
|
2022-08-07 03:32:29 +00:00
|
|
|
.hide-if-empty:empty {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:19:37 +00:00
|
|
|
@media #{$breakpoint-not-small} {
|
|
|
|
.bi-avoid-ns { break-inside: avoid; }
|
|
|
|
.cc-auto-ns { column-count: auto; }
|
|
|
|
.cc1-ns { column-count: 1; }
|
|
|
|
.cc2-ns { column-count: 2; }
|
|
|
|
.cc3-ns { column-count: 3; }
|
|
|
|
.cg0-ns { column-gap: $spacing-none; }
|
|
|
|
.cg1-ns { column-gap: $spacing-extra-small; }
|
|
|
|
.cg2-ns { column-gap: $spacing-small; }
|
|
|
|
.cg3-ns { column-gap: $spacing-medium; }
|
|
|
|
.cg4-ns { column-gap: $spacing-large; }
|
|
|
|
.cg5-ns { column-gap: $spacing-extra-large; }
|
|
|
|
|
|
|
|
.bg--dim-ns {
|
|
|
|
@include usevar(background-color, dim-background);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media #{$breakpoint-medium} {
|
|
|
|
.bi-avoid-m { break-inside: avoid; }
|
|
|
|
.cc-auto-m { column-count: auto; }
|
|
|
|
.cc1-m { column-count: 1; }
|
|
|
|
.cc2-m { column-count: 2; }
|
|
|
|
.cc3-m { column-count: 3; }
|
|
|
|
.cg1-m { column-gap: $spacing-extra-small; }
|
|
|
|
.cg2-m { column-gap: $spacing-small; }
|
|
|
|
.cg3-m { column-gap: $spacing-medium; }
|
|
|
|
.cg4-m { column-gap: $spacing-large; }
|
|
|
|
.cg5-m { column-gap: $spacing-extra-large; }
|
|
|
|
|
|
|
|
.bg--dim-m {
|
|
|
|
@include usevar(background-color, dim-background);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media #{$breakpoint-large} {
|
|
|
|
.bi-avoid-l { break-inside: avoid; }
|
|
|
|
.cc-auto-l { column-count: auto; }
|
|
|
|
.cc1-l { column-count: 1; }
|
|
|
|
.cc2-l { column-count: 2; }
|
|
|
|
.cc3-l { column-count: 3; }
|
|
|
|
.cg1-l { column-gap: $spacing-extra-small; }
|
|
|
|
.cg2-l { column-gap: $spacing-small; }
|
|
|
|
.cg3-l { column-gap: $spacing-medium; }
|
|
|
|
.cg4-l { column-gap: $spacing-large; }
|
|
|
|
.cg5-l { column-gap: $spacing-extra-large; }
|
|
|
|
|
|
|
|
.bg--dim-l {
|
|
|
|
@include usevar(background-color, dim-background);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.not-first:first-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.not-first-of-type:first-of-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.not-last:last-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.not-last-of-type:last-of-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svgicon {
|
|
|
|
svg {
|
|
|
|
fill: currentColor;
|
2021-10-21 02:21:24 +00:00
|
|
|
stroke: currentColor;
|
2021-03-11 04:19:37 +00:00
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.svgicon-nofix) svg {
|
|
|
|
transform: translate(0px,0.1em);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tachyons' `center` is unfortunately overloaded by a .center
|
|
|
|
// class we have in our own CSS.
|
|
|
|
.center-layout {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
.list li:not(:last-child)::after {
|
|
|
|
@extend .c--dimmer;
|
|
|
|
|
|
|
|
@media #{$breakpoint-not-small} {
|
|
|
|
& {
|
|
|
|
content: ' / ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
@include usevar(background-color, content-background);
|
|
|
|
|
2021-09-01 06:15:13 +00:00
|
|
|
margin: auto;
|
2021-03-11 04:19:37 +00:00
|
|
|
|
|
|
|
p {
|
|
|
|
-moz-text-size-adjust:auto;
|
|
|
|
-webkit-text-size-adjust:auto;
|
|
|
|
text-size-adjust:auto;
|
2021-08-28 17:07:45 +00:00
|
|
|
|
|
|
|
margin: 0.6rem 0;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
|
|
line-height: 1.42em;
|
|
|
|
text-align: left;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-bottom: $spacing-small;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .top-bar {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-block {
|
|
|
|
// TODO: What the heck are these styles
|
|
|
|
/* Background color given by theme */
|
|
|
|
background-repeat:repeat-x;
|
|
|
|
border-radius:2px;
|
|
|
|
text-align:left;
|
|
|
|
width:100%;
|
|
|
|
/* box-shadow: 0px 4px 7px rgba(0,0,0,0.5); /* Not themed */
|
|
|
|
position:relative;
|
|
|
|
box-sizing:border-box;
|
|
|
|
|
|
|
|
&.top-bar {
|
|
|
|
background-image:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.language-desc {
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-bg {
|
|
|
|
background-image:none;
|
|
|
|
background-color:transparent;
|
|
|
|
box-shadow:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
.content-block {
|
|
|
|
&.single {
|
|
|
|
padding:0px; /* for project list, TODO */
|
|
|
|
margin-top:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top-bar {
|
|
|
|
/* box-shadow: 0px 2px 4px rgba(0,0,0,0.2); /* Not themed */
|
|
|
|
width:80%;
|
|
|
|
display:block;
|
|
|
|
margin:10px auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
br.sidebar-filler {
|
|
|
|
line-height:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projectlist {
|
|
|
|
background-color:transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-block .bottom-padding, .sidebar .bottom-padding {
|
|
|
|
margin-top: $spacing-medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb {
|
|
|
|
&:hover {
|
|
|
|
text-decoration:underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
text-overflow: clip ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.breadcrumb-before:nth-of-type(n+2)::before {
|
|
|
|
content: '≫';
|
|
|
|
}
|
|
|
|
|
|
|
|
.optionbar {
|
|
|
|
@extend .b--dimmest;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
text-align: center;
|
2021-09-09 04:01:21 +00:00
|
|
|
align-items: center;
|
2021-03-11 04:19:37 +00:00
|
|
|
border-style: dashed;
|
|
|
|
border-width: 0px;
|
|
|
|
border-bottom-width: 1px;
|
2021-09-09 04:01:21 +00:00
|
|
|
padding-bottom: $spacing-small;
|
2021-03-11 04:19:37 +00:00
|
|
|
|
|
|
|
@media #{$breakpoint-not-small} {
|
|
|
|
flex-direction: row;
|
|
|
|
text-align: left;
|
2021-09-09 04:01:21 +00:00
|
|
|
padding-bottom: 0;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
border-bottom-width: 0px;
|
|
|
|
border-top-width: 1px;
|
2021-09-09 04:01:21 +00:00
|
|
|
padding-bottom: 0;
|
|
|
|
padding-top: $spacing-small;
|
|
|
|
|
|
|
|
@media #{$breakpoint-not-small} {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.center {
|
|
|
|
text-align: center; // TODO: find this and kill it
|
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
@media #{$breakpoint-not-small} {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2021-07-23 19:00:37 +00:00
|
|
|
& {
|
|
|
|
#{$buttons} {
|
|
|
|
@include lite-button;
|
|
|
|
@extend .ph2;
|
|
|
|
@extend .pv1;
|
|
|
|
@extend .pv2-ns;
|
|
|
|
}
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.group {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab {
|
|
|
|
@include usevar(background-color, tab-background);
|
|
|
|
@extend .pa2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-bar {
|
|
|
|
@include usevar(border-color, tab-border-color);
|
2021-08-27 17:58:52 +00:00
|
|
|
@extend .flex, .flex-row;
|
2021-03-11 04:19:37 +00:00
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.tab-button {
|
|
|
|
@include usevar(background-color, tab-button-background);
|
|
|
|
@include usevar(border-color, tab-border-color);
|
2021-08-27 17:58:52 +00:00
|
|
|
@extend .ph3, .pv2;
|
2021-03-11 04:19:37 +00:00
|
|
|
|
2021-08-27 17:58:52 +00:00
|
|
|
cursor: pointer; // TODO: Should this be a link?
|
2021-03-11 04:19:37 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
@include usevar(background-color, tab-button-background-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
|
|
|
@include usevar(background-color, tab-button-background-current);
|
2021-08-27 17:58:52 +00:00
|
|
|
font-weight: 500;
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.pagination {
|
|
|
|
.page.current {
|
|
|
|
cursor: default;
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
@extend .pv0, .ph2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-link {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(ben): It appears that this code is inactive because the JS that would
|
|
|
|
// create the popups is commented out.
|
|
|
|
.user-popup {
|
|
|
|
opacity:0;
|
|
|
|
max-height:0px;
|
|
|
|
width:340px;
|
|
|
|
|
|
|
|
text-align:center;
|
|
|
|
|
|
|
|
transition:max-height 0.2s, opacity 0.1s;
|
|
|
|
box-shadow:0px 2px 5px rgba(0,0,0,0.3);
|
|
|
|
|
|
|
|
overflow:hidden;
|
|
|
|
position:absolute;
|
|
|
|
bottom:0px;
|
|
|
|
|
|
|
|
&.expanded {
|
|
|
|
visibility:visible;
|
|
|
|
max-height:250px;
|
|
|
|
opacity:1;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
/* Background color given by theme */
|
|
|
|
width:100%;
|
|
|
|
position:relative;
|
|
|
|
border-radius:3px;
|
|
|
|
z-index:10;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
vertical-align:top;
|
|
|
|
padding:15px 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#avatar {
|
|
|
|
width:100px;
|
|
|
|
height:100px;
|
|
|
|
background-size:contain;
|
|
|
|
background-position:center center;
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
border-radius:3px;
|
|
|
|
margin:0px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.username {
|
|
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
/* Border color given by theme */
|
|
|
|
border-top: 1px solid transparent;
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
.bio {
|
|
|
|
vertical-align:top;
|
|
|
|
width:90%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-search {
|
|
|
|
&[type=text].lite {
|
|
|
|
// wow CSS selector priority sucks
|
|
|
|
|
|
|
|
// First transition copied from input .lite
|
|
|
|
transition: border-bottom-color 60ms ease-in-out, width 300ms ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#search_button_homepage {
|
|
|
|
margin:0px;
|
|
|
|
height:100%;
|
|
|
|
height:calc(100% - 2px);
|
|
|
|
border-radius:0px;
|
|
|
|
display:inline-block;
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.background-even:nth-of-type(even) {
|
|
|
|
// this is the default, and should be overridden by dynamic colors.
|
2021-08-03 01:52:46 +00:00
|
|
|
@include usevar(background-color, background-even-background);
|
|
|
|
@include usevar(--fade-color, background-even-background);
|
2021-03-11 04:19:37 +00:00
|
|
|
}
|
2023-01-17 03:22:23 +00:00
|
|
|
|
|
|
|
.sr-only {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
clip-path: inset(50%);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
word-wrap: normal !important;
|
|
|
|
transition: 0.2s all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sr-focusable {
|
|
|
|
@extend .sr-only;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
padding: 15px 10px;
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
background: var(--content-background);
|
|
|
|
clip: initial;
|
|
|
|
clip-path: initial;
|
|
|
|
z-index: 99999;
|
|
|
|
}
|
|
|
|
}
|