temporary styling

This commit is contained in:
ch0ccyra1n 2022-07-20 14:57:54 -07:00
parent b3c65d8f01
commit 842856bef9
2 changed files with 37 additions and 9 deletions

View file

@ -1,6 +1,8 @@
{{ if .PublishDate }}
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
<time datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time>
{{ end }}
{{ with .Params.tags }}
{{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }}

View file

@ -1,26 +1,52 @@
body {
}
main {
}
img {
justify-content: center;
}
header h1 {
text-align: center;
}
code {
background-color: lightslategrey;
color: white;
border-radius: 5px;
padding: 1pt;
}
footer {
text-align: center;
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 */
.meta {
text-align: center;
clear: both;
}
#meta-avatar {
border-radius: 8px;
max-width: 60px;
height: auto;
}