made .box look better on newer themes; updated readme.md to add new themes; modularized blog sass some
This commit is contained in:
parent
c59659ca1d
commit
800363c6ab
15 changed files with 143 additions and 123 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Zulma
|
# Zulma
|
||||||
|
|
||||||
A Bulma theme for Zola.
|
A Bulma theme for Zola. See a live preview [here](https://festive-morse-47d46c.netlify.com/)
|
||||||
|
|
||||||
![Zulma Screenshot](/screenshot.png)
|
![Zulma Screenshot](/screenshot.png)
|
||||||
|
|
||||||
|
@ -187,6 +187,10 @@ In extra, setting `zulma_theme` to a valid value will change the current colour
|
||||||
- flatly
|
- flatly
|
||||||
- pulse
|
- pulse
|
||||||
- simplex
|
- simplex
|
||||||
|
- lux
|
||||||
|
- slate
|
||||||
|
- solar
|
||||||
|
- superhero
|
||||||
|
|
||||||
All valid themes can also be found under the `extra.zulma_themes` variable in the `theme.toml`. Choosing no theme will set default as the theme. Setting an invalid theme value will cause the site to render improperly.
|
All valid themes can also be found under the `extra.zulma_themes` variable in the `theme.toml`. Choosing no theme will set default as the theme. Setting an invalid theme value will cause the site to render improperly.
|
||||||
|
|
||||||
|
|
3
content/_index.md
Normal file
3
content/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
+++
|
||||||
|
paginate_by=1
|
||||||
|
+++
|
112
sass/_blog.scss
112
sass/_blog.scss
|
@ -1,3 +1,6 @@
|
||||||
|
@import "./_blog/article";
|
||||||
|
@import "./_blog/search-results";
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
font-family: "Open Sans", sans-serif;
|
font-family: "Open Sans", sans-serif;
|
||||||
|
@ -11,9 +14,13 @@ main {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-brand .brand-text {
|
.footer {
|
||||||
font-size: 1.11rem;
|
margin-top: 4rem;
|
||||||
font-weight: bold;
|
padding: 2rem;
|
||||||
|
|
||||||
|
.theme-select-container {
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero .title {
|
.hero .title {
|
||||||
|
@ -28,110 +35,13 @@ main {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.media-center {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.media-content {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-title {
|
|
||||||
font-size: 2rem;
|
|
||||||
font-weight: lighter;
|
|
||||||
line-height: 2;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-subtitle {
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-footer,
|
|
||||||
.article-body {
|
|
||||||
margin: 2rem 0;
|
|
||||||
|
|
||||||
@include desktop {
|
|
||||||
margin: 2rem 6rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-body {
|
|
||||||
line-height: 1.4;
|
|
||||||
}
|
|
||||||
|
|
||||||
.article-footer {
|
|
||||||
font-style: italic;
|
|
||||||
padding: 1.5rem;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
.button,
|
|
||||||
.tag {
|
|
||||||
font-style: normal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.list.box {
|
.list.box {
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
> a {
|
>a {
|
||||||
margin: 0.2rem;
|
margin: 0.2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.paginator-container {
|
|
||||||
padding: 2rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-results {
|
|
||||||
display: none;
|
|
||||||
max-height: 35rem;
|
|
||||||
overflow: auto;
|
|
||||||
|
|
||||||
@include desktop {
|
|
||||||
position: absolute;
|
|
||||||
top: 100%;
|
|
||||||
width: 50rem;
|
|
||||||
right: 0;
|
|
||||||
margin-right: 0.75rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-results__items > li {
|
|
||||||
list-style: none;
|
|
||||||
margin-top: 1rem;
|
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-end {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
input#search::placeholder {
|
|
||||||
color: $grey-darker;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer {
|
|
||||||
margin-top: 4rem;
|
|
||||||
padding: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pagination-previous,
|
|
||||||
.pagination-next {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.theme-select-container {
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
|
|
39
sass/_blog/_article.scss
Normal file
39
sass/_blog/_article.scss
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
.article {
|
||||||
|
margin-top: 1rem;
|
||||||
|
|
||||||
|
|
||||||
|
.article-title {
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: lighter;
|
||||||
|
line-height: 2;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-subtitle {
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-footer,
|
||||||
|
.article-body {
|
||||||
|
margin: 2rem 0;
|
||||||
|
|
||||||
|
@include desktop {
|
||||||
|
margin: 2rem 6rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-body {
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-footer {
|
||||||
|
font-style: italic;
|
||||||
|
padding: 1.5rem;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.button,
|
||||||
|
.tag {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
sass/_blog/_nav.scss
Normal file
10
sass/_blog/_nav.scss
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
nav {
|
||||||
|
.navbar-end {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand .brand-text {
|
||||||
|
font-size: 1.11rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
8
sass/_blog/_pagination.scss
Normal file
8
sass/_blog/_pagination.scss
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
.paginator-container {
|
||||||
|
padding: 2rem 0;
|
||||||
|
|
||||||
|
.pagination-previous,
|
||||||
|
.pagination-next {
|
||||||
|
flex-grow: 0;
|
||||||
|
}
|
||||||
|
}
|
26
sass/_blog/_search-results.scss
Normal file
26
sass/_blog/_search-results.scss
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
.search-results {
|
||||||
|
display: none;
|
||||||
|
max-height: 35rem;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
@include desktop {
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
width: 50rem;
|
||||||
|
right: 0;
|
||||||
|
margin-right: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-results__items>li {
|
||||||
|
list-style: none;
|
||||||
|
margin-top: 1rem;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input#search::placeholder {
|
||||||
|
color: $grey-darker;
|
||||||
|
}
|
|
@ -3,3 +3,12 @@
|
||||||
@import "./_vendor/lux/overrides";
|
@import "./_vendor/lux/overrides";
|
||||||
|
|
||||||
@import "./blog";
|
@import "./blog";
|
||||||
|
|
||||||
|
.box {
|
||||||
|
$card-border-color: $grey-darker;
|
||||||
|
$border-width: 2px default;
|
||||||
|
box-shadow: none;
|
||||||
|
border: $border-width solid $card-border-color;
|
||||||
|
background-color: $grey-darker;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
|
@ -3,11 +3,3 @@
|
||||||
@import './_vendor/pulse/overrides';
|
@import './_vendor/pulse/overrides';
|
||||||
|
|
||||||
@import './blog';
|
@import './blog';
|
||||||
|
|
||||||
// .box {
|
|
||||||
// $card-border-color: lighten($grey-darker, 5);
|
|
||||||
// box-shadow: none;
|
|
||||||
// border: $border-width solid $card-border-color;
|
|
||||||
// background-color: $grey-darker;
|
|
||||||
// border-radius: $radius;
|
|
||||||
// }
|
|
|
@ -3,11 +3,3 @@
|
||||||
@import './_vendor/simplex/overrides';
|
@import './_vendor/simplex/overrides';
|
||||||
|
|
||||||
@import './blog';
|
@import './blog';
|
||||||
|
|
||||||
// .box {
|
|
||||||
// $card-border-color: lighten($grey-darker, 5);
|
|
||||||
// box-shadow: none;
|
|
||||||
// border: $border-width solid $card-border-color;
|
|
||||||
// background-color: $grey-darker;
|
|
||||||
// border-radius: $radius;
|
|
||||||
// }
|
|
|
@ -3,3 +3,12 @@
|
||||||
@import "./_vendor/slate/overrides";
|
@import "./_vendor/slate/overrides";
|
||||||
|
|
||||||
@import "./blog";
|
@import "./blog";
|
||||||
|
|
||||||
|
.box {
|
||||||
|
$card-border-color: lighten($grey-darker, 5);
|
||||||
|
$border-width: 2px default;
|
||||||
|
box-shadow: none;
|
||||||
|
border: $border-width solid $card-border-color;
|
||||||
|
background-color: $grey-darker;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
|
@ -3,3 +3,12 @@
|
||||||
@import "./_vendor/solar/overrides";
|
@import "./_vendor/solar/overrides";
|
||||||
|
|
||||||
@import "./blog";
|
@import "./blog";
|
||||||
|
|
||||||
|
.box {
|
||||||
|
$card-border-color: lighten($grey-darker, 5);
|
||||||
|
$border-width: 2px default;
|
||||||
|
box-shadow: none;
|
||||||
|
border: $border-width solid $card-border-color;
|
||||||
|
background-color: $grey-darker;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
|
@ -3,3 +3,12 @@
|
||||||
@import "./_vendor/superhero/overrides";
|
@import "./_vendor/superhero/overrides";
|
||||||
|
|
||||||
@import "./blog";
|
@import "./blog";
|
||||||
|
|
||||||
|
.box {
|
||||||
|
$card-border-color: lighten($grey-darker, 5);
|
||||||
|
$border-width: 2px default;
|
||||||
|
box-shadow: none;
|
||||||
|
border: $border-width solid $card-border-color;
|
||||||
|
background-color: $grey-darker;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue