Various small styling changes
This commit is contained in:
parent
1082546b57
commit
815d89ad49
|
@ -7,7 +7,7 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
{{ if isset .Params "description" }}
|
{{ if isset .Params "description" }}
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<h1 class="display-4 mb-4">{{ .Title }}</h1>
|
<h1 id="title" class="display-4 mb-4">{{ .Title }}</h1>
|
||||||
|
|
||||||
{{ .Params.description | markdownify }}
|
{{ .Params.description | markdownify }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<h1 id="projects" class="mb-4">Projects</h1>
|
||||||
|
|
||||||
<div class="card-columns">
|
<div class="card-columns">
|
||||||
{{ range .Site.Data.projects.project }}
|
{{ range .Site.Data.projects.project }}
|
||||||
{{ partial "projectCard" . }}
|
{{ partial "projectCard" . }}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<html lang='{{ .Site.Language.Lang | default "en-us" }}'>
|
<html lang='{{ .Site.Language.Lang | default "en-us" }}'>
|
||||||
<head>
|
<head>
|
||||||
<title>{{ if eq (.Site.Title) (.Title) }}{{ .Site.Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title>
|
<title>{{ if eq (.Site.Title) (.Title) }}{{ .Site.Title }}{{ else }}{{ .Site.Title }} · {{ .Title }}{{ end }}</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,13 @@ body {
|
||||||
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1:not(.card-header):not(#title), h2:not(.card-header), h3:not(.card-header), h4:not(.card-header), h5:not(.card-header), h6:not(.card-header) {
|
||||||
|
margin-top: 30px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
a:not(.nav-link):not(.navbar-brand) {
|
a:not(.nav-link):not(.navbar-brand) {
|
||||||
color: #3f51b5;
|
color: #3f51b5;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue