Merge commit '001a432'
This commit is contained in:
commit
543c78a3b2
7 changed files with 37 additions and 18 deletions
|
@ -6,6 +6,7 @@
|
||||||
margin-inline-start: auto;
|
margin-inline-start: auto;
|
||||||
margin-inline-end: auto;
|
margin-inline-end: auto;
|
||||||
line-height: var(--header-height);
|
line-height: var(--header-height);
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav a {
|
.nav a {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.main {
|
.main {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: calc(100vh - var(--header-height) - var(--footer-height));
|
min-height: calc(100vh - var(--header-height) - var(--footer-height));
|
||||||
max-width: calc(var(--main-width) + var(--gap) * 2);
|
max-width: calc(var(--main-width) + var(--gap) * 6);
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: var(--gap);
|
padding: var(--gap);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
min-height: 320px;
|
min-height: 160px;
|
||||||
margin: var(--gap) 0 calc(var(--gap) * 2) 0;
|
margin: var(--gap) 0 calc(var(--gap) * 2) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
--main-width: 720px;
|
--main-width: 720px;
|
||||||
--header-height: 60px;
|
--header-height: 60px;
|
||||||
--footer-height: 60px;
|
--footer-height: 60px;
|
||||||
--radius: 8px;
|
--radius: 4px;
|
||||||
--theme: rgb(255, 255, 255);
|
--theme: rgb(255, 255, 255);
|
||||||
--entry: rgb(255, 255, 255);
|
--entry: rgb(255, 255, 255);
|
||||||
--primary: rgb(30, 30, 30);
|
--primary: rgb(30, 30, 30);
|
||||||
|
@ -15,24 +15,42 @@
|
||||||
--hljs-bg: rgb(28, 29, 33);
|
--hljs-bg: rgb(28, 29, 33);
|
||||||
--code-bg: rgb(245, 245, 245);
|
--code-bg: rgb(245, 245, 245);
|
||||||
--border: rgb(238, 238, 238);
|
--border: rgb(238, 238, 238);
|
||||||
|
--bg-tile: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
rgba(11, 11, 11, 0.8),
|
||||||
|
rgba(11, 11, 11, 0.8)
|
||||||
|
),
|
||||||
|
url(https://zzls.xyz/assets/bgs/bgtile.gif);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dark {
|
.dark {
|
||||||
--theme: rgb(29, 30, 32);
|
--theme: #111;
|
||||||
--entry: rgb(46, 46, 51);
|
--entry: #2222227b;
|
||||||
--primary: rgb(218, 218, 219);
|
--primary: #f0f8ff;
|
||||||
--secondary: rgb(155, 156, 157);
|
--secondary: #d7d7d7;
|
||||||
--tertiary: rgb(65, 66, 68);
|
--tertiary: rgb(65, 66, 68);
|
||||||
--content: rgb(196, 196, 197);
|
--content: #cbcbcb;
|
||||||
--hljs-bg: rgb(46, 46, 51);
|
--hljs-bg: #2e2e337b;
|
||||||
--code-bg: rgb(55, 56, 62);
|
--code-bg: #37383e7b;
|
||||||
--border: rgb(51, 51, 51);
|
--border: #3333337b;
|
||||||
|
background-image: var(--bg-tile);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: rgb(223, 131, 223);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: rgb(223, 131, 223);
|
||||||
}
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
background: var(--code-bg);
|
background: var(--code-bg);
|
||||||
|
background-image: var(--bg-tile);
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark.list {
|
.dark.list {
|
||||||
background: var(--theme);
|
background: var(--theme);
|
||||||
}
|
background-image: var(--bg-tile);
|
||||||
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
{{- if and (or .Params.editPost.URL site.Params.editPost.URL) (not (.Param "editPost.disabled")) -}}
|
<!-- {{- if and (or .Params.editPost.URL site.Params.editPost.URL) (not (.Param "editPost.disabled")) -}}
|
||||||
{{- $fileUrlPath := path.Join .File.Path }}
|
{{- $fileUrlPath := path.Join .File.Path }}
|
||||||
|
|
||||||
{{- if or .Params.author site.Params.author (.Param "ShowReadingTime") (not .Date.IsZero) .IsTranslated }} | {{- end -}}
|
{{- if or .Params.author site.Params.author (.Param "ShowReadingTime") (not .Date.IsZero) .IsTranslated }} | {{- end -}}
|
||||||
<a href="{{ .Params.editPost.URL | default site.Params.editPost.URL }}{{ if .Params.editPost.appendFilePath | default ( site.Params.editPost.appendFilePath | default false ) }}/{{ $fileUrlPath }}{{ end }}" rel="noopener noreferrer" target="_blank">
|
<a href="{{ .Params.editPost.URL | default site.Params.editPost.URL }}{{ if .Params.editPost.appendFilePath | default ( site.Params.editPost.appendFilePath | default false ) }}/{{ $fileUrlPath }}{{ end }}" rel="noopener noreferrer" target="_blank">
|
||||||
{{- .Params.editPost.Text | default (site.Params.editPost.Text | default (i18n "edit_post" | default "Edit")) -}}
|
{{- .Params.editPost.Text | default (site.Params.editPost.Text | default (i18n "edit_post" | default "Edit")) -}}
|
||||||
</a>
|
</a>
|
||||||
{{- end }}
|
{{- end }} -->
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
<a href="https://git.zzls.xyz/Fijxu/hugo-PaperMod" rel="noopener" target="_blank">PaperMod (Forked)</a>
|
||||||
</span>
|
</span>
|
||||||
</footer>
|
</footer>
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
{{- $label_text := (site.Params.label.text | default site.Title) }}
|
<!-- {{- $label_text := (site.Params.label.text | default site.Title) }}
|
||||||
{{- if site.Title }}
|
{{- if site.Title }}
|
||||||
<a href="{{ "" | absLangURL }}" accesskey="h" title="{{ $label_text }} (Alt + H)">
|
<a href="{{ "" | absLangURL }}" accesskey="h" title="{{ $label_text }} (Alt + H)">
|
||||||
{{- if site.Params.label.icon }}
|
{{- if site.Params.label.icon }}
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- $label_text -}}
|
{{- $label_text -}}
|
||||||
</a>
|
</a>
|
||||||
{{- end }}
|
{{- end }} -->
|
||||||
<div class="logo-switches">
|
<div class="logo-switches">
|
||||||
{{- if (not site.Params.disableThemeToggle) }}
|
{{- if (not site.Params.disableThemeToggle) }}
|
||||||
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
{{- $separator := or $label_text (not site.Params.disableThemeToggle)}}
|
{{- $separator := or $label_text (not site.Params.disableThemeToggle)}}
|
||||||
{{- with site.Home.AllTranslations }}
|
{{- with site.Home.AllTranslations }}
|
||||||
<ul class="lang-switch">
|
<ul class="lang-switch">
|
||||||
{{- if $separator }}<li>|</li>{{ end }}
|
{{- if $separator }}<li>Other language?:</li>{{ end }}
|
||||||
{{- range . -}}
|
{{- range . -}}
|
||||||
{{- if ne $lang .Lang }}
|
{{- if ne $lang .Lang }}
|
||||||
<li>
|
<li>
|
||||||
|
|
Loading…
Reference in a new issue