2024-06-10 04:06:12 -04:00
|
|
|
/*
|
|
|
|
Flexoki (https://stephango.com/flexoki)
|
|
|
|
MIT License
|
|
|
|
|
|
|
|
Copyright (c) 2023 Steph Ango
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
|
|
|
|
FONT: LINUX LIBERTINE
|
|
|
|
===============================================================================
|
|
|
|
License: GPL and OFL 1.1
|
|
|
|
|
|
|
|
For license text, see:
|
|
|
|
- https://gils.nexus/font/GPL.txt
|
|
|
|
- https://gils.nexus/font/OFL-1.1.txt
|
|
|
|
|
|
|
|
*/
|
|
|
|
@font-face {
|
|
|
|
font-family: "Linux Libertine";
|
|
|
|
font-style: normal;
|
|
|
|
src: local("Linux Libertine"), url("../font/LinLibertine_Rah.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Linux Libertine";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
src: local("Linux Libertine Semibold"), url("../font/LinLibertine_RZah.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Linux Libertine";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
src: local("Linux Libertine Bold"), url("../font/LinLibertine_RBah.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Linux Libertine";
|
|
|
|
font-style: italic;
|
|
|
|
src: local("Linux Libertine Italic"), url("../font/LinLibertine_RIah.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Linux Libertine";
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: 600;
|
|
|
|
src: local("Linux Libertine Semibold Italic"), url("../font/LinLibertine_RZIah.ttf");
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Linux Libertine";
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: 700;
|
|
|
|
src: local("Linux Libertine Bold Italic"), url("../font/LinLibertine_RBIah.ttf");
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
|
|
|
|
VARIABLES
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
|
|
|
|
COLORS
|
|
|
|
===============================================================================
|
|
|
|
|
|
|
|
*/
|
|
|
|
:root {
|
|
|
|
font-size: 14pt;
|
|
|
|
font-family: "Linux Libertine", "Times New Roman", Times, serif;
|
2024-06-10 14:42:50 -04:00
|
|
|
line-height: 1.5;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: #141013;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
2024-06-10 14:42:50 -04:00
|
|
|
align-items: center;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
2024-06-10 14:42:50 -04:00
|
|
|
@media screen and (min-width: 768px) {
|
2024-06-10 04:06:12 -04:00
|
|
|
body {
|
|
|
|
flex-direction: row;
|
2024-06-10 14:42:50 -04:00
|
|
|
justify-content: center;
|
|
|
|
height: 100vh;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-10 14:42:50 -04:00
|
|
|
main {
|
2024-06-10 04:06:12 -04:00
|
|
|
width: 100%;
|
2024-06-10 14:42:50 -04:00
|
|
|
gap: 10px;
|
2024-06-10 04:06:12 -04:00
|
|
|
color: white;
|
2024-06-10 14:42:50 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
2024-06-10 18:25:56 -04:00
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
main {
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
}
|
2024-06-10 14:42:50 -04:00
|
|
|
main article {
|
|
|
|
background: rgb(28, 27, 26);
|
2024-06-10 04:06:12 -04:00
|
|
|
padding: 10px;
|
2024-06-10 14:42:50 -04:00
|
|
|
padding-top: 0;
|
|
|
|
font-size: 1rem;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
|
|
|
main article :first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2024-06-10 14:42:50 -04:00
|
|
|
main article h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
main article h1 a {
|
|
|
|
font-size: 0.5em;
|
|
|
|
}
|
|
|
|
main article h2 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
main article *:not(li) + *:not(li) {
|
|
|
|
margin-top: 1em;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
|
|
|
main article ol,
|
|
|
|
main article ul {
|
|
|
|
all: revert;
|
2024-06-10 14:42:50 -04:00
|
|
|
margin: 10px 0;
|
2024-06-10 04:06:12 -04:00
|
|
|
padding-left: 1em;
|
|
|
|
}
|
2024-06-10 14:42:50 -04:00
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
main article {
|
|
|
|
border: solid rgb(40, 39, 38);
|
|
|
|
max-height: 400px;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
main a {
|
2024-06-10 18:25:56 -04:00
|
|
|
color: #9ec611;
|
|
|
|
text-decoration: underline #9ec611 2px;
|
2024-06-10 14:42:50 -04:00
|
|
|
}
|
|
|
|
main a:hover {
|
2024-06-10 18:25:56 -04:00
|
|
|
color: #beec1f;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
aside {
|
2024-06-10 14:42:50 -04:00
|
|
|
margin-top: 20px;
|
|
|
|
width: 256px;
|
2024-06-10 18:33:08 -04:00
|
|
|
text-align: center;
|
2024-06-10 14:42:50 -04:00
|
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
aside {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
2024-06-10 18:33:08 -04:00
|
|
|
aside h1 {
|
|
|
|
color: white;
|
|
|
|
font-weight: semibold;
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2024-06-10 14:42:50 -04:00
|
|
|
aside img {
|
|
|
|
width: 100%;
|
2024-06-10 04:06:12 -04:00
|
|
|
image-rendering: pixelated;
|
2024-06-10 14:42:50 -04:00
|
|
|
max-width: 256px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-button {
|
|
|
|
margin: auto;
|
|
|
|
margin-bottom: 10px;
|
2024-06-10 18:20:21 -04:00
|
|
|
image-rendering: pixelated;
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.entry-button:hover {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.entry-button::after {
|
|
|
|
content: " >>";
|
|
|
|
color: #525252;
|
|
|
|
font-style: normal;
|
|
|
|
text-decoration: underline #141013 2px;
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
|
|
.entry-button {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2024-06-10 14:42:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.entry-button:hover {
|
|
|
|
font-style: italic;
|
2024-06-10 04:06:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*# sourceMappingURL=landing.css.map */
|