|
|
|
@ -138,9 +138,13 @@ main {
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
box-sizing:border-box;
|
|
|
|
|
width:100%;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
transition: box-shadow .15s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color:$anchor-hover-color;
|
|
|
|
|
box-shadow: 0 0 8px #888;
|
|
|
|
|
a { color: inherit }
|
|
|
|
|
.image { background-size: 110% }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
@ -150,6 +154,19 @@ main {
|
|
|
|
|
color: $article-color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
background-position: center;
|
|
|
|
|
transition: background-size .15s ease;
|
|
|
|
|
}
|
|
|
|
|
.image:before {
|
|
|
|
|
content: "";
|
|
|
|
|
float: left;
|
|
|
|
|
padding-top: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
margin: 1em .8em .5em .8em;
|
|
|
|
|
text-align: center;
|
|
|
|
|