lbry.tech/.vuepress/scss/partials/_footer.scss

40 lines
549 B
SCSS
Raw Normal View History

2018-05-03 23:55:34 +02:00
.footer {
background-color: $black;
color: rgba($white, 0.3);
2018-05-03 23:55:34 +02:00
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;
2018-05-03 23:55:34 +02:00
}
&:hover {
color: $teal;
}
}
}