merge upstream
This commit is contained in:
parent
5047a8d02e
commit
0cd0d1235b
@ -1,9 +1,7 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
|
|
||||||
<article>
|
<article>
|
||||||
<header>
|
<header><h1>404: Page not found</h1></header>
|
||||||
<h1>404: Page not found</h1>
|
|
||||||
</header>
|
|
||||||
<p>Unfortunately, this page does not exist.</p>
|
<p>Unfortunately, this page does not exist.</p>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/index.css">
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/index.css">
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/classes.css">
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/classes.css">
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}fonts/PT-Sans.css">
|
|
||||||
{{- if .Site.Params.sidebar }}
|
{{- if .Site.Params.sidebar }}
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/sidebar.css" media="screen and (min-width: 70em)">
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/sidebar.css" media="screen and (min-width: 70em)">
|
||||||
{{- end }}
|
{{- end }}
|
||||||
@ -28,6 +27,8 @@
|
|||||||
{{ with .Site.Params.description }}<div class="hidden">{{ safeHTML . }}</div>{{ end }}
|
{{ with .Site.Params.description }}<div class="hidden">{{ safeHTML . }}</div>{{ end }}
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<body>
|
||||||
{{- block "main" . }}{{- end }}
|
{{- block "main" . }}{{- end }}
|
||||||
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -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) {
|
@media (prefers-color-scheme: light) {
|
||||||
html {
|
html {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
@ -27,6 +42,10 @@ body {
|
|||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
b, strong, th {
|
b, strong, th {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
@ -117,6 +136,9 @@ body > header {
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
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 {
|
body > header > a {
|
||||||
@ -141,18 +163,12 @@ nav a {
|
|||||||
margin: .4em .8em;
|
margin: .4em .8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
body > header {
|
body > header, body > article, body > footer {
|
||||||
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 {
|
|
||||||
padding: 1.5em;
|
padding: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 32em) {
|
@media (min-width: 32em) {
|
||||||
body > header, article {
|
body > header, body > article, body > footer {
|
||||||
padding: 1.5em calc(38% - 12em);
|
padding: 1.5em calc(38% - 12em);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
body {
|
body {
|
||||||
font-size: 1.08em;
|
font-size: 1.08em;
|
||||||
margin-left: 16em;
|
margin-left: 16em;
|
||||||
|
overscroll-behavior: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
body > article {
|
body > article, body > footer {
|
||||||
margin: 0 4em;
|
margin: 0 4em;
|
||||||
padding: 2em 0;
|
padding: 2em 0;
|
||||||
max-width: 55em;
|
max-width: 55em;
|
||||||
@ -44,7 +45,7 @@ body > header > a {
|
|||||||
font-family: "PT Serif", Georgia;
|
font-family: "PT Serif", Georgia;
|
||||||
font-size: 2.2em;
|
font-size: 2.2em;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 0 1.5rem;
|
margin: 0 0 .8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
article header h1 {
|
article header h1 {
|
||||||
|
@ -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;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user