54 lines
794 B
SCSS
54 lines
794 B
SCSS
/*
|
|
* Home link
|
|
*/
|
|
|
|
.back-button {
|
|
text-decoration: none;
|
|
width: 48px;
|
|
height: 48px;
|
|
line-height: 48px - 2px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
transition: all 100ms linear;
|
|
|
|
// Smaller on mobile
|
|
@media (max-width: 480px) {
|
|
width: 32px;
|
|
height: 32px;
|
|
line-height: 32px - 2;
|
|
}
|
|
|
|
// Colors
|
|
&,
|
|
&:visited {
|
|
color: $base-mute;
|
|
}
|
|
|
|
// Active
|
|
&:hover,
|
|
&:focus {
|
|
color: white;
|
|
background: $base-a;
|
|
opacity: 1;
|
|
}
|
|
|
|
// Icon
|
|
&::before {
|
|
content: '';
|
|
@include ion-md-arrow-back(24px, $base-text);
|
|
}
|
|
|
|
&:hover::before,
|
|
&:focus::before {
|
|
@include ion-md-arrow-back(24px, white);
|
|
}
|
|
|
|
// Icon: smaller on mobile
|
|
@media (max-width: 480px) {
|
|
&::before {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|