lang/style/page.css

103 lines
1.2 KiB
CSS
Raw Normal View History

2020-08-18 04:33:25 -04:00
@import url(fonts/muller/muller.css);
2020-10-30 02:56:57 -04:00
@import url(fonts/charis/charis.css);
@import url(fonts/pragmatapro/pragmatapro.css);
2020-08-18 04:33:25 -04:00
@import url(counters.css);
:root {
--root-col: hsl(0deg, 2%, 19%);
--fg-col: hsl(336deg, 17%, 11%);
--bg-col: hsl(40deg, 91%, 98%);
2020-08-18 12:47:03 -04:00
--link-col: hsl(355deg, 52%, 48%);
2020-10-30 02:56:57 -04:00
--ipa-font: Charis;
2020-08-18 04:33:25 -04:00
}
: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;
}
2020-08-18 12:47:03 -04:00
header {
text-align: center;
}
header h1 {
font-size: 350%;
font-weight: 100;
margin-top: 0;
2020-08-18 04:33:25 -04:00
}
2020-08-18 12:47:03 -04:00
h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.25em;
2020-08-18 04:33:25 -04:00
}
h1 {
2020-08-18 12:47:03 -04:00
font-size: 200%;
font-weight: 200;
2020-08-18 04:33:25 -04:00
}
h2 {
2020-08-18 12:47:03 -04:00
font-size: 180%;
font-weight: 200;
2020-08-18 04:33:25 -04:00
}
h3 {
2020-08-18 12:47:03 -04:00
font-size: 160%;
font-weight: 200;
2020-08-18 04:33:25 -04:00
}
h4 {
2020-08-18 12:47:03 -04:00
font-size: 140%;
font-weight: 300;
2020-08-18 04:33:25 -04:00
}
h5 {
2020-08-18 12:47:03 -04:00
font-size: 120%;
font-weight: 300;
2020-08-18 04:33:25 -04:00
}
h6 {
font-size: 100%;
2020-08-18 12:47:03 -04:00
font-weight: 400;
2020-08-18 04:33:25 -04:00
}
a {
color: var(--link-col);
}
2020-08-18 12:47:03 -04:00
b, strong {
font-weight: 600;
}
ul li {
list-style: '— ';
}
2020-08-18 04:33:25 -04:00
.ipa, .lang {
2020-10-30 02:56:57 -04:00
font-family: var(--ipa-font);
}
.lang {
font-weight: 500;
2020-08-18 04:33:25 -04:00
}