site/src/css/landing.css

195 lines
3.9 KiB
CSS
Raw Normal View History

2024-06-19 02:24:06 -04:00
/* IMPORTS ================================================================= */
.markup {
word-wrap: break-word;
2024-06-18 14:47:06 -04:00
line-height: 1.7;
2024-06-20 01:45:23 -04:00
padding: 0;
2024-06-19 02:24:06 -04:00
}
.markup p,
.markup blockquote,
.markup ul,
.markup ol,
.markup dl,
.markup table,
.markup pre {
margin: 1em 0;
}
.markup ul,
.markup ol {
2024-06-20 01:45:23 -04:00
list-style-type: revert;
2024-06-19 02:24:06 -04:00
padding-left: 30px;
}
.markup h1 {
font-size: 2.5em;
}
.markup h2 {
font-size: 2em;
}
.markup h3 {
font-size: 1.5em;
}
.markup h4 {
font-size: 1.2em;
}
.markup h5 {
font-size: 1em;
}
.markup h6 {
font-size: 1em;
}
.markup h1,
.markup h2,
.markup h3,
.markup h4,
.markup h5,
.markup h6 {
margin: 0.5em 0 0.25em 0;
}
.markup h1 + p,
.markup h2 + p,
.markup h3 + p {
margin-top: 0.5em;
}
.markup img {
max-width: 100%;
}
.markup code,
.markup 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;
}
.markup pre code {
border: none;
margin: 0;
padding: 0;
white-space: pre;
2024-06-18 14:47:06 -04:00
}
2024-06-19 20:39:27 -04:00
/* ============================================================================
GLOBAL VARIABLES
2024-06-19 02:24:06 -04:00
============================================================================ */
2024-06-19 20:39:27 -04:00
/* Media breakpoints ------------------------------------------------------- */
/* Spacing ----------------------------------------------------------------- */
/* Typography -------------------------------------------------------------- */
/* -- Font ----------------------------------------------------------------- */
/* ============================================================================
FONT SOURCES
============================================================================ */
/* Linux Libertine ------------------------------------------------------------
2024-06-19 20:21:44 -04:00
2024-06-19 20:39:27 -04:00
Licensed under GPL and OFL 1.1
2024-06-19 20:21:44 -04:00
2024-06-19 20:39:27 -04:00
Full license texts:
2024-06-19 20:21:44 -04:00
- https://gils.nexus/font/GPL.txt
- https://gils.nexus/font/OFL-1.1.txt
2024-06-19 20:39:27 -04:00
---------------------------------------------------------------------------- */
2024-06-19 20:21:44 -04:00
@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");
}
2024-06-11 02:50:50 -04:00
html {
2024-06-18 14:47:06 -04:00
font-size: 12pt;
2024-06-18 15:57:09 -04:00
font-family: "Linux Libertine", "Times New Roman", Times, serif;
2024-06-10 04:06:12 -04:00
}
body {
2024-06-18 14:47:06 -04:00
display: grid;
2024-06-18 15:57:09 -04:00
padding: 2em;
}
2024-06-19 20:21:44 -04:00
@media (min-width: 769px) {
body {
2024-06-18 15:57:09 -04:00
grid-template-columns: 2fr 3fr 2fr;
2024-06-18 14:47:06 -04:00
gap: 1em;
height: 100%;
2024-06-18 15:57:09 -04:00
padding: 2em 0;
}
}
nav {
2024-06-18 14:47:06 -04:00
grid-row: 1;
grid-column: 1;
justify-self: right;
align-self: end;
font-size: 1.5em;
font-weight: bold;
2024-06-18 15:57:09 -04:00
}
2024-06-19 20:21:44 -04:00
@media (min-width: 769px) {
2024-06-18 15:57:09 -04:00
nav {
grid-column: 2;
}
}
2024-06-18 14:47:06 -04:00
nav a:hover {
font-style: italic;
}
2024-06-18 14:47:06 -04:00
nav a::after {
content: " >>";
font-style: normal;
}
2024-06-18 14:47:06 -04:00
2024-06-19 20:21:44 -04:00
@media (min-width: 769px) {
2024-06-10 18:25:56 -04:00
main {
2024-06-18 14:47:06 -04:00
grid-row: 2;
grid-column: 2;
justify-self: center;
2024-06-10 18:25:56 -04:00
}
}
2024-06-10 14:42:50 -04:00
main article {
2024-06-18 14:47:06 -04:00
padding: 0;
2024-06-18 15:57:09 -04:00
font-size: 1rem;
2024-06-10 18:41:15 -04:00
}
2024-06-18 14:47:06 -04:00
main article h1 {
margin-top: 0;
}
aside {
grid-row: 1;
grid-column: 1;
max-width: 192px;
}
2024-06-19 20:21:44 -04:00
@media (min-width: 769px) {
2024-06-18 14:47:06 -04:00
aside {
grid-column: 2;
}
2024-06-10 14:42:50 -04:00
}
2024-06-18 15:57:09 -04:00
aside img {
image-rendering: pixelated;
}
2024-06-10 14:42:50 -04:00
2024-06-10 04:06:12 -04:00
/*# sourceMappingURL=landing.css.map */