revite/src/pages/settings/Settings.module.scss

306 lines
6 KiB
SCSS
Raw Normal View History

2021-06-19 17:37:12 -04:00
@keyframes open {
0% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
2021-06-19 17:37:12 -04:00
}
2021-07-05 16:50:55 -04:00
@keyframes close {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1.2);
opacity: 0;
}
2021-07-05 16:50:55 -04:00
}
2021-06-19 17:37:12 -04:00
@keyframes opacity {
0% {
opacity: 0;
}
20% {
opacity: 0.5;
}
50% {
opacity: 1;
}
2021-06-19 17:37:12 -04:00
}
.settings[data-mobile="true"] {
2021-06-19 17:37:12 -04:00
flex-direction: column;
background: var(--primary-header);
2021-08-02 10:21:16 -04:00
.scrollbox { //TOFIX: need to put this into a media query later
visibility: visible !important;
overflow-y: auto;
&::-webkit-scrollbar-thumb {
border-top: none;
}
}
.sidebar,
.content {
2021-06-19 17:37:12 -04:00
background: var(--primary-background);
}
.sidebar {
justify-content: flex-start;
2021-08-02 10:21:16 -04:00
2021-06-19 17:37:12 -04:00
.container {
2021-08-02 10:21:16 -04:00
padding: 20px 8px calc(var(--bottom-navigation-height) + 30px);
2021-06-19 17:37:12 -04:00
min-width: 218px;
2021-08-02 10:21:16 -04:00
width: 100%;
2021-06-19 17:37:12 -04:00
}
> div {
width: 100%;
}
.version {
place-items: center;
}
}
.content {
2021-08-02 10:21:16 -04:00
padding: 0;
}
.contentcontainer {
padding: 10px 12px var(--bottom-navigation-height) !important;
2021-06-19 17:37:12 -04:00
}
}
.settings:not([data-mobile="true"]) {
2021-06-19 17:37:12 -04:00
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
position: fixed;
animation: open 0.18s ease-out, opacity 0.18s;
2021-08-01 16:08:42 -04:00
&.closing {
animation: close 0.18s ease-in;
}
2021-06-19 17:37:12 -04:00
}
.settings {
height: 100%;
display: flex;
user-select: none;
flex-direction: row;
background: var(--primary-background);
/* Scrollbox hides the scrollbar on the desktop app. */
2021-08-02 10:21:16 -04:00
/*@media (hover: hover) { .scrollbox { visibility: hidden; }}*/
2021-08-02 06:22:39 -04:00
.scrollbox {
overflow-y: scroll;
2021-08-02 06:22:39 -04:00
visibility: hidden;
transition: visibility 0.1s;
2021-08-02 06:22:39 -04:00
}
.container,
.contentcontainer,
2021-08-02 06:22:39 -04:00
.scrollbox:hover,
.scrollbox:focus {
visibility: visible;
2021-08-02 06:22:39 -04:00
}
::-webkit-scrollbar-thumb {
background-clip: content-box;
border-top: 80px solid transparent;
}
2021-06-19 17:37:12 -04:00
.sidebar {
2021-08-01 14:41:53 -04:00
flex: 1 0 218px;
2021-06-19 17:37:12 -04:00
display: flex;
flex-shrink: 0;
overflow-y: scroll;
justify-content: flex-end;
background: var(--secondary-background);
display: flex;
-webkit-box-flex: 1;
-webkit-box-pack: end;
justify-content: flex-end;
2021-06-19 17:37:12 -04:00
.container {
width: 218px;
2021-08-02 06:22:39 -04:00
padding: 80px 8px;
2021-07-06 11:42:32 -04:00
height: fit-content;
2021-08-01 14:41:53 -04:00
display: flex;
gap: 2px;
flex-direction: column;
2021-08-02 06:22:39 -04:00
visibility: visible;
2021-06-19 17:37:12 -04:00
}
.divider {
height: 30px;
}
.donate {
color: goldenrod !important;
}
.logOut {
color: var(--error) !important;
}
.version {
margin: 1rem 12px 0;
font-size: 10px;
color: var(--secondary-foreground);
font-family: var(--monospace-font), monospace;
2021-06-19 17:37:12 -04:00
user-select: text;
display: grid;
> div {
gap: 2px;
display: flex;
flex-direction: column;
}
2021-06-22 08:47:47 -04:00
.revision a:hover {
text-decoration: underline;
}
2021-06-19 17:37:12 -04:00
}
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
.content {
flex: 1 1 800px;
display: flex;
overflow-y: auto;
2021-06-19 17:37:12 -04:00
overflow-x: hidden;
.scrollbox {
display: flex;
flex-grow: 1;
}
.contentcontainer {
display: flex;
2021-08-02 10:21:16 -04:00
gap: 13px;
height: max-content;
max-width: 740px;
padding: 80px 2em;
2021-08-02 10:21:16 -04:00
width: 100%;
visibility: visible;
flex-direction: column;
}
2021-06-19 17:37:12 -04:00
details {
margin: 14px 0;
}
h1 {
2021-08-02 10:21:16 -04:00
margin: 0;
2021-06-19 17:37:12 -04:00
line-height: 1em;
font-size: 1.2em;
font-weight: 600;
}
h3 {
font-size: 13px;
text-transform: uppercase;
color: var(--secondary-foreground);
2021-08-02 10:21:16 -04:00
&:first-child {
margin-top: 0;
}
2021-06-19 17:37:12 -04:00
}
h4 {
margin: 4px 2px;
font-size: 13px;
color: var(--tertiary-foreground);
text-transform: uppercase;
}
2021-07-05 17:49:57 -04:00
h5 {
margin-top: 0;
font-size: 12px;
font-weight: 400;
}
2021-06-19 17:37:12 -04:00
.footer {
border-top: 1px solid;
margin: 0;
padding-top: 5px;
font-size: 14px;
color: var(--secondary-foreground);
}
}
2021-08-02 10:21:16 -04:00
.action {
flex: 1;
2021-06-19 17:37:12 -04:00
flex-shrink: 0;
2021-08-02 06:22:39 -04:00
padding: 80px 8px;
2021-06-19 17:37:12 -04:00
color: var(--tertiary-background);
visibility: visible;
position: sticky;
top: 0;
2021-06-19 17:37:12 -04:00
&:after {
content: "ESC";
2021-07-05 18:20:55 -04:00
margin-top: 4px;
2021-06-19 17:37:12 -04:00
display: flex;
text-align: center;
align-content: center;
justify-content: center;
position: relative;
color: var(--foreground);
2021-07-05 18:20:55 -04:00
width: 40px;
opacity: 0.5;
font-size: 0.75em;
2021-06-19 17:37:12 -04:00
}
2021-07-05 18:20:55 -04:00
.closeButton {
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
height: 40px;
width: 40px;
border: 3px solid var(--tertiary-background);
cursor: pointer;
visibility: visible;
2021-07-05 18:20:55 -04:00
svg {
color: var(--secondary-foreground);
}
2021-07-06 07:16:29 -04:00
&:hover {
background: var(--secondary-header);
}
2021-07-05 18:20:55 -04:00
&:active {
transform: translateY(2px);
}
}
2021-06-19 17:37:12 -04:00
> div {
display: inline;
}
2021-08-02 10:21:16 -04:00
}
section {
margin-bottom: 1em;
}
2021-06-19 17:37:12 -04:00
}
.loader {
> div {
margin: auto;
}
}