2e6bdc61e1
Remove squares theme
280 lines
No EOL
5 KiB
CSS
280 lines
No EOL
5 KiB
CSS
:root {
|
|
color-scheme: light dark;
|
|
|
|
--primary: #cc2027;
|
|
--primary-darken: #8E161B;
|
|
--primary-lighten: #D64C52;
|
|
--primary-text-contrast: #FFF;
|
|
|
|
--secondary: #20ccc5;
|
|
--secondary-darken: #168E89;
|
|
--secondary-lighten: #4CD6D0;
|
|
--secondary-text-contrast: #000;
|
|
|
|
--error: #c43933;
|
|
--error-darken: #892723;
|
|
--error-lighten: #CF605B;
|
|
--error-text-contrast: #FFF;
|
|
|
|
--info: #206ccc;
|
|
--info-darken: #164B8E;
|
|
--info-lighten: #4C89D6;
|
|
--info-text-contrast: #FFF;
|
|
|
|
--success: #7dcc20;
|
|
--success-darken: #578E16;
|
|
--success-lighten: #97D64C;
|
|
--success-text-contrast: #000;
|
|
|
|
--warning: #cc5e20;
|
|
--warning-darken: #8E4116;
|
|
--warning-lighten: #D67E4C;
|
|
--warning-text-contrast: #FFF;
|
|
|
|
--background-color: light-dark(#fffbfb, #171414);
|
|
--background-color-darken: light-dark(#B2AFAF, #100E0E);
|
|
--background-color-lighten: light-dark(#FFFBFB, #454343);
|
|
|
|
--header-background-color: light-dark(#171414, #fffbfb);
|
|
--header-background-color-darken: light-dark(#100E0E, #B2AFAF);
|
|
--header-background-color-lighten: light-dark(#454343, #FFFBFB);
|
|
|
|
--header-text-color: light-dark(#fffbfb, #171414);
|
|
--header-text-color-secondary: #ffffffb3;
|
|
--header-text-color-disable: light-dark(#ffffff80, #454343);
|
|
|
|
--text-color: light-dark(#171414, #fffbfb);
|
|
--text-color-secondary: #ffffffb3;
|
|
--text-color-disable: light-dark(#454343, #ffffff80);
|
|
|
|
--text-color-inverse: light-dark(#fffbfb, #171414);
|
|
--text-color-secondary-inverse: #ffffffb3;
|
|
--text-color-disable-inverse: light-dark(#ffffff80, #454343);
|
|
|
|
--h1-color: var(--primary);
|
|
--h2-color: #c33d35;
|
|
--h3-color: #b94f44;
|
|
--h4-color: #ae5e52;
|
|
--h5-color: #a16a61;
|
|
--h6-color: #927671;
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
--background-color: #171414;
|
|
--text-color: #fffbfb;
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--background-color: #fffbfb;
|
|
--text-color: #171414;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background: var(--background-color);
|
|
color: var(--text-color);
|
|
font-size: 1.5rem;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
a {
|
|
color: var(--primary);
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:not(.card-content):hover {
|
|
color: var(--primary-lighten);
|
|
}
|
|
|
|
h1 {
|
|
font-style: italic;
|
|
font-family: Georgia, Lucida, serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 a {
|
|
color: var(--h1-color);
|
|
}
|
|
|
|
#logo-border-color {
|
|
fill: var(--primary) !important;
|
|
stroke: none !important;
|
|
}
|
|
|
|
.logo {
|
|
height: 3em;
|
|
vertical-align: middle;
|
|
stroke: var(--header-text-color) !important;
|
|
}
|
|
|
|
#dark-mode {
|
|
position: absolute;
|
|
right: 1em;
|
|
top: 1em;
|
|
}
|
|
|
|
body>header {
|
|
background-color: var(--header-background-color);
|
|
color: var(--header-text-color);
|
|
padding: 0;
|
|
margin: 0 0 .5em 0;
|
|
}
|
|
|
|
#innerheader {
|
|
padding: 0 .5em;
|
|
}
|
|
|
|
#breadcrumb a {
|
|
color: var(--primary);
|
|
}
|
|
|
|
#breadcrumb a:hover {
|
|
color: var(--primary-lighten);
|
|
}
|
|
|
|
#container,
|
|
.message {
|
|
max-width: 100%;
|
|
margin: 0px auto;
|
|
}
|
|
|
|
.message {
|
|
background-color: var(--success);
|
|
color: var(--success-text-contrast);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.message>div {
|
|
padding: 1rem;
|
|
}
|
|
|
|
img {
|
|
transition: all .2s ease-in;
|
|
border: none;
|
|
}
|
|
|
|
nav {
|
|
font-size: 2.2rem;
|
|
}
|
|
|
|
body>nav {
|
|
text-align: center;
|
|
}
|
|
|
|
aside {
|
|
padding-bottom: 0.3em;
|
|
}
|
|
|
|
aside a {
|
|
color: var(--primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
aside * {
|
|
margin: .2em 0;
|
|
}
|
|
|
|
#container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: .5em;
|
|
justify-content: center;
|
|
}
|
|
|
|
.card {
|
|
background-color: var(--header-background-color);
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
margin: 0;
|
|
padding: 0;
|
|
transition: all .2s ease-in;
|
|
position: relative;
|
|
width: min-content;
|
|
}
|
|
|
|
.card a {
|
|
display: flex;
|
|
}
|
|
|
|
.card-footer {
|
|
color: var(--header-text-color);
|
|
margin: 0;
|
|
overflow: hidden;
|
|
padding: .3em .6em;
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
footer {
|
|
padding-top: 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
footer a {
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.buildTime {
|
|
font-size: 1.1rem;
|
|
margin: 0;
|
|
}
|
|
|
|
#backtop {
|
|
bottom: 0;
|
|
border-radius: 4px;
|
|
background-color: var(--primary);
|
|
color: var(--text-color-secondary);
|
|
display: block;
|
|
margin: .5%;
|
|
padding: 1rem 4rem;
|
|
position: fixed;
|
|
right: 0;
|
|
}
|
|
|
|
#legend {
|
|
background-color: var(--header-background-color);
|
|
flex: none;
|
|
max-width: 90%;
|
|
width: 100%;
|
|
}
|
|
|
|
.lightbox-container__media {
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
|
|
p {
|
|
background-color: var(--header-background-color);
|
|
width: 100%;
|
|
max-width: 90%;
|
|
}
|
|
}
|
|
|
|
.gdesc-inner {
|
|
color: var(--text-color-inverse);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.gdesc-inner ul {
|
|
padding: 0 0 0 1.8em;
|
|
}
|
|
|
|
.glightbox-container .gslide,
|
|
.gslide-image img {
|
|
user-select: auto;
|
|
} |