www-lauka-net-11ty/static/css/main.css

148 lines
2.2 KiB
CSS
Raw Normal View History

2023-06-13 10:38:01 +02:00
@font-face {
font-family: "Iosevka Aile Iaso";
font-weight: 100 900;
font-style: normal;
2023-06-13 11:06:54 +02:00
src: local("Iosevka Aile Iaso"), url("/fonts/iosevka-aile-regular.woff2") format("woff2");
2023-06-13 10:38:01 +02:00
}
@font-face {
font-family: "Iosevka Aile Iaso";
font-weight: 100 900;
font-style: italic;
2023-06-13 11:06:54 +02:00
src: local("Iosevka Aile Iaso"), url("/fonts/iosevka-aile-italic.woff2") format("woff2");
2023-06-13 10:38:01 +02:00
}
@font-face {
font-family: "Iosevka Curly Iaso";
font-weight: 100 900;
2023-06-13 11:06:54 +02:00
src: local("Iosevka Curly Iaso"), url("/fonts/iosevka-curly-regular.woff2") format("woff2");
2023-06-13 10:38:01 +02:00
}
@font-face {
font-family: "Iosevka Etoile Iaso";
font-weight: 100 900;
font-style: normal;
2023-06-13 11:06:54 +02:00
src: local("Iosevka Etoile Iaso"), url("/fonts/iosevka-etoile-regular.woff2") format("woff2");
2023-06-13 10:38:01 +02:00
}
@font-face {
font-family: "Iosevka Etoile Iaso";
font-weight: 100 900;
font-style: italic;
2023-06-13 11:06:54 +02:00
src: local("Iosevka Etoile Iaso"), url("/fonts/iosevka-etoile-italic.woff2") format("woff2");
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Iosevka Etoile Iaso", serif;
2023-06-13 10:38:01 +02:00
}
2023-05-25 10:54:47 +02:00
a,
body,
h1,
h2,
h3,
html,
li,
p,
span,
strong,
u,
ul {
2022-06-22 11:02:01 +02:00
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline
}
body {
2023-06-13 11:06:54 +02:00
font-family: "Iosevka Aile Iaso", sans-serif;
font-size: 1.4em;
2022-06-22 11:02:01 +02:00
line-height: 1.4;
margin: 3% 5%;
max-width: 50em;
2023-06-13 11:06:54 +02:00
background: #232323;
2022-06-22 11:02:01 +02:00
color: #c1c1c1;
}
ul {
list-style-type: none;
margin-left: 1rem;
}
ul>li:before {
content: "-";
position: absolute;
margin-left: -1.1rem;
}
a {
text-decoration: none;
2022-11-17 07:46:22 +01:00
color: #00cccc
2022-06-22 11:02:01 +02:00
}
2023-05-25 10:54:47 +02:00
a:hover {
text-decoration: underline;
}
2022-06-22 11:02:01 +02:00
p {
margin-bottom: .75rem
}
h1,
2022-11-16 20:49:27 +01:00
h2,
h3 {
2022-06-22 11:02:01 +02:00
line-height: 100%;
margin-top: 2rem;
margin-bottom: 1rem;
2022-11-16 20:55:52 +01:00
color: #d66388;
2022-06-22 11:02:01 +02:00
}
h1:before {
content: "# ";
2023-05-25 10:54:47 +02:00
content: "# " / "";
2022-06-22 11:02:01 +02:00
}
h1:after {
content: "-----";
2023-05-25 10:54:47 +02:00
content: "-----" / "";
2022-06-22 11:02:01 +02:00
display: block;
}
h2:before {
content: "## ";
2023-05-25 10:54:47 +02:00
content: "## " / "";
2022-06-22 11:02:01 +02:00
}
2022-11-16 20:49:27 +01:00
h3:before {
content: "### ";
2023-05-25 10:54:47 +02:00
content: "### " / "";
2022-11-16 20:49:27 +01:00
}
2022-06-22 11:02:01 +02:00
strong {
font-weight: 700;
}
strong:before {
2023-06-13 11:06:54 +02:00
content: "*";
content: "*" / "";
2022-06-22 11:02:01 +02:00
}
strong:after {
2023-06-13 11:06:54 +02:00
content: "*";
content: "*" / "";
2022-06-22 11:02:01 +02:00
}
2022-11-16 20:55:52 +01:00
strong {
color: #d66388
}
2023-05-25 10:42:40 +02:00
2023-06-13 11:06:54 +02:00
code, pre {
2023-05-25 10:42:40 +02:00
color: cornflowerblue;
2023-06-13 11:06:54 +02:00
font-family: "Iosevka Curly Iaso", monospace;
2023-05-25 10:42:40 +02:00
}