123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873 |
- /* A frontend file! Wow.
- * This file is just loaded statically 8y <link>s in the HTML files, so there's
- * no need to re-run upd8.js when tweaking values here. Handy!
- */
- :root {
- --primary-color: #0088ff;
- }
- body {
- background: black;
- margin: 10px;
- overflow-y: scroll;
- }
- body::before {
- content: "";
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: -1;
- background-image: url("../media/bg.jpg");
- background-position: center;
- background-size: cover;
- opacity: 0.5;
- }
- #page-container {
- background-color: rgba(35, 35, 35, 0.80);
- backdrop-filter: blur(4px);
- color: #ffffff;
- max-width: 1100px;
- margin: 10px auto 50px;
- padding: 15px 0;
- box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
- }
- #page-container > * {
- margin-left: 15px;
- margin-right: 15px;
- }
- #banner {
- margin: 10px 0;
- width: 100%;
- background: black;
- background-color: var(--dim-color);
- border-bottom: 1px solid var(--primary-color);
- position: relative;
- }
- #banner::after {
- content: "";
- box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.35);
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- pointer-events: none;
- }
- #banner.dim img {
- opacity: 0.8;
- }
- #banner img {
- display: block;
- width: 100%;
- height: auto;
- }
- a {
- color: var(--primary-color);
- text-decoration: none;
- }
- a:hover {
- text-decoration: underline;
- }
- #skippers {
- position: absolute;
- left: -10000px;
- top: auto;
- width: 1px;
- height: 1px;
- }
- #skippers:focus-within {
- position: static;
- width: unset;
- height: unset;
- }
- #skippers > .skipper:not(:last-child)::after {
- content: " \00b7 ";
- font-weight: 800;
- }
- .layout-columns {
- display: flex;
- }
- #header, #skippers, #footer {
- padding: 5px;
- font-size: 0.85em;
- }
- #header, #skippers {
- margin-bottom: 10px;
- }
- #footer {
- margin-top: 10px;
- }
- #header {
- display: flex;
- }
- #header > h2 {
- font-size: 1em;
- margin: 0 20px 0 0;
- font-weight: normal;
- }
- #header > h2 a.current {
- font-weight: 800;
- }
- #header > h2.dot-between-spans > span:not(:last-child)::after {
- content: " \00b7 ";
- font-weight: 800;
- }
- #header > h2 > span {
- white-space: nowrap;
- }
- #header > div {
- flex-grow: 1;
- }
- #header > div > *:not(:last-child)::after {
- content: " \00b7 ";
- font-weight: 800;
- }
- #header .chronology {
- display: inline-block;
- }
- #header .chronology .heading,
- #header .chronology .buttons {
- display: inline-block;
- }
- footer {
- text-align: center;
- font-style: oblique;
- }
- footer > :first-child {
- margin-top: 0;
- }
- footer > :last-child {
- margin-bottom: 0;
- }
- .nowrap {
- white-space: nowrap;
- }
- .icons {
- font-style: normal;
- white-space: nowrap;
- }
- .icon {
- display: inline-block;
- width: 24px;
- height: 1em;
- position: relative;
- }
- .icon > svg {
- width: 24px;
- height: 24px;
- top: -0.25em;
- position: absolute;
- fill: var(--primary-color);
- }
- .rerelease {
- opacity: 0.7;
- font-style: oblique;
- }
- .content-columns {
- columns: 2;
- }
- .content-columns .column {
- break-inside: avoid;
- }
- .content-columns .column h2 {
- margin-top: 0;
- font-size: 1em;
- }
- .sidebar, #content, #header, #skippers, #footer {
- background-color: rgba(0, 0, 0, 0.6);
- border: 1px dotted var(--primary-color);
- border-radius: 3px;
- }
- .sidebar-column {
- flex: 1 1 20%;
- min-width: 150px;
- max-width: 250px;
- flex-basis: 250px;
- height: 100%;
- }
- .sidebar-multiple {
- display: flex;
- flex-direction: column;
- }
- .sidebar-multiple .sidebar:not(:first-child) {
- margin-top: 10px;
- }
- .sidebar {
- padding: 5px;
- font-size: 0.85em;
- }
- #sidebar-left {
- margin-right: 10px;
- }
- #sidebar-right {
- margin-left: 10px;
- }
- .sidebar.wide {
- max-width: 350px;
- flex-basis: 300px;
- flex-shrink: 0;
- flex-grow: 1;
- }
- #content {
- padding: 20px;
- flex-grow: 1;
- flex-shrink: 3;
- }
- .sidebar > h1,
- .sidebar > h2,
- .sidebar > h3,
- .sidebar > p {
- text-align: center;
- }
- .sidebar h1 {
- font-size: 1.25em;
- }
- .sidebar h2 {
- font-size: 1.1em;
- margin: 0;
- }
- .sidebar h3 {
- font-size: 1.1em;
- font-style: oblique;
- font-variant: small-caps;
- margin-top: 0.3em;
- margin-bottom: 0em;
- }
- .sidebar > p {
- margin: 0.5em 0;
- padding: 0 5px;
- }
- .sidebar hr {
- color: #555;
- margin: 10px 5px;
- }
- .sidebar > ol, .sidebar > ul {
- padding-left: 30px;
- padding-right: 15px;
- }
- .sidebar > dl {
- padding-right: 15px;
- padding-left: 0;
- }
- .sidebar > dl dt {
- padding-left: 10px;
- margin-top: 0.5em;
- }
- .sidebar > dl dt.current {
- font-weight: 800;
- }
- .sidebar > dl dd {
- margin-left: 0;
- }
- .sidebar > dl dd ul {
- padding-left: 30px;
- margin-left: 0;
- }
- .sidebar > dl .side {
- padding-left: 10px;
- }
- .sidebar li.current {
- font-weight: 800;
- }
- .sidebar li {
- overflow-wrap: break-word;
- }
- .sidebar article {
- text-align: left;
- margin: 5px 5px 15px 5px;
- }
- .sidebar article:last-child {
- margin-bottom: 5px;
- }
- .sidebar article h2,
- .news-index h2 {
- border-bottom: 1px dotted;
- }
- .sidebar article h2 time,
- .news-index time {
- float: right;
- font-weight: normal;
- }
- #cover-art-container {
- float: right;
- width: 40%;
- max-width: 400px;
- margin: 0 0 10px 10px;
- font-size: 0.8em;
- }
- #cover-art img {
- display: block;
- width: 100%;
- height: 100%;
- }
- #cover-art-container p {
- margin-top: 5px;
- }
- .image-container {
- border: 2px solid var(--primary-color);
- box-sizing: border-box;
- position: relative;
- padding: 5px;
- text-align: left;
- background-color: var(--dim-color);
- color: white;
- display: inline-block;
- width: 100%;
- height: 100%;
- }
- .image-inner-area {
- overflow: hidden;
- width: 100%;
- height: 100%;
- }
- img {
- object-fit: cover;
- /* these unfortunately dont take effect while loading, so...
- text-align: center;
- line-height: 2em;
- text-shadow: 0 0 5px black;
- font-style: oblique;
- */
- }
- .js-hide,
- .js-show-once-data,
- .js-hide-once-data {
- display: none;
- }
- a.box:focus {
- outline: 3px double var(--primary-color);
- }
- a.box:focus:not(:focus-visible) {
- outline: none;
- }
- a.box img {
- display: block;
- width: 100%;
- height: 100%;
- }
- h1 {
- font-size: 1.5em;
- }
- #content li {
- margin-bottom: 4px;
- }
- #content li i {
- white-space: nowrap;
- }
- .grid-listing {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- align-items: center;
- }
- .grid-item {
- display: inline-block;
- margin: 15px;
- text-align: center;
- background-color: #111111;
- border: 1px dotted var(--primary-color);
- border-radius: 2px;
- padding: 5px;
- }
- .grid-item img {
- width: 100%;
- height: 100%;
- margin-top: auto;
- margin-bottom: auto;
- }
- .grid-item span {
- overflow-wrap: break-word;
- hyphens: auto;
- }
- .grid-item:hover {
- text-decoration: none;
- }
- .grid-actions .grid-item:hover {
- text-decoration: underline;
- }
- .grid-item > span:first-of-type {
- margin-top: 0.45em;
- display: block;
- }
- .grid-item:hover > span:first-of-type {
- text-decoration: underline;
- }
- .grid-listing > .grid-item {
- flex: 1 1 26%;
- }
- .grid-actions {
- display: flex;
- flex-direction: column;
- margin: 15px;
- }
- .grid-actions > .grid-item {
- flex-basis: unset !important;
- margin: 5px;
- --primary-color: inherit !important;
- --dim-color: inherit !important;
- }
- .grid-item {
- flex-basis: 240px;
- min-width: 200px;
- max-width: 240px;
- }
- .grid-item:not(.large-grid-item) {
- flex-basis: 180px;
- min-width: 120px;
- max-width: 180px;
- font-size: 0.9em;
- }
- .square {
- position: relative;
- width: 100%;
- }
- .square::after {
- content: "";
- display: block;
- padding-bottom: 100%;
- }
- .square-content {
- position: absolute;
- width: 100%;
- height: 100%;
- }
- .vertical-square {
- position: relative;
- height: 100%;
- }
- .vertical-square::after {
- content: "";
- display: block;
- padding-right: 100%;
- }
- .reveal {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .reveal img {
- filter: blur(20px);
- opacity: 0.4;
- }
- .reveal-text {
- color: white;
- position: absolute;
- top: 15px;
- left: 10px;
- right: 10px;
- text-align: center;
- font-weight: bold;
- }
- .reveal-interaction {
- opacity: 0.8;
- }
- .reveal.revealed img {
- filter: none;
- opacity: 1;
- }
- .reveal.revealed .reveal-text {
- display: none;
- }
- #content.top-index h1,
- #content.flash-index h1 {
- text-align: center;
- font-size: 2em;
- }
- #content.flash-index h2 {
- text-align: center;
- font-size: 2.5em;
- font-variant: small-caps;
- font-style: oblique;
- margin-bottom: 0;
- text-align: center;
- width: 100%;
- }
- #content.top-index h2 {
- text-align: center;
- font-size: 2em;
- font-weight: normal;
- margin-bottom: 0.25em;
- }
- .quick-info {
- text-align: center;
- }
- ul.quick-info {
- list-style: none;
- padding-left: 0;
- }
- ul.quick-info li {
- display: inline-block;
- }
- ul.quick-info li:not(:last-child)::after {
- content: " \00b7 ";
- font-weight: 800;
- }
- #intro-menu {
- margin: 24px 0;
- padding: 10px;
- background-color: #222222;
- text-align: center;
- border: 1px dotted var(--primary-color);
- border-radius: 2px;
- }
- #intro-menu p {
- margin: 12px 0;
- }
- #intro-menu a {
- margin: 0 6px;
- }
- li .by {
- white-space: nowrap;
- font-style: oblique;
- }
- p code {
- font-size: 1em;
- font-family: 'courier new';
- font-weight: 800;
- }
- blockquote {
- max-width: 600px;
- margin-right: 0;
- }
- .long-content {
- margin-left: 12%;
- margin-right: 12%;
- }
- p img {
- max-width: 100%;
- height: auto;
- }
- dl dt {
- padding-left: 2em;
- }
- dl dt {
- margin-bottom: 2px;
- }
- dl dd {
- margin-bottom: 1em;
- }
- dl ul, dl ol {
- margin-top: 0;
- margin-bottom: 0;
- }
- .album-group-list dt {
- font-style: oblique;
- padding-left: 0;
- }
- .album-group-list dd {
- margin-left: 0;
- }
- .group-chronology-link {
- font-style: oblique;
- }
- hr.split::before {
- content: "(split)";
- color: #808080;
- }
- hr.split {
- position: relative;
- overflow: hidden;
- border: none;
- }
- hr.split::after {
- display: inline-block;
- content: "";
- border: 1px inset #808080;
- width: 100%;
- position: absolute;
- top: 50%;
- margin-top: -2px;
- margin-left: 10px;
- }
- li > ul {
- margin-top: 5px;
- }
- #info-card-container {
- position: absolute;
- left: 0;
- right: 10px;
- pointer-events: none; /* Padding area shouldn't 8e interactive. */
- display: none;
- }
- #info-card-container.show,
- #info-card-container.hide {
- display: flex;
- }
- #info-card-container > * {
- flex-basis: 400px;
- }
- #info-card-container.show {
- animation: 0.2s linear forwards info-card-show;
- transition: top 0.1s, left 0.1s;
- }
- #info-card-container.hide {
- animation: 0.2s linear forwards info-card-hide;
- }
- @keyframes info-card-show {
- 0% {
- opacity: 0;
- margin-top: -5px;
- }
- 100% {
- opacity: 1;
- margin-top: 0;
- }
- }
- @keyframes info-card-hide {
- 0% {
- opacity: 1;
- margin-top: 0;
- }
- 100% {
- opacity: 0;
- margin-top: 5px;
- display: none !important;
- }
- }
- .info-card-decor {
- padding-left: 3ch;
- border-top: 1px solid white;
- }
- .info-card {
- background-color: black;
- color: white;
- border: 1px dotted var(--primary-color);
- border-radius: 3px;
- box-shadow: 0 5px 5px black;
- padding: 5px;
- font-size: 0.9em;
- pointer-events: none;
- }
- .info-card::after {
- content: "";
- display: block;
- clear: both;
- }
- #info-card-container.show .info-card {
- animation: 0.01s linear 0.2s forwards info-card-become-interactive;
- }
- @keyframes info-card-become-interactive {
- to {
- pointer-events: auto;
- }
- }
- .info-card-art-container {
- float: right;
- width: 40%;
- margin: 5px;
- font-size: 0.8em;
- /* Dynamically shown. */
- display: none;
- }
- .info-card-art-container .image-container {
- padding: 2px;
- }
- .info-card-art {
- display: block;
- width: 100%;
- height: 100%;
- }
- .info-card-name {
- font-size: 1em;
- border-bottom: 1px dotted;
- margin: 0;
- }
- .info-card p {
- margin-top: 0.25em;
- margin-bottom: 0.25em;
- }
- .info-card p:last-child {
- margin-bottom: 0;
- }
- @media (max-width: 900px) {
- .sidebar-column:not(.no-hide) {
- display: none;
- }
- .layout-columns.vertical-when-thin {
- flex-direction: column;
- }
- .layout-columns.vertical-when-thin > *:not(:last-child) {
- margin-bottom: 10px;
- }
- .sidebar-column.no-hide {
- max-width: unset !important;
- flex-basis: unset !important;
- margin-right: 0 !important;
- margin-left: 0 !important;
- }
- .sidebar .news-entry:not(.first-news-entry) {
- display: none;
- }
- }
- @media (max-width: 600px) {
- .content-columns {
- columns: 1;
- }
- }
|