lbry.tech/.vuepress/scss/partials/_footer.scss
2018-05-08 15:55:33 -05:00

39 lines
568 B
SCSS

.footer {
background-color: $black;
color: rgba($white, 0.15);
font-size: 1rem;
padding-top: 2rem;
padding-bottom: 2rem;
ul {
align-items: stretch;
display: flex;
flex-flow: row wrap;
list-style-type: none;
li {
padding-right: 0.5rem;
padding-left: 0.5rem;
&:first-of-type {
flex: 1;
}
&:last-of-type {
cursor: default;
}
}
}
a {
transition: color 0.2s;
&:not(:hover) {
color: $white;
}
&:hover {
color: mix($black, $teal, 15%);
}
}
}