forked from planex/defiance
temporary styling
This commit is contained in:
parent
b3c65d8f01
commit
842856bef9
2 changed files with 37 additions and 9 deletions
|
@ -1,6 +1,8 @@
|
||||||
|
{{ if .PublishDate }}
|
||||||
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
|
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
|
||||||
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
|
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
|
||||||
<time datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time>
|
<time datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time>
|
||||||
|
{{ end }}
|
||||||
{{ with .Params.tags }}
|
{{ with .Params.tags }}
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
{{ $href := print (absURL "tags/") (urlize .) }}
|
{{ $href := print (absURL "tags/") (urlize .) }}
|
|
@ -1,26 +1,52 @@
|
||||||
body {
|
body {
|
||||||
|
justify-content: center;
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
header h1 {
|
header h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: lightslategrey;
|
||||||
|
color: white;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 1pt;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For header.html */
|
||||||
|
#nav-button {
|
||||||
|
background-color: #da644a;
|
||||||
|
color: white;
|
||||||
|
padding: 15px 25px;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav-button:hover {
|
||||||
|
background-color: #e69886;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* For author.html */
|
||||||
|
#avatar {
|
||||||
|
border-radius: 8px;
|
||||||
|
max-width: 200px;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
#pronouns {
|
||||||
|
color: maroon;
|
||||||
|
}
|
||||||
|
|
||||||
/* For meta.html */
|
/* For meta.html */
|
||||||
.meta {
|
.meta {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
}
|
||||||
|
#meta-avatar {
|
||||||
|
border-radius: 8px;
|
||||||
|
max-width: 60px;
|
||||||
|
height: auto;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue