merge upstream

This commit is contained in:
Niklas Buschmann 2020-02-07 21:20:47 +01:00
parent 5047a8d02e
commit 0cd0d1235b
5 changed files with 30 additions and 27 deletions

View File

@ -1,9 +1,7 @@
{{ define "main" }}
<article>
<header>
<h1>404: Page not found</h1>
</header>
<header><h1>404: Page not found</h1></header>
<p>Unfortunately, this page does not exist.</p>
</article>

View File

@ -12,7 +12,6 @@
{{- end }}
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/index.css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/classes.css">
<link rel="stylesheet" href="{{ .Site.BaseURL }}fonts/PT-Sans.css">
{{- if .Site.Params.sidebar }}
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/sidebar.css" media="screen and (min-width: 70em)">
{{- end }}
@ -28,6 +27,8 @@
{{ with .Site.Params.description }}<div class="hidden">{{ safeHTML . }}</div>{{ end }}
</header>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>

View File

@ -1,3 +1,18 @@
@media (min-width: 50em) {
@font-face {
font-family: 'PT Sans';
src: local("PT Sans"), local("PTSans-Regular"), url("../fonts/PTSans-Regular.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PT Sans';
src: local("PT Sans Bold"), local("PTSans-Bold"), url("../fonts/PTSans-Bold.woff") format("woff");
font-weight: bold;
font-style: normal;
}
}
@media (prefers-color-scheme: light) {
html {
background: #ffffff;
@ -27,6 +42,10 @@ body {
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 600;
}
b, strong, th {
font-weight: 600;
}
@ -117,6 +136,9 @@ body > header {
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
background: rgba(255, 255, 255, 0.02);
box-shadow: 0 0 .6em rgba(28, 29, 34, 0.05);
border-bottom: 1px solid rgba(142, 142, 145, 0.16);
}
body > header > a {
@ -141,18 +163,12 @@ nav a {
margin: .4em .8em;
}
body > header {
background: rgba(255, 255, 255, 0.02);
box-shadow: 0 0 .6em rgba(28, 29, 34, 0.05);
border-bottom: 1px solid rgba(142, 142, 145, 0.16);
}
body > header, article {
body > header, body > article, body > footer {
padding: 1.5em;
}
@media (min-width: 32em) {
body > header, article {
body > header, body > article, body > footer {
padding: 1.5em calc(38% - 12em);
}
}

View File

@ -1,9 +1,10 @@
body {
font-size: 1.08em;
margin-left: 16em;
overscroll-behavior: none;
}
body > article {
body > article, body > footer {
margin: 0 4em;
padding: 2em 0;
max-width: 55em;
@ -44,7 +45,7 @@ body > header > a {
font-family: "PT Serif", Georgia;
font-size: 2.2em;
display: block;
margin: 0 0 1.5rem;
margin: 0 0 .8em;
}
article header h1 {

View File

@ -1,13 +0,0 @@
@font-face {
font-family: 'PT Sans';
src: local('PT Sans'), local('PTSans-Regular'), url('PTSans-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'PT Sans';
src: local('PT Sans Bold'), local('PTSans-Bold'), url('PTSans-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}