lbry.tech/app/sass/partials/_footer.scss

75 lines
1.5 KiB
SCSS
Raw Normal View History

2018-05-03 23:55:34 +02:00
.footer {
2018-10-13 00:29:53 +02:00
background-color: $lbry-black;
color: rgba($lbry-white, 0.15);
2018-05-03 23:55:34 +02:00
font-size: 1rem;
2018-05-11 16:07:16 +02:00
padding-right: env(safe-area-inset-right);
padding-left: env(safe-area-inset-left);
position: relative;
@media (max-width: 980px) {
&::before {
width: 3rem; height: 100%;
2018-10-06 00:46:08 +02:00
right: 0; bottom: 0;
2018-10-13 00:29:53 +02:00
background-image: linear-gradient(90deg, rgba($lbry-black, 0), $lbry-black 50%, $lbry-black); // iOS Safari cannot handle `transparent`
content: "";
position: absolute;
z-index: 2;
}
}
2018-05-10 21:13:25 +02:00
> div:first-of-type {
2018-05-17 21:09:18 +02:00
@media (max-width: 980px) {
2018-10-06 00:46:08 +02:00
width: 100%;
2018-05-10 21:13:25 +02:00
overflow: auto;
2018-10-06 00:46:08 +02:00
overflow-scrolling: touch; // sass-lint:disable-line no-misspelled-properties
2018-05-10 21:13:25 +02:00
white-space: nowrap;
}
}
2018-05-03 23:55:34 +02:00
ul {
list-style-type: none;
2018-05-10 21:13:25 +02:00
padding-top: 2rem;
padding-bottom: 2rem;
2018-05-17 21:09:18 +02:00
@media (min-width: 981px) {
2018-05-10 21:13:25 +02:00
align-items: stretch;
display: flex;
flex-flow: row wrap;
}
2018-05-03 23:55:34 +02:00
li {
padding-right: 0.5rem;
padding-left: 0.5rem;
2018-05-10 21:13:25 +02:00
vertical-align: bottom;
2018-05-17 21:09:18 +02:00
@media (max-width: 980px) {
2018-05-10 21:13:25 +02:00
display: inline-block;
transform: translate3d(0, 0, 0);
transition: opacity 0.2s 0.2s ease, transform 0.4s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
&:last-of-type {
margin-right: 3rem;
}
}
2018-05-03 23:55:34 +02:00
&:first-of-type {
flex: 1;
}
}
}
a {
transition: color 0.2s;
&:not(:hover) {
2018-10-13 00:29:53 +02:00
color: $lbry-white;
2018-05-03 23:55:34 +02:00
}
&:hover {
2018-10-13 00:29:53 +02:00
color: $lbry-teal-3;
2018-05-03 23:55:34 +02:00
}
}
}