Added CacheStore server side, working with blog on client side more.

This commit is contained in:
2018-10-31 21:01:03 +11:00
parent 2ca45b154c
commit 5b4be02593
10 changed files with 294 additions and 9 deletions

View File

@ -0,0 +1,40 @@
/*
* Article Thumbnail
* Styles for displaying an article in a short thumbnail object that can be
* put in the usual places.
*
* Version:
* 1.0.0 - 2018/10/31
*/
@import '~@styles/global';
.o-article-thumbnail {
padding-bottom: 1.5em;
&__header {
display: block;
position: relative;
}
&__image {
display: block;
width: 100%;
}
&__title {
margin: 0;
width: 100%;
&-box {
transition: all 0.3s $s-animation--ease-out;
.o-article-thumbnail__header:hover & {
transform: translateY(-7.5%);
}
}
}
&__content {
padding: 0 0.5em;
}
}