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

40 lines
568 B
SCSS
Raw Normal View History

2018-05-03 23:55:34 +02:00
.footer {
background-color: $black;
2018-05-08 22:55:33 +02:00
color: rgba($white, 0.15);
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 {
2018-05-08 22:55:33 +02:00
color: mix($black, $teal, 15%);
2018-05-03 23:55:34 +02:00
}
}
}