230 lines
4.7 KiB
CSS
230 lines
4.7 KiB
CSS
/*
|
|
|
|
COLORS
|
|
===============================================================================
|
|
|
|
*/
|
|
/*
|
|
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
|
|
===============================================================================
|
|
|
|
*/
|
|
* {
|
|
line-height: 1.7;
|
|
}
|
|
|
|
html {
|
|
font-size: 12pt;
|
|
font-family: "Linux Libertine", "Times New Roman", Times, serif;
|
|
}
|
|
|
|
body {
|
|
display: grid;
|
|
padding: 2em;
|
|
}
|
|
@media screen and (min-width: 768px) {
|
|
body {
|
|
grid-template-columns: 2fr 3fr 2fr;
|
|
gap: 1em;
|
|
height: 100%;
|
|
padding: 2em 0;
|
|
}
|
|
}
|
|
|
|
nav {
|
|
grid-row: 1;
|
|
grid-column: 1;
|
|
justify-self: right;
|
|
align-self: end;
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
}
|
|
@media screen and (min-width: 768px) {
|
|
nav {
|
|
grid-column: 2;
|
|
}
|
|
}
|
|
nav a:hover {
|
|
font-style: italic;
|
|
}
|
|
nav a::after {
|
|
content: " >>";
|
|
font-style: normal;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
main {
|
|
grid-row: 2;
|
|
grid-column: 2;
|
|
justify-self: center;
|
|
}
|
|
}
|
|
main article {
|
|
word-wrap: break-word;
|
|
line-height: 1.5;
|
|
padding: 0 1.5em;
|
|
padding: 0;
|
|
font-size: 1rem;
|
|
}
|
|
main article p,
|
|
main article blockquote,
|
|
main article ul,
|
|
main article ol,
|
|
main article dl,
|
|
main article table,
|
|
main article pre {
|
|
margin: 1em 0;
|
|
}
|
|
main article ul,
|
|
main article ol {
|
|
all: revert;
|
|
padding-left: 30px;
|
|
}
|
|
main article h1 {
|
|
font-size: 2.5em;
|
|
}
|
|
main article h2 {
|
|
font-size: 2em;
|
|
}
|
|
main article h3 {
|
|
font-size: 1.5em;
|
|
}
|
|
main article h4 {
|
|
font-size: 1.2em;
|
|
}
|
|
main article h5 {
|
|
font-size: 1em;
|
|
}
|
|
main article h6 {
|
|
font-size: 1em;
|
|
}
|
|
main article h1,
|
|
main article h2,
|
|
main article h3,
|
|
main article h4,
|
|
main article h5,
|
|
main article h6 {
|
|
margin: 0.5em 0 0.25em 0;
|
|
}
|
|
main article h1 + p,
|
|
main article h2 + p,
|
|
main article h3 + p {
|
|
margin-top: 0.5em;
|
|
}
|
|
main article img {
|
|
max-width: 100%;
|
|
}
|
|
main article code,
|
|
main article pre {
|
|
background-color: #f8f8f8;
|
|
border-radius: 3px;
|
|
border: 1px solid #ddd;
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
margin: 0 2px;
|
|
padding: 0 5px;
|
|
white-space: pre;
|
|
}
|
|
main article pre code {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
white-space: pre;
|
|
}
|
|
main article a {
|
|
color: #9ec611;
|
|
text-decoration: underline #9ec611 2px;
|
|
}
|
|
main article a:hover {
|
|
color: #beec1f;
|
|
}
|
|
main article h1 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
aside {
|
|
grid-row: 1;
|
|
grid-column: 1;
|
|
max-width: 192px;
|
|
}
|
|
@media screen and (min-width: 768px) {
|
|
aside {
|
|
grid-column: 2;
|
|
}
|
|
}
|
|
aside img {
|
|
image-rendering: pixelated;
|
|
}
|
|
|
|
/*# sourceMappingURL=landing.css.map */
|