lijntjeuh

This commit is contained in:
Lorin Werthen 2017-04-23 15:47:44 +02:00
parent 13e4be8107
commit 1dacd2eabb
No known key found for this signature in database
GPG key ID: F11FFC921E0E08E0

View file

@ -48,6 +48,13 @@ dl {
} }
} }
@keyframes lineAnimation {
100% {
width: 80px;
opacity: 1;
}
}
.blog-heading { .blog-heading {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -78,7 +85,8 @@ dl {
&::after { &::after {
content: ''; content: '';
width: 80px; opacity: 0;
width: 0px;
height: 1px; height: 1px;
margin-top: 30px; margin-top: 30px;
margin-right: auto; margin-right: auto;
@ -86,6 +94,8 @@ dl {
margin-bottom: 30px; margin-bottom: 30px;
display: block; display: block;
background: $zeus-orange; background: $zeus-orange;
animation: lineAnimation 2s ease-in-out 1 normal forwards;
} }
} }