first
This commit is contained in:
commit
77a53e06a5
21 changed files with 1070 additions and 0 deletions
66
style/counters.css
Normal file
66
style/counters.css
Normal file
|
@ -0,0 +1,66 @@
|
|||
:root {
|
||||
--section-prefix: '';
|
||||
}
|
||||
|
||||
h1::before, h2::before, h3::before, h4::before, h5::before, h6::before {
|
||||
padding-right: 1ex;
|
||||
}
|
||||
|
||||
main h1 {
|
||||
counter-increment: h1;
|
||||
counter-reset: h2 h3 h4 h5 h6;
|
||||
}
|
||||
|
||||
main h1::before {
|
||||
content: var(--section-prefix) counter(h1);
|
||||
}
|
||||
|
||||
main h2 {
|
||||
counter-increment: h2;
|
||||
counter-reset: h3 h4 h5 h6;
|
||||
}
|
||||
|
||||
main h2::before {
|
||||
content: var(--section-prefix) counter(h1) '.' counter(h2);
|
||||
}
|
||||
|
||||
main h3 {
|
||||
counter-increment: h3;
|
||||
counter-reset: h4 h5 h6;
|
||||
}
|
||||
|
||||
main h3::before {
|
||||
content: var(--section-prefix) counter(h1) '.' counter(h2) '.' counter(h3);
|
||||
}
|
||||
|
||||
main h4 {
|
||||
counter-increment: h4;
|
||||
counter-reset: h5 h6;
|
||||
}
|
||||
|
||||
main h4::before {
|
||||
content: var(--section-prefix)
|
||||
counter(h1) '.' counter(h2) '.' counter(h3) '.' counter(h4);
|
||||
}
|
||||
|
||||
main h5 {
|
||||
counter-increment: h5;
|
||||
counter-reset: h6;
|
||||
}
|
||||
|
||||
main h5::before {
|
||||
content: var(--section-prefix)
|
||||
counter(h1) '.' counter(h2) '.' counter(h3) '.' counter(h4) '.'
|
||||
counter(h5);
|
||||
}
|
||||
|
||||
main h6 {
|
||||
counter-increment: h6;
|
||||
}
|
||||
|
||||
main h6::before {
|
||||
content: var(--section-prefix)
|
||||
counter(h1) '.' counter(h2) '.' counter(h3) '.' counter(h4) '.'
|
||||
counter(h5) '.' counter(h6);
|
||||
}
|
||||
|
369
style/page.css
Normal file
369
style/page.css
Normal file
|
@ -0,0 +1,369 @@
|
|||
@import url(fonts/muller/muller.css);
|
||||
@import url(fonts/junius/junius.css);
|
||||
@import url(fonts/pragmatapro/pragmatapro.css);
|
||||
|
||||
:root {
|
||||
--root-col: hsl(30deg, 5%, 26%);
|
||||
--fg-col: hsl(336deg, 17%, 11%);
|
||||
--bg-col: hsl(40deg, 91%, 98%);
|
||||
--link-col: hsl(355deg, 52%, 48%);
|
||||
|
||||
--ipa-font: JuniusX;
|
||||
}
|
||||
|
||||
:root {
|
||||
background: var(--root-col);
|
||||
|
||||
font-family: Muller;
|
||||
font-size: 16pt;
|
||||
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
body {
|
||||
background: url(paper.png), var(--bg-col);
|
||||
background-blend-mode: multiply;
|
||||
color: var(--fg-col);
|
||||
box-shadow: 0 0 5em var(--fg-col);
|
||||
|
||||
max-width: 50em;
|
||||
min-height: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 1em 2em 3em;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 350%;
|
||||
font-weight: 100;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 1em 0 0.25em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 200%;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 180%;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 160%;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 140%;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 120%;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 100%;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 1px solid var(--root-col);
|
||||
width: 80%;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.meta {
|
||||
display: flex;
|
||||
column-gap: 1em;
|
||||
align-items: baseline;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.date {
|
||||
font-size: 80%;
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.tags {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.tags ul {
|
||||
display: inline;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.tags li {
|
||||
list-style: none;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.tags li + li {
|
||||
margin-left: 0.75ex;
|
||||
}
|
||||
|
||||
|
||||
a {
|
||||
color: var(--link-col);
|
||||
}
|
||||
|
||||
b, strong {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
ul li {
|
||||
list-style: '— ';
|
||||
}
|
||||
|
||||
table {
|
||||
margin: auto;
|
||||
border-spacing: 0;
|
||||
border-top: 2px solid var(--root-col);
|
||||
border-bottom: 2px solid var(--root-col);
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
thead th {
|
||||
border-bottom: 1px solid var(--root-col);
|
||||
}
|
||||
|
||||
td, th {
|
||||
padding: 0 0.5em;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: PragmataPro;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
pre {
|
||||
width: min-content;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
|
||||
.ipa, .lang, .ebnf-t {
|
||||
font-family: var(--ipa-font);
|
||||
|
||||
font-feature-settings:
|
||||
"ccmp", "calt", "liga", "loca", "mark", "mkmk", "ss01";
|
||||
/* ss01 to use modern Þþð design, others to make juniusx go brrr
|
||||
* maybe i can just turn loca off but idk what other regional forms
|
||||
* it does that i actually want */
|
||||
|
||||
text-underline-offset: 0.125em;
|
||||
}
|
||||
|
||||
.ipa {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.lang, .ebnf-t {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.abbr {
|
||||
font-size: 70%;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.scr {
|
||||
height: 1.5em;
|
||||
vertical-align: -40%;
|
||||
padding-right: 0.5ex;
|
||||
}
|
||||
|
||||
.gloss .scr {
|
||||
height: 2em;
|
||||
}
|
||||
|
||||
:is(.splash, .example) .scr {
|
||||
height: unset;
|
||||
display: block;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.example {
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.example .text {
|
||||
display: block;
|
||||
text-align: center;
|
||||
width: 80%;
|
||||
margin: 0.75em auto 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
||||
.letter-list {
|
||||
margin: 1.25em auto 0;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
width: 80%;
|
||||
row-gap: 0.5em;
|
||||
column-gap: 1.5em;
|
||||
}
|
||||
|
||||
.letter-list + .letter-list {
|
||||
margin-top: 2.5em;
|
||||
}
|
||||
|
||||
.letter-list .lang {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.letter-list .scr {
|
||||
height: 3em;
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.letter-list .text {
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
main nav {
|
||||
text-align: center;
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
|
||||
#toc > h2 {
|
||||
font-size: 120%;
|
||||
font-weight: 300;
|
||||
}
|
||||
#toc > ul {
|
||||
columns: 2;
|
||||
margin-left: 2em;
|
||||
margin-right: 2em;
|
||||
}
|
||||
|
||||
figure:not(.left) {
|
||||
text-align: center;
|
||||
}
|
||||
figure:not(.left) table {
|
||||
display: inline-table;
|
||||
}
|
||||
figure table {
|
||||
margin: 1em 0.5em;
|
||||
}
|
||||
.gloss {
|
||||
border: none;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
figure ul {
|
||||
text-align: left;
|
||||
margin-left: 5em;
|
||||
margin-right: 5em;
|
||||
columns: 2;
|
||||
}
|
||||
figure li {
|
||||
break-inside: avoid;
|
||||
}
|
||||
|
||||
dt { font-weight: 500; float: left; clear: left; }
|
||||
dd { margin-left: 4em; }
|
||||
|
||||
dt {
|
||||
break-after: avoid;
|
||||
}
|
||||
|
||||
dd {
|
||||
break-before: avoid;
|
||||
}
|
||||
|
||||
u u {
|
||||
text-decoration: double underline;
|
||||
}
|
||||
|
||||
:is(.twocol, .threecol):not(:is(ul, ol) *) {
|
||||
margin-top: 1em;
|
||||
}
|
||||
.twocol {
|
||||
columns: 2;
|
||||
}
|
||||
.threecol {
|
||||
columns: 3;
|
||||
}
|
||||
.twocol :first-child, .threecol :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin: 1.5em auto 1em;
|
||||
padding-top: 0.5em;
|
||||
|
||||
font-size: 80%;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ebnf {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.ebnf td {
|
||||
padding: 0 0.15em;
|
||||
}
|
||||
|
||||
.ebnf-nt {
|
||||
font-weight: 500;
|
||||
color: hsl(155deg, 80%, 30%);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.ebnf-punc {
|
||||
color: hsl(25deg, 40%, 30%);
|
||||
}
|
||||
|
||||
.ebnf-sub, .ebnf-brack {
|
||||
color: hsl(210deg, 80%, 35%);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.ebnf-brack {
|
||||
padding: 0 0.05em;
|
||||
}
|
||||
|
||||
.ebnf-s {
|
||||
font-style: italic;
|
||||
color: hsl(330deg, 80%, 30%);
|
||||
}
|
||||
|
||||
blockquote {
|
||||
max-width: 70%;
|
||||
border-left: 1px solid black;
|
||||
padding-left: 1em;
|
||||
margin: auto;
|
||||
}
|
BIN
style/paper.png
Normal file
BIN
style/paper.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 83 KiB |
Loading…
Add table
Add a link
Reference in a new issue