add some style stuff
This commit is contained in:
parent
2872dca785
commit
22b4411641
109 changed files with 699 additions and 1 deletions
84
style/page.css
Normal file
84
style/page.css
Normal file
|
@ -0,0 +1,84 @@
|
|||
@import url(fonts/muller/muller.css);
|
||||
@import url(fonts/andika/andika.css);
|
||||
|
||||
@import url(counters.css);
|
||||
|
||||
:root {
|
||||
--root-col: hsl(0deg, 2%, 19%);
|
||||
--fg-col: hsl(336deg, 17%, 11%);
|
||||
--bg-col: hsl(40deg, 91%, 98%);
|
||||
--link-col: hsl(188deg, 39%, 26%);
|
||||
--head-col: hsl(355deg, 52%, 48%);
|
||||
}
|
||||
|
||||
:root {
|
||||
background: var(--root-col);
|
||||
|
||||
font-family: Muller;
|
||||
font-size: 18pt;
|
||||
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
body {
|
||||
background: url(paper.png), var(--bg-col);
|
||||
background-blend-mode: multiply;
|
||||
color: var(--fg-col);
|
||||
|
||||
max-width: 42em;
|
||||
min-height: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 1em 2em 3em;
|
||||
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
color: var(--head-col);
|
||||
margin: 1.5em 0 0.5em;
|
||||
}
|
||||
|
||||
h1::before, h2::before, h3::before, h4::before, h5::before, h6::before {
|
||||
padding-right: 2ex;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 130%;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 120%;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 100%;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 100%;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 100%;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 100%;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-col);
|
||||
}
|
||||
|
||||
|
||||
.ipa, .lang {
|
||||
font-family: Andika;
|
||||
font-feature-settings: "ss01" 1, "litr" 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue