site/src/css/global.css

198 lines
4 KiB
CSS
Raw Normal View History

2024-06-19 20:21:44 -04:00
/* IMPORTS ================================================================= */
/* ============================================================================
FONT SOURCES
============================================================================ */
/* Linux Libertine ------------------------------------------------------------
Licensed under GPL and OFL 1.1
Full license texts:
- 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");
}
/* ============================================================================
COMPONENTS
----------
Reusable components for use across my site
============================================================================ */
2024-06-19 02:24:06 -04:00
.markup {
2024-06-12 19:35:59 -04:00
word-wrap: break-word;
2024-06-19 02:24: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;
}
2024-06-19 02:24:06 -04:00
.markup ul,
.markup ol {
2024-06-20 01:45:23 -04:00
list-style-type: revert;
2024-06-12 19:35:59 -04:00
padding-left: 30px;
}
2024-06-19 02:24:06 -04:00
.markup h1 {
2024-06-12 19:35:59 -04:00
font-size: 2.5em;
}
2024-06-19 02:24:06 -04:00
.markup h2 {
2024-06-12 19:35:59 -04:00
font-size: 2em;
}
2024-06-19 02:24:06 -04:00
.markup h3 {
2024-06-12 19:35:59 -04:00
font-size: 1.5em;
}
2024-06-19 02:24:06 -04:00
.markup h4 {
2024-06-12 19:35:59 -04:00
font-size: 1.2em;
}
2024-06-19 02:24:06 -04:00
.markup h5 {
2024-06-12 19:35:59 -04:00
font-size: 1em;
}
2024-06-19 02:24:06 -04:00
.markup h6 {
2024-06-12 19:35:59 -04:00
font-size: 1em;
}
2024-06-19 02:24:06 -04:00
.markup h1,
.markup h2,
.markup h3,
.markup h4,
.markup h5,
.markup h6 {
2024-06-12 19:35:59 -04:00
margin: 0.5em 0 0.25em 0;
}
2024-06-19 02:24:06 -04:00
.markup h1 + p,
.markup h2 + p,
.markup h3 + p {
2024-06-12 19:35:59 -04:00
margin-top: 0.5em;
}
2024-06-19 02:24:06 -04:00
.markup img {
2024-06-12 19:35:59 -04:00
max-width: 100%;
}
2024-06-19 02:24:06 -04:00
.markup code,
.markup pre {
2024-06-12 19:35:59 -04:00
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;
2023-10-24 01:40:23 -04:00
}
2024-06-19 02:24:06 -04:00
.markup pre code {
2024-06-12 19:35:59 -04:00
border: none;
margin: 0;
padding: 0;
white-space: pre;
2023-10-25 01:34:15 -04:00
}
2023-10-24 01:40:23 -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 ----------------------------------------------------------------- */
2024-06-20 01:45:23 -04:00
:root {
2024-06-19 02:24:06 -04:00
font-size: 12pt;
font-family: "Linux Libertine", "Times New Roman", Times, serif;
2024-06-20 01:45:23 -04:00
color-scheme: light dark;
2023-10-24 01:40:23 -04:00
}
body {
background: url("/img/background2.png");
2024-06-20 21:34:06 -04:00
}
.site > .banner,
.site > .navbar,
.site > .footer {
2024-06-20 21:34:06 -04:00
text-align: center;
}
.site {
display: flex;
flex-direction: column;
}
2024-06-20 21:34:06 -04:00
.site > .navbar {
border: solid black 1px;
2024-06-20 21:34:06 -04:00
}
.site > .navbar li {
display: inline-flex;
2024-05-25 17:36:34 -04:00
}
@media (min-width: 641px) {
.site > main {
display: flex;
flex-direction: row;
gap: 1em;
2024-06-19 02:24:06 -04:00
}
2024-05-25 17:36:34 -04:00
}
.box {
border: solid black 1px;
padding: 0 1em;
2024-05-25 20:14:37 -04:00
}
2024-06-19 20:21:44 -04:00
@media (min-width: 769px) {
.width-1\/6 {
width: 16.66666667%;
2024-06-19 02:24:06 -04:00
}
}
@media (min-width: 769px) {
.width-2\/3 {
width: 66.66666667%;
2024-05-25 22:01:34 -04:00
}
}
.flex-auto {
flex: 1 1 auto;
}
.flex-initial {
flex: 0 1 auto;
}
.order-first {
order: -999;
}
.order-last {
order: 999;
}
2023-10-24 01:40:23 -04:00
/*# sourceMappingURL=global.css.map */