update
This commit is contained in:
parent
74929ff17a
commit
7c39b10dea
8 changed files with 12 additions and 12 deletions
|
@ -17,10 +17,10 @@
|
|||
margin-top: 20px;
|
||||
}
|
||||
img {
|
||||
border: 1px solid $bg60;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 0 40px 10px rgb(30, 30, 45);
|
||||
margin-bottom: 15px;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
@include a-underlined;
|
||||
h2 {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
header {
|
||||
margin: 150px 0;
|
||||
text-align: center;
|
||||
h1 {
|
||||
h2 {
|
||||
font-size: 2em;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
&:hover {
|
||||
background: $bg50;
|
||||
}
|
||||
h1 {
|
||||
h2 {
|
||||
color: $white;
|
||||
display: flex;
|
||||
font-size: 18px;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
margin: 60px auto;
|
||||
max-width: 600px;
|
||||
text-align: center;
|
||||
h1 {
|
||||
h2 {
|
||||
font-size: 2.5em;
|
||||
margin: auto;
|
||||
}
|
||||
|
@ -87,7 +87,7 @@ main {
|
|||
&:hover {
|
||||
background: $bg50;
|
||||
}
|
||||
h1 {
|
||||
h2 {
|
||||
color: $white;
|
||||
font-size: 18px;
|
||||
font-weight: 400;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
{{- range .Pages }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<article>
|
||||
<h1><span>{{ .Title }}</span></h1>
|
||||
<h2><span>{{ .Title }}</span></h2>
|
||||
{{ with .Description }}<p class="description">{{ . }}</p>{{ end }}
|
||||
{{- if eq .Params.type "post" }}
|
||||
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<div class="container">
|
||||
<section>
|
||||
<header>
|
||||
<h1>{{ .Params.heading }}</h1>
|
||||
<h2>{{ .Params.heading }}</h2>
|
||||
<span class="subtitle">{{.Params.subheading}}</span>
|
||||
</header>
|
||||
{{.Content}}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<div class="container">
|
||||
<section>
|
||||
<header>
|
||||
<h1>{{ .Params.heading }}</h1>
|
||||
<h2>{{ .Params.heading }}</h2>
|
||||
<span class="subtitle">{{.Params.subheading}}</span>
|
||||
</header>
|
||||
{{.Content}}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<section class="section header">
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>{{ .Params.heading }}</h1>
|
||||
<h2>{{ .Params.heading }}</h2>
|
||||
<span class="subtitle">{{.Params.subheading}}</span>
|
||||
</header>
|
||||
<section class="section contact">
|
||||
|
@ -39,7 +39,7 @@
|
|||
{{- range first 4 (where .Site.RegularPages "Type" "project") }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<article>
|
||||
<h1>{{ .Title }}</h1>
|
||||
<h2>{{ .Title }}</h2>
|
||||
<p class="meta">
|
||||
{{ with .Params.activetime }}<span class="date">{{ . }}</span><br />{{ end }}
|
||||
{{ with .Params.status }}<span class="status">{{ . }}</span>{{ end }}
|
||||
|
@ -58,7 +58,7 @@
|
|||
{{- range first 4 (where .Site.RegularPages "Type" "post") }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<article>
|
||||
<h1><span>{{ .Title }}</span></h1>
|
||||
<h2><span>{{ .Title }}</span></h2>
|
||||
{{ with .Description }}<p class="description">{{ . }}</p>{{ end }}
|
||||
<p class="meta" title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}">
|
||||
<span class="date">{{ .Date.Format "2 January 2006" }}</span>
|
||||
|
|
Loading…
Reference in a new issue