mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 11:33:20 +01:00
90184ca3e7
* feat(search): add local search * docs: add docs for search
47 lines
837 B
SCSS
47 lines
837 B
SCSS
#fixed-buttons {
|
|
display: none;
|
|
}
|
|
|
|
.fixed-button {
|
|
display: none;
|
|
z-index: 100;
|
|
position: fixed;
|
|
right: 1.5rem;
|
|
font-size: 1rem;
|
|
line-height: 1.3rem;
|
|
padding: .6rem .6rem;
|
|
color: $global-font-secondary-color;
|
|
background: $header-background-color;
|
|
border: 1px solid darken($global-border-color, 10%);
|
|
@include border-radius(2rem);
|
|
|
|
@include blur;
|
|
|
|
&:hover, &:active {
|
|
color: $global-font-color;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&:active, &:focus, &:hover {
|
|
outline: none;
|
|
}
|
|
|
|
.dark & {
|
|
color: $global-font-secondary-color-dark;
|
|
background: $header-background-color-dark;
|
|
border-color: darken($global-border-color-dark, 10%);
|
|
|
|
&:hover, &:active {
|
|
color: $global-font-color-dark;
|
|
}
|
|
}
|
|
}
|
|
|
|
#back-to-top {
|
|
display: block;
|
|
bottom: 1.5rem;
|
|
}
|
|
|
|
#view-comments {
|
|
bottom: 4.5rem;
|
|
}
|