|
|
|
@ -1,12 +1,13 @@
|
|
|
|
:root {
|
|
|
|
:root {
|
|
|
|
--body-margin: 8px; /* Default value in browsers */
|
|
|
|
--body-margin: 8px; /* Default value in browsers */
|
|
|
|
--max-font-size-unitless: 18;
|
|
|
|
--max-font-size-unitless: 18;
|
|
|
|
|
|
|
|
--min-font-size-unitless: 12;
|
|
|
|
|
|
|
|
|
|
|
|
/* Measurements of the width of all columns
|
|
|
|
/* Measurements of the width of all columns
|
|
|
|
except name and description on smaller screens */
|
|
|
|
except name and description on smaller screens */
|
|
|
|
--collapsed-static-column-width-px: 400px;
|
|
|
|
--collapsed-static-column-width-px: 300px;
|
|
|
|
--collapsed-static-column-width: calc(
|
|
|
|
--collapsed-static-column-width: calc(
|
|
|
|
( 400 / var(--max-font-size-unitless) ) * 1rem
|
|
|
|
( 300 / var(--max-font-size-unitless) ) * 1rem
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/* Measurements of the width of all columns
|
|
|
|
/* Measurements of the width of all columns
|
|
|
|
@ -44,7 +45,7 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
html {
|
|
|
|
font-size: clamp(10px, 2vw, var(--max-font-size-unitless) * 1px);
|
|
|
|
font-size: clamp(12px, 2vw, var(--max-font-size-unitless) * 1px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
body {
|
|
|
|
@ -244,6 +245,11 @@ header {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.td_name-inner {
|
|
|
|
|
|
|
|
/* Block padding for inline element does not change flow, only clickbox */
|
|
|
|
|
|
|
|
padding-block: calc( var(--cell-padding-v) );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.td_language {
|
|
|
|
.td_language {
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
@ -403,7 +409,7 @@ footer p {
|
|
|
|
|
|
|
|
|
|
|
|
footer nav a {
|
|
|
|
footer nav a {
|
|
|
|
display: inline-block;
|
|
|
|
display: inline-block;
|
|
|
|
margin: .25em;
|
|
|
|
padding: .5em;
|
|
|
|
white-space: nowrap;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ -651,6 +657,6 @@ footer nav a {
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
:root {
|
|
|
|
:root {
|
|
|
|
/* ! For when descriptions don't wrap and 100vw doesn't work. */
|
|
|
|
/* ! For when descriptions don't wrap and 100vw doesn't work. */
|
|
|
|
--dynamic-columns-width: 15rem;
|
|
|
|
--dynamic-columns-width: 10rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|