2022-01-01 23:58:44 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-03-25 12:27:27 +00:00
|
|
|
font-family: 'Roboto';
|
2022-01-01 23:58:44 +00:00
|
|
|
}
|
|
|
|
|
2022-09-20 14:21:19 +00:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
background: rgb(0, 0, 0);
|
|
|
|
}
|
|
|
|
.loaderSpinner {
|
|
|
|
color: #90caf9;
|
|
|
|
}
|
2022-09-20 17:39:49 +00:00
|
|
|
.loaderSpinner:before {
|
2022-09-20 14:21:19 +00:00
|
|
|
background: rgb(0, 0, 0);
|
|
|
|
}
|
2022-09-20 17:39:49 +00:00
|
|
|
.loaderSpinner:after {
|
2022-09-20 14:21:19 +00:00
|
|
|
background: rgb(0, 0, 0);
|
|
|
|
}
|
2022-09-20 17:39:49 +00:00
|
|
|
.slider {
|
2022-09-20 14:21:19 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-01 23:58:44 +00:00
|
|
|
#main {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-01-02 21:41:22 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 10:07:29 +00:00
|
|
|
@keyframes spin {
|
2022-09-20 17:39:49 +00:00
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2022-03-25 10:07:29 +00:00
|
|
|
}
|
|
|
|
|
2023-03-02 14:20:30 +00:00
|
|
|
.unsafeAlert {
|
2022-03-19 16:33:01 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 9999;
|
|
|
|
}
|
|
|
|
|
2022-03-24 17:29:51 +00:00
|
|
|
/* No arrows on numeric inputs */
|
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2022-09-20 17:39:49 +00:00
|
|
|
input[type='number'] {
|
2022-03-24 17:29:51 +00:00
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
2022-09-20 17:39:49 +00:00
|
|
|
.amboss {
|
|
|
|
fill: url(#SVGID_1_);
|
2022-03-18 21:21:13 +00:00
|
|
|
}
|
|
|
|
|
2022-09-20 17:39:49 +00:00
|
|
|
.advancedSwitch {
|
|
|
|
width: 20;
|
2022-03-15 18:20:57 +00:00
|
|
|
left: 50%;
|
2022-03-18 21:21:13 +00:00
|
|
|
transform: translate(62px, 0px);
|
2022-03-15 18:20:57 +00:00
|
|
|
margin-right: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2022-03-15 23:33:58 +00:00
|
|
|
|
2022-01-14 16:21:42 +00:00
|
|
|
.bottomItem {
|
|
|
|
margin: 0;
|
|
|
|
top: -14px;
|
|
|
|
}
|
|
|
|
|
2022-01-29 19:51:26 +00:00
|
|
|
.profileNickname {
|
|
|
|
margin: 0;
|
2022-01-30 15:18:03 +00:00
|
|
|
left: -16px;
|
2022-01-29 19:51:26 +00:00
|
|
|
}
|
|
|
|
|
2022-08-19 22:26:14 +00:00
|
|
|
.newAvatar {
|
2022-09-20 17:39:49 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid #555;
|
2022-08-19 22:26:14 +00:00
|
|
|
filter: drop-shadow(1px 1px 1px #000000);
|
|
|
|
}
|
|
|
|
|
2022-01-30 15:18:03 +00:00
|
|
|
.profileAvatar {
|
2022-09-20 17:39:49 +00:00
|
|
|
border: 0.5px solid #555;
|
2022-01-29 19:51:26 +00:00
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
|
|
|
left: 35px;
|
|
|
|
}
|
|
|
|
|
2022-01-30 15:18:03 +00:00
|
|
|
.smallAvatar {
|
2022-09-20 17:39:49 +00:00
|
|
|
border: 0.5px solid #555;
|
2022-01-29 19:51:26 +00:00
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
2022-01-30 15:18:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flippedSmallAvatar {
|
|
|
|
transform: scaleX(-1);
|
2022-09-20 17:39:49 +00:00
|
|
|
border: 0.3px solid #555;
|
2022-01-30 15:18:03 +00:00
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
2022-02-01 19:43:33 +00:00
|
|
|
}
|
|
|
|
|
2022-10-30 19:13:01 +00:00
|
|
|
.navBarAvatar img {
|
2022-02-01 19:43:33 +00:00
|
|
|
transform: scaleX(-1);
|
2022-09-20 17:39:49 +00:00
|
|
|
border: 1.3px solid #1976d2;
|
2022-02-04 01:37:24 +00:00
|
|
|
-webkit-filter: grayscale(100%);
|
2022-09-20 17:39:49 +00:00
|
|
|
filter: grayscale(100%) brightness(150%) contrast(150%) drop-shadow(0.7px 0.7px 0.7px #000000);
|
2022-02-01 19:43:33 +00:00
|
|
|
}
|
|
|
|
|
2022-10-30 19:13:01 +00:00
|
|
|
.navBarAvatar:after {
|
2022-02-02 09:29:05 +00:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
2022-09-20 17:39:49 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2.4px solid #1976d2;
|
2022-02-02 09:29:05 +00:00
|
|
|
box-shadow: inset 0px 0px 35px rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
2022-10-30 19:13:01 +00:00
|
|
|
.navBarAvatarDark img {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
border: 1.3px solid #90caf9;
|
|
|
|
-webkit-filter: grayscale(100%);
|
2023-05-12 11:04:41 +00:00
|
|
|
filter: grayscale(100%) brightness(50%) contrast(180%) drop-shadow(0.7px 0.7px 0.7px #000000);
|
2022-10-30 19:13:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navBarAvatarDark:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2.4px solid #90caf9;
|
|
|
|
box-shadow: inset 0px 0px 35px rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
2022-09-20 17:39:49 +00:00
|
|
|
.MuiButton-textInherit {
|
|
|
|
color: '#111111';
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 6px; /* for vertical scrollbars */
|
|
|
|
height: 6px; /* for horizontal scrollbars */
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
2022-05-07 21:21:12 +00:00
|
|
|
|
2022-09-07 19:17:55 +00:00
|
|
|
.MuiDataGrid-columnHeaders + div {
|
|
|
|
width: auto !important;
|
|
|
|
}
|
2022-09-20 17:39:49 +00:00
|
|
|
|
2022-09-28 13:49:07 +00:00
|
|
|
@media (max-height: 725px) and (max-width: 925px) {
|
2022-09-20 17:39:49 +00:00
|
|
|
.appCenter:has(> div.MuiGrid-root:first-child, > div.MuiBox-root:first-child) {
|
2022-09-27 15:52:00 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
margin-top: 1em;
|
|
|
|
padding-bottom: 3em;
|
2022-05-09 22:09:19 +00:00
|
|
|
height: 100%;
|
2022-09-27 15:52:00 +00:00
|
|
|
width: 100%;
|
2022-05-09 22:09:19 +00:00
|
|
|
}
|
2022-09-20 17:39:49 +00:00
|
|
|
}
|
2022-10-06 18:35:32 +00:00
|
|
|
|
|
|
|
.loadingAvatar {
|
|
|
|
background-size: 100%;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 0.3px solid #555;
|
|
|
|
filter: dropShadow(0.5px 0.5px 0.5px #000000);
|
|
|
|
}
|
2023-02-21 17:22:48 +00:00
|
|
|
|
|
|
|
.generatingAvatar {
|
|
|
|
background-size: 100%;
|
|
|
|
border-radius: 50%;
|
|
|
|
outline: 2px solid #555;
|
|
|
|
outline-offset: -2px;
|
|
|
|
filter: dropShadow(1px 1px 1px #000000);
|
|
|
|
}
|