squirrel/assets/scss/totop.scss

33 lines
584 B
SCSS
Raw Normal View History

2021-02-25 21:23:58 +00:00
.totop {
display: inline-flex;
2022-06-27 14:09:44 +00:00
background-color: {{ .Site.Params.color.primary }};
2021-02-25 21:23:58 +00:00
color: #f2f2f2;
width: 50px;
height: 50px;
align-items: center;
justify-content: center;
border-radius: 50%;
margin: 30px;
position: fixed;
bottom: 0px;
right: 0px;
transition: background-color .3s;
z-index: 1000;
}
.show {
visibility: visible;
opacity: 1;
}
.hide {
visibility: hidden;
opacity: 0;
}
@media screen and (min-width: 600px) {
.totop:hover {
cursor: pointer;
background-color: black;
}
}