mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-14 11:26:24 +00:00
227610c84a
commita5b63aed93
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Sun Oct 30 10:46:05 2022 -0700 Small fixes commitd64adfc2bf
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Sun Oct 30 06:02:06 2022 -0700 wip work on federation settings commitca35d6b3d2
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Sun Oct 30 04:05:33 2022 -0700 Refactor confirmation Dialogs commitc660a5b0d1
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Sat Oct 29 13:36:59 2022 -0700 refactor login (clean separation robot/info. Style navbar. commitb9dc7f7c95
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Fri Oct 28 09:54:38 2022 -0700 Add size slider and settings widget commit20b2b3dcd6
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Fri Oct 28 05:41:48 2022 -0700 Add show more and Dialogs commitda8b70091b
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Thu Oct 27 16:26:07 2022 -0700 Add sliding pages commit6dd90aa118
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Thu Oct 27 06:34:58 2022 -0700 Add settings forms commitd3d0f3ee1a
Author: Reckless_Satoshi <reckless.satoshi@protonmail.com> Date: Wed Oct 26 04:16:06 2022 -0700 Refactor utils
231 lines
3.9 KiB
CSS
231 lines
3.9 KiB
CSS
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto';
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background: rgb(0, 0, 0);
|
|
}
|
|
.loaderSpinner {
|
|
color: #90caf9;
|
|
}
|
|
.loaderSpinner:before {
|
|
background: rgb(0, 0, 0);
|
|
}
|
|
.loaderSpinner:after {
|
|
background: rgb(0, 0, 0);
|
|
}
|
|
.slider {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
#main {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.alertUnsafe {
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.hideAlertButton {
|
|
position: fixed;
|
|
}
|
|
|
|
.clickTrough {
|
|
height: 50px;
|
|
pointer-events: none;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* No arrows on numeric inputs */
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
input[type='number'] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
.amboss {
|
|
fill: url(#SVGID_1_);
|
|
}
|
|
|
|
.advancedSwitch {
|
|
width: 20;
|
|
left: 50%;
|
|
transform: translate(62px, 0px);
|
|
margin-right: 0;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.bottomItem {
|
|
margin: 0;
|
|
top: -14px;
|
|
}
|
|
|
|
.profileNickname {
|
|
margin: 0;
|
|
left: -16px;
|
|
}
|
|
|
|
.newAvatar {
|
|
border-radius: 50%;
|
|
border: 2px solid #555;
|
|
filter: drop-shadow(1px 1px 1px #000000);
|
|
}
|
|
|
|
.profileAvatar {
|
|
border: 0.5px solid #555;
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
|
left: 35px;
|
|
}
|
|
|
|
.smallAvatar {
|
|
border: 0.5px solid #555;
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
|
}
|
|
|
|
.flippedSmallAvatar {
|
|
transform: scaleX(-1);
|
|
border: 0.3px solid #555;
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
|
}
|
|
|
|
.navBarAvatar img {
|
|
transform: scaleX(-1);
|
|
border: 1.3px solid #1976d2;
|
|
-webkit-filter: grayscale(100%);
|
|
filter: grayscale(100%) brightness(150%) contrast(150%) drop-shadow(0.7px 0.7px 0.7px #000000);
|
|
}
|
|
|
|
.navBarAvatar:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
border-radius: 50%;
|
|
border: 2.4px solid #1976d2;
|
|
box-shadow: inset 0px 0px 35px rgb(255, 255, 255);
|
|
}
|
|
|
|
.navBarAvatarDark img {
|
|
transform: scaleX(-1);
|
|
border: 1.3px solid #90caf9;
|
|
-webkit-filter: grayscale(100%);
|
|
filter: grayscale(100%) brightness(100%) contrast(150%) drop-shadow(0.7px 0.7px 0.7px #000000);
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.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);
|
|
}
|
|
|
|
.MuiDataGrid-columnHeaders + div {
|
|
width: auto !important;
|
|
}
|
|
|
|
@media (max-height: 725px) and (max-width: 925px) {
|
|
.appCenter:has(> div.MuiGrid-root:first-child, > div.MuiBox-root:first-child) {
|
|
overflow-y: auto;
|
|
margin-top: 1em;
|
|
padding-bottom: 3em;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@keyframes animatedBackground {
|
|
from {
|
|
background-position: 0 0;
|
|
}
|
|
to {
|
|
background-position: 0 80px;
|
|
}
|
|
}
|
|
|
|
.loadingAvatar {
|
|
background-size: 100%;
|
|
border-radius: 50%;
|
|
border: 0.3px solid #555;
|
|
filter: dropShadow(0.5px 0.5px 0.5px #000000);
|
|
background-image: linear-gradient(
|
|
0deg,
|
|
#ffffffab 0%,
|
|
#cfcfcfc2 40%,
|
|
#a3a3a3cc 60%,
|
|
#ffffffab 100%
|
|
);
|
|
background-position: 0px 0px;
|
|
background-repeat: repeat;
|
|
animation: animatedBackground 5s linear infinite;
|
|
}
|
|
|
|
.loadingAvatarDark {
|
|
background-size: 100%;
|
|
border-radius: 50%;
|
|
border: 0.3px solid #555;
|
|
filter: dropShadow(0.5px 0.5px 0.5px #000000);
|
|
background-image: linear-gradient(
|
|
0deg,
|
|
#6e6e6ec2 0%,
|
|
#14141479 40%,
|
|
#14141479 60%,
|
|
#6e6e6ec2 100%
|
|
);
|
|
background-position: 0px 0px;
|
|
background-repeat: repeat;
|
|
animation: animatedBackground 5s linear infinite;
|
|
}
|