style: add zoom effect on card hover
This commit is contained in:
parent
f35bcd3a24
commit
de41078365
@ -183,13 +183,38 @@ article {
|
|||||||
background: #000;
|
background: #000;
|
||||||
box-shadow: 0 0 15px rgba(0, 0, 0, .1);
|
box-shadow: 0 0 15px rgba(0, 0, 0, .1);
|
||||||
|
|
||||||
.project-image a {
|
&:hover {
|
||||||
|
.project-image {
|
||||||
|
img {
|
||||||
|
transform: scale(110%);
|
||||||
|
}
|
||||||
|
|
||||||
|
p.project-title {
|
||||||
|
font-size: 1.2em;
|
||||||
|
margin: calc(-35px - .2em) 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.project-image {
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
img {
|
||||||
|
z-index: -2;
|
||||||
|
transform: scale(100%);
|
||||||
|
|
||||||
|
transition: transform 500ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
&:link, &:visited, &:hover &:active {
|
&:link, &:visited, &:hover &:active {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-image p.project-title {
|
p.project-title {
|
||||||
|
font-size: 1em;
|
||||||
|
transition: font-size 500ms, margin 500ms;
|
||||||
position: relative;
|
position: relative;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -198,6 +223,7 @@ article {
|
|||||||
background-color: rgba(#000, 50%);
|
background-color: rgba(#000, 50%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.blog-card {
|
.blog-card {
|
||||||
transition: all 0.2s ease-in-out;
|
transition: all 0.2s ease-in-out;
|
||||||
|
Loading…
Reference in New Issue
Block a user