merge upstream
This commit is contained in:
parent
67748a2513
commit
89e8c3eba4
@ -10,10 +10,13 @@
|
|||||||
<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">
|
<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 }}
|
||||||
<link rel="canonical" href="{{ .Permalink }}">
|
<link rel="canonical" href="{{ .Permalink }}">
|
||||||
<link rel="alternate" type="application/rss+xml" href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}" title="{{ .Site.Title }}">
|
<link rel="alternate" type="application/rss+xml" href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}" title="{{ .Site.Title }}">
|
||||||
{{- if .Site.Params.FontAwesome }}
|
{{- if .Site.Params.fontawesome }}
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css">
|
{{ partial "font-awesome.html" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Params.math .Site.Params.math }}
|
{{- if or .Params.math .Site.Params.math }}
|
||||||
{{ partial "math.html" . }}
|
{{ partial "math.html" . }}
|
||||||
@ -26,6 +29,7 @@
|
|||||||
<a href="{{ .URL }}">{{ .Pre }}{{ .Name }}{{ .Post }}</a>
|
<a href="{{ .URL }}">{{ .Pre }}{{ .Name }}{{ .Post }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</nav>
|
</nav>
|
||||||
|
{{ if and .Site.Params.sidebar (isset .Site.Params "description") }}<p>{{ .Site.Params.description }}</p>{{ end }}
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
{{- block "main" . }}{{- end }}
|
{{- block "main" . }}{{- end }}
|
||||||
|
1
layouts/partials/font-awesome.html
Normal file
1
layouts/partials/font-awesome.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css">
|
@ -12,7 +12,6 @@
|
|||||||
|
|
||||||
.archive li {
|
.archive li {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
margin: .6em 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive time {
|
.archive time {
|
||||||
@ -20,3 +19,7 @@
|
|||||||
min-width: 10ch;
|
min-width: 10ch;
|
||||||
margin: 0 .2em;
|
margin: 0 .2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fa, .fab, .fad, .fal, .far, .fas {
|
||||||
|
margin-right: 1.2em;
|
||||||
|
}
|
||||||
|
58
static/css/sidebar.css
Normal file
58
static/css/sidebar.css
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
body {
|
||||||
|
font-size: 18px;
|
||||||
|
padding: 0 4em;
|
||||||
|
margin-left: 16em;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > article, body > footer {
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 2em 0;
|
||||||
|
max-width: 55em;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > header {
|
||||||
|
display: block;
|
||||||
|
position: fixed;
|
||||||
|
background: #17181c;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
box-shadow: none;
|
||||||
|
opacity: .96;
|
||||||
|
margin: 0;
|
||||||
|
padding: 2.2em 2em;
|
||||||
|
width: 12em;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
margin: 0 -2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
display: block;
|
||||||
|
margin: 0;
|
||||||
|
padding: .5em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a:hover, nav a.selected {
|
||||||
|
background: #23242a;
|
||||||
|
text-decoration: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a svg {
|
||||||
|
margin-right: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
article header h1 {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > header > a {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body > header > p {
|
||||||
|
margin-top: 3em;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user