update tiny stuff

This commit is contained in:
Adora Laura Kalb 2023-06-13 11:06:54 +02:00
parent 8f02038446
commit 8fe7814293
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056
3 changed files with 30 additions and 23 deletions

View file

@ -15,7 +15,10 @@ title: lauka (dot) net
<link rel='stylesheet' type='text/css' media='screen' href="{{ '/css/main.css' | url }}"/> <link rel='stylesheet' type='text/css' media='screen' href="{{ '/css/main.css' | url }}"/>
</head> </head>
<body class="h-card"> <body class="h-card">
<h1><a href="/">lauka.net - Book: {{ name }}</a></h1> <h1>
lauka.net - Book: {{ name }}
</h1>
<a href="/">⇠ back home</a>
<h2>Rating: <h2>Rating:
{% for i in range(0, rating) -%} {% for i in range(0, rating) -%}

View file

@ -5,7 +5,9 @@ permalink: "/books/"
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
--- ---
<h1><a href="/">{{ title }}</a></h1> <h1>{{ title }}</h1>
<a href="/">⇠ back home</a>
<br/><br/>
<p class="p-note"> <p class="p-note">
These are all the books I've rated so far (oldest to newest): These are all the books I've rated so far (oldest to newest):
</p> </p>

View file

@ -2,39 +2,43 @@
font-family: "Iosevka Aile Iaso"; font-family: "Iosevka Aile Iaso";
font-weight: 100 900; font-weight: 100 900;
font-style: normal; font-style: normal;
src: local("Iosevka Aile Iaso") src: local("Iosevka Aile Iaso"), url("/fonts/iosevka-aile-regular.woff2") format("woff2");
, url("/fonts/iosevka-aile-regular.woff2") format("woff2");
} }
@font-face { @font-face {
font-family: "Iosevka Aile Iaso"; font-family: "Iosevka Aile Iaso";
font-weight: 100 900; font-weight: 100 900;
font-style: italic; font-style: italic;
src: local("Iosevka Aile Iaso") src: local("Iosevka Aile Iaso"), url("/fonts/iosevka-aile-italic.woff2") format("woff2");
, url("/fonts/iosevka-aile-italic.woff2") format("woff2");
} }
@font-face { @font-face {
font-family: "Iosevka Curly Iaso"; font-family: "Iosevka Curly Iaso";
font-weight: 100 900; font-weight: 100 900;
src: local("Iosevka Curly Iaso") src: local("Iosevka Curly Iaso"), url("/fonts/iosevka-curly-regular.woff2") format("woff2");
, url("/fonts/iosevka-curly-regular.woff2") format("woff2");
} }
@font-face { @font-face {
font-family: "Iosevka Etoile Iaso"; font-family: "Iosevka Etoile Iaso";
font-weight: 100 900; font-weight: 100 900;
font-style: normal; font-style: normal;
src: local("Iosevka Etoile Iaso") src: local("Iosevka Etoile Iaso"), url("/fonts/iosevka-etoile-regular.woff2") format("woff2");
, url("/fonts/iosevka-etoile-regular.woff2") format("woff2");
} }
@font-face { @font-face {
font-family: "Iosevka Etoile Iaso"; font-family: "Iosevka Etoile Iaso";
font-weight: 100 900; font-weight: 100 900;
font-style: italic; font-style: italic;
src: local("Iosevka Etoile Iaso") src: local("Iosevka Etoile Iaso"), url("/fonts/iosevka-etoile-italic.woff2") format("woff2");
, url("/fonts/iosevka-etoile-italic.woff2") format("woff2"); }
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Iosevka Etoile Iaso", serif;
} }
a, a,
@ -52,17 +56,16 @@ ul {
margin: 0; margin: 0;
padding: 0; padding: 0;
border: 0; border: 0;
font: inherit;
vertical-align: baseline vertical-align: baseline
} }
body { body {
font-family: Consolas, monaco, monospace; font-family: "Iosevka Aile Iaso", sans-serif;
font-size: 130%; font-size: 1.4em;
line-height: 1.4; line-height: 1.4;
margin: 3% 5%; margin: 3% 5%;
max-width: 50em; max-width: 50em;
background: #303030; background: #232323;
color: #c1c1c1; color: #c1c1c1;
} }
@ -125,21 +128,20 @@ strong {
} }
strong:before { strong:before {
content: "**"; content: "*";
content: "**" / ""; content: "*" / "";
} }
strong:after { strong:after {
content: "**"; content: "*";
content: "**" / ""; content: "*" / "";
} }
strong { strong {
color: #d66388 color: #d66388
} }
p > code, code { code, pre {
font: unset;
font-family: Consolas, monaco, monospace;
color: cornflowerblue; color: cornflowerblue;
font-family: "Iosevka Curly Iaso", monospace;
} }