This repository has been archived on 2024-08-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
khufu/src/stash/scss/_global.scss

36 lines
787 B
SCSS
Raw Normal View History

2021-07-24 23:06:32 -06:00
@import "global/colors", "global/fonts", "global/measurements",
"global/animations";
html,
body {
margin-left: auto;
margin-right: auto;
text-align: center;
margin-top: 0;
color: $foreground;
background: #eee;
height: 100%;
width: 100%;
}
*::-webkit-scrollbar {
width: 5px;
height: 5px;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: $defaultBorderRadius;
}
*::-webkit-scrollbar-thumb {
border-radius: $defaultBorderRadius;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
background-color: lighten($sectionMenuOptions, 40%);
}
*::-webkit-scrollbar-thumb:hover {
background-color: lighten($sectionMenuOptions, 50%);
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}