tech.lbry.org/.vuepress/scss/partials/_footer.scss
2018-05-03 16:55:34 -05:00

40 lines
561 B
SCSS

.footer {
background-color: $black;
color: $white;
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;
opacity: 0.3;
}
}
}
a {
transition: color 0.2s;
&:not(:hover) {
color: inherit;
}
&:hover {
color: $teal;
}
}
}