crbtc.org/assets/style/components/_footer.scss

83 lines
1.2 KiB
SCSS
Raw Normal View History

2023-07-17 19:11:13 +00:00
.footer {
max-width: 60rem;
height: 2rem;
margin: .5rem auto;
padding: 0 4rem;
.who {
float: left;
color: $f-color;
font-size: .895rem;
a {
color: $link;
margin: 0 2px;
&:hover { text-decoration: underline }
}
.icon-btc {
2023-07-17 19:11:13 +00:00
position: relative;
top: .2rem;
font-size: 1.1rem;
margin: 0 .1rem;
2023-07-17 19:11:13 +00:00
}
}
.links {
float: right;
list-style-type: none;
white-space:nowrap;
padding: 0;
margin: 0;
li, li p {
display:inline;
font-size: .895rem;
}
a {
color: $link;
margin: 0 .5rem;
&:hover { text-decoration: underline }
}
p {
color: $f-color;
margin: 0 0 0 .5rem;
}
.copy .icon-copyright {
font-size: .7rem;
opacity: .9;
}
}
}
@media only screen and (max-width: 600px) {
.footer {
height: unset;
padding: 0 2rem;
2023-07-17 19:11:13 +00:00
margin: 1rem 0;
.who,
.links {
float: none;
}
.links {
padding: .5rem 0;
a:first-of-type {
margin: 0 1rem 0 0;
}
}
}
}
@media only screen and (max-width: 345px) {
.footer {
padding: 0 1rem;
}
}