168 lines
3.9 KiB
CSS
168 lines
3.9 KiB
CSS
|
/*
|
||
|
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;
|
||
|
line-height: 1.25;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: #141013;
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
gap: 10px;
|
||
|
}
|
||
|
@media screen and (min-width: 600px) {
|
||
|
body {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
main article {
|
||
|
width: 100%;
|
||
|
max-width: 500px;
|
||
|
height: auto;
|
||
|
max-height: 500px;
|
||
|
overflow: scroll;
|
||
|
padding: 10px;
|
||
|
border: solid white;
|
||
|
color: white;
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
main article blockquote {
|
||
|
background: #30272e;
|
||
|
border-bottom: solid white;
|
||
|
padding: 10px;
|
||
|
font-size: 1.25em;
|
||
|
}
|
||
|
main article blockquote h1 {
|
||
|
margin-top: 10px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
main article blockquote h1::after {
|
||
|
content: "";
|
||
|
margin-left: 10px;
|
||
|
width: 10px;
|
||
|
height: 24px;
|
||
|
background: white;
|
||
|
display: inline-block;
|
||
|
vertical-align: bottom;
|
||
|
animation: cursor-blink 1.5s steps(1) infinite;
|
||
|
}
|
||
|
@keyframes cursor-blink {
|
||
|
0% {
|
||
|
background: transparent;
|
||
|
}
|
||
|
50% {
|
||
|
background: white;
|
||
|
}
|
||
|
}
|
||
|
main article :first-child {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
main article p {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
main article ol,
|
||
|
main article ul {
|
||
|
all: revert;
|
||
|
margin-bottom: 0;
|
||
|
padding-left: 1em;
|
||
|
}
|
||
|
main img {
|
||
|
display: block;
|
||
|
margin: auto;
|
||
|
margin-top: 10px;
|
||
|
image-rendering: pixelated;
|
||
|
}
|
||
|
|
||
|
aside {
|
||
|
max-width: 216px;
|
||
|
image-rendering: pixelated;
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=landing.css.map */
|