finish newsletter section styling
This commit is contained in:
parent
cd3b278265
commit
a32112651b
|
@ -10,9 +10,27 @@ body.type-newsletter {
|
||||||
--signature-bg: rgba(203, 58, 87, 0.239);
|
--signature-bg: rgba(203, 58, 87, 0.239);
|
||||||
--signature-bg-dim: rgba(203, 58, 87, 0.147);
|
--signature-bg-dim: rgba(203, 58, 87, 0.147);
|
||||||
--main-border: 5px solid var(--signature);
|
--main-border: 5px solid var(--signature);
|
||||||
--link-hover-color: var(--signature);
|
|
||||||
--icon-length: 50px;
|
--icon-length: 50px;
|
||||||
|
|
||||||
|
// override theme-vars
|
||||||
|
--link-hover-color: var(--signature);
|
||||||
|
--link-hover-underline-color: var(--signature);
|
||||||
|
--link-hover-underline-shadow: 0 2px 0 var(--link-hover-underline-color);
|
||||||
|
|
||||||
|
.main {
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--primary);
|
||||||
|
box-shadow: var(--link-underline-shadow);
|
||||||
|
// transition: var(--link-transition);
|
||||||
|
&:hover {
|
||||||
|
color: var(--link-hover-color);
|
||||||
|
box-shadow: var(--link-hover-underline-shadow);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* shared */
|
/* shared */
|
||||||
.sub-form {
|
.sub-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -87,14 +105,27 @@ body.type-newsletter.kind-section {
|
||||||
.first-entry {
|
.first-entry {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
.entry-header h1 {
|
.entry-header {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
margin-bottom: calc(var(--content-gap) * 1.5);
|
||||||
|
h1 {
|
||||||
|
// back to default
|
||||||
|
font-size: 36px;
|
||||||
|
}
|
||||||
|
.subtitle {
|
||||||
|
color: var(--secondary);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// .entry-content {
|
// .entry-content {
|
||||||
// font-size: 16px;
|
// font-size: 16px;
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
margin: 40px 0 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -118,8 +149,9 @@ body.type-newsletter.kind-section {
|
||||||
a {
|
a {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
a:hover, a:active {
|
a:hover {
|
||||||
color: var(--signature);
|
color: var(--signature);
|
||||||
}
|
}
|
||||||
em {
|
em {
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
|
|
||||||
{{- $pages := where .Pages "Params.hidden" "!=" true }}
|
{{- $pages := where .Pages "Params.hidden" "!=" true }}
|
||||||
|
|
||||||
|
<h2>最近更新</h2>
|
||||||
|
|
||||||
<div class="list">
|
<div class="list">
|
||||||
{{- range first 5 $pages }}
|
{{- range first 5 $pages }}
|
||||||
|
@ -35,9 +36,10 @@
|
||||||
{{- end }}
|
{{- end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<h2>相关链接</h2>
|
||||||
<div>
|
<div>
|
||||||
{{- with .Param "archivesSlug" }}
|
{{- with .Param "archivesSlug" }}
|
||||||
<a href="{{ $.RelPermalink }}{{ . }}/">Archives</a>
|
<a href="{{ $.RelPermalink }}{{ . }}/">Archives</a> •
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Param "rssUrl" }}
|
{{- with .Param "rssUrl" }}
|
||||||
<a href="{{ site.BaseURL }}{{ . }}">RSS</a>
|
<a href="{{ site.BaseURL }}{{ . }}">RSS</a>
|
||||||
|
|
Loading…
Reference in New Issue