minor css tweaks
This commit is contained in:
parent
ac75cd10b9
commit
9bd8537e99
2 changed files with 16 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/style.css">
|
<link rel="stylesheet" type="text/css" href="/assets/style.css">
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/fonts/fonts.css">
|
<link rel="stylesheet" type="text/css" href="/assets/fonts/fonts.css">
|
||||||
|
<link rel="shortcut icon" href="/assets/img/favicon.png">
|
||||||
<script src='/assets/script.js'></script>
|
<script src='/assets/script.js'></script>
|
||||||
{% comment %}<script async src="https://ackee.lynnesbian.space/script.js" data-ackee-server="https://ackee.lynnesbian.space" data-ackee-domain-id="f0217e7d-ec2a-4a9b-baf3-d2d2215810ba"></script>{% endcomment %}
|
{% comment %}<script async src="https://ackee.lynnesbian.space/script.js" data-ackee-server="https://ackee.lynnesbian.space" data-ackee-domain-id="f0217e7d-ec2a-4a9b-baf3-d2d2215810ba"></script>{% endcomment %}
|
||||||
<title>{{ page.title | default: "lynnesbian dot space" }}</title>
|
<title>{{ page.title | default: "lynnesbian dot space" }}</title>
|
||||||
|
@ -45,6 +46,9 @@
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<article>
|
<article>
|
||||||
|
{%- unless page.custom_heading -%}
|
||||||
|
{% include h.html level=1 content=page.title %}
|
||||||
|
{%- endunless -%}
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</article>
|
</article>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -25,8 +25,11 @@ h1, h2, h3 {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2em;
|
font-size: 3em;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: underline mediumpurple dotted 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
}
|
}
|
||||||
|
@ -46,7 +49,6 @@ main article {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
main article h1,
|
|
||||||
main article h2,
|
main article h2,
|
||||||
main article h3 {
|
main article h3 {
|
||||||
border-left: 5px solid mediumpurple;
|
border-left: 5px solid mediumpurple;
|
||||||
|
@ -55,8 +57,8 @@ main article h3 {
|
||||||
}
|
}
|
||||||
|
|
||||||
main article a {
|
main article a {
|
||||||
color: #00a;
|
color: #60a;
|
||||||
text-decoration-style: dashed;
|
text-decoration-style: dotted;
|
||||||
text-decoration-color: transparent;
|
text-decoration-color: transparent;
|
||||||
transition: 0.2s all;
|
transition: 0.2s all;
|
||||||
}
|
}
|
||||||
|
@ -133,3 +135,9 @@ nav a:hover::before {
|
||||||
height: auto;
|
height: auto;
|
||||||
margin: 30px auto 50px auto;
|
margin: 30px auto 50px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#bune {
|
||||||
|
height: max(200px, 10vh);
|
||||||
|
display: block;
|
||||||
|
margin: 50px auto 0;
|
||||||
|
}
|
Loading…
Reference in a new issue