Lyout fixes
This commit is contained in:
parent
0a964b1237
commit
23085a3f84
5 changed files with 12 additions and 8 deletions
|
@ -21,7 +21,6 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col s12 m9 l9">
|
||||
<section>
|
||||
<div class="list-group">
|
||||
{{ $paginator := .Paginate ((where .Pages "Type" "blogspot").ByParam "lastmod").Reverse}}
|
||||
{{ range $paginator.Pages }}
|
||||
|
@ -31,7 +30,6 @@
|
|||
|
||||
{{ partial "partials/pagination.html" (dict "page" . "format" "default" "align" "center") }}
|
||||
|
||||
</section>
|
||||
</div>
|
||||
{{ partial "partials/widgets/spotsidebar.html" . }}
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div class="row blog-article-item-list">
|
||||
<h4 class="blog-article-title"><a href="{{ .article.Permalink }}">{{.article.Title}}</a></h4>
|
||||
<h3 class="blog-article-title"><a href="{{ .article.Permalink }}">{{.article.Title}}</a></h3>
|
||||
<div class="col s12 m4 l4 blog-article-image">
|
||||
{{ if isset .article.Params "images"}}
|
||||
{{ if (fileExists (printf "assets/%s" (index .article.Params.images 0))) -}}
|
||||
|
|
|
@ -73,6 +73,7 @@ footer .menu {
|
|||
|
||||
.blog-article-title {
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.blog-article-image {
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
{{ hugo.Generator }}
|
||||
|
||||
<link href="{{ "css/main.css?8" | relURL }}" rel="stylesheet">
|
||||
<link href="{{ "css/custom.css?8" | relURL }}" rel="stylesheet">
|
||||
<link href="{{ "css/main.css?1" | relURL }}" rel="stylesheet">
|
||||
<link href="{{ "css/custom.css?1" | relURL }}" rel="stylesheet">
|
||||
|
||||
<!-- Favicon and Apple touch icons-->
|
||||
<link rel="shortcut icon" href="{{ "img/favicon.ico" | relURL }}" type="image/x-icon">
|
||||
|
|
|
@ -380,7 +380,7 @@ header .col {
|
|||
}
|
||||
|
||||
.list-group .row {
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.list-group .row h4 {
|
||||
|
@ -716,13 +716,18 @@ link {
|
|||
|
||||
@media screen and (max-width: 992px) {
|
||||
body {
|
||||
padding-top: 60px;
|
||||
padding-top: 80px;
|
||||
}
|
||||
|
||||
#responsive-button {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#topnav {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
#topmenu {
|
||||
position:relative;
|
||||
}
|
||||
|
@ -733,7 +738,7 @@ link {
|
|||
z-index:3;
|
||||
height:auto;
|
||||
display:none;
|
||||
top: 45px;
|
||||
top: 55px;
|
||||
right: -30px;
|
||||
flex-direction: column;
|
||||
border-bottom-left-radius: 10px;
|
||||
|
|
Loading…
Add table
Reference in a new issue