2020-12-24 21:22:28 +00:00
|
|
|
@import "node_modules/a17t/dist/a17t.css";
|
|
|
|
@import "node_modules/icons.css/dist/icons.css";
|
2020-12-20 22:49:54 +00:00
|
|
|
@import "modal.css";
|
2020-12-24 21:22:28 +00:00
|
|
|
@import "dark.css";
|
|
|
|
|
|
|
|
.light-theme {
|
|
|
|
--settings-section-button-filter: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body {
|
|
|
|
background-color: #101010;
|
|
|
|
}
|
2020-12-20 22:49:54 +00:00
|
|
|
|
2020-12-16 18:25:16 +00:00
|
|
|
.pageContainer {
|
|
|
|
margin: 5% 20% 5% 20%;
|
|
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
|
|
.pageContainer {
|
|
|
|
margin: 2%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.contactBox {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
#container {
|
|
|
|
margin-top: 5%;
|
|
|
|
margin-bottom: 5%;
|
|
|
|
}
|
|
|
|
.tabText {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
.mb-1 {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
.mb-half {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
.pb-1 {
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
}
|
|
|
|
.pl-1 {
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
.mr-1 {
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
.ml-1 {
|
|
|
|
margin-left: 1rem;
|
|
|
|
}
|
|
|
|
.mb-2 {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
2020-12-23 01:34:22 +00:00
|
|
|
.mt-1 {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
2020-12-16 18:25:16 +00:00
|
|
|
.mt-half {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
}
|
|
|
|
.inv-codearea {
|
|
|
|
/*width: 40%;*/
|
|
|
|
}
|
|
|
|
.al {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.inline-block {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.ar {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.monospace {
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
.mt-half {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
}
|
|
|
|
.table-header {
|
|
|
|
padding-left: 0.5rem;
|
|
|
|
padding-bottom: 0.2rem;
|
|
|
|
}
|
|
|
|
.inv {
|
2020-12-24 21:22:28 +00:00
|
|
|
overflow: visible;
|
2020-12-16 18:25:16 +00:00
|
|
|
}
|
|
|
|
.inv-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.button-input {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.inv-row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: top;
|
|
|
|
}
|
|
|
|
.ib {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.inv-profileselect {
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
.inv-table {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
.no-lp {
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
|
|
|
.block { display: block; }
|
|
|
|
.hiding {
|
|
|
|
animation: slide-out 0.1s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;
|
|
|
|
}
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.visible {
|
|
|
|
display: block;
|
|
|
|
/*animation: fade-in 0.2s cubic-bezier(0.550, 0.055, 0.675, 0.190) forwards;*/
|
|
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes slide-out {
|
|
|
|
from {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.toggle-details {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.rotated {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
-webkit-transition: all 0.3s cubic-bezier(0,.89,.27,.92);
|
|
|
|
-moz-transition: all 0.3s cubic-bezier(0,.89,.27,.92);
|
|
|
|
-o-transition: all 0.3s cubic-bezier(0,.89,.27,.92);
|
|
|
|
transition: all 0.3s cubic-bezier(0,.89,.27,.92); /* easeInOutQuart */
|
|
|
|
}
|
|
|
|
|
|
|
|
.not-rotated {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
-webkit-transition: all 0.3s cubic-bezier(0,.89,.27,.92);
|
|
|
|
-moz-transition: all 0.3s cubic-bezier(0,.89,.27,.92);
|
|
|
|
-o-transition: all 0.3s cubic-bezier(0,.89,.27,.92);
|
|
|
|
transition: all 0.3s cubic-bezier(0,.89,.27,.92); /* easeInOutQuart */
|
|
|
|
}
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.col {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0.5rem;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
.row {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.col {
|
|
|
|
flex: 45%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.input {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.submit {
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-lg {
|
|
|
|
height: 3rem;
|
|
|
|
}
|
|
|
|
.full-width {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.unfocused {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.fr {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.stealth-input-hidden {
|
|
|
|
border-style: none;
|
|
|
|
--fallback-box-shadow: none;
|
|
|
|
--field-hover-box-shadow: none;
|
|
|
|
--field-focus-box-shadow: none;
|
|
|
|
padding-top: 0.1rem;
|
|
|
|
padding-bottom: 0.1rem;
|
|
|
|
}
|
|
|
|
.stealth-input {
|
|
|
|
font-size: 1rem;
|
|
|
|
padding-top: 0.1rem;
|
|
|
|
padding-bottom: 0.1rem;
|
|
|
|
margin-left: 0.5rem;
|
|
|
|
margin-right: 1rem;
|
|
|
|
max-width: 50%;
|
|
|
|
|
|
|
|
}
|
|
|
|
.settings-section-button {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 2.5rem;
|
2020-12-24 21:22:28 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
.settings-section-button:hover {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 2.5rem;
|
|
|
|
background-color: var(--color-neutral-normal-fill);
|
|
|
|
filter: brightness(var(--settings-section-button-filter)) !important;
|
|
|
|
|
|
|
|
}
|
|
|
|
.settings-section-button:focus {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 2.5rem;
|
|
|
|
background-color: var(--color-neutral-normal-fill);
|
|
|
|
filter: brightness(var(--settings-section-button-filter)) !important;
|
2020-12-16 18:25:16 +00:00
|
|
|
}
|
|
|
|
.settings-section-button.selected {
|
2020-12-24 21:22:28 +00:00
|
|
|
background-color: var(--color-neutral-normal-fill);
|
|
|
|
--button-filter-brightness: var(--settings-section-button-filter);
|
|
|
|
filter: brightness(var(--settings-section-button-filter)) !important;
|
2020-12-16 18:25:16 +00:00
|
|
|
}
|
|
|
|
.text-critical {
|
|
|
|
color: var(--color-critical-normal-content);
|
|
|
|
}
|
|
|
|
.aside.small {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
padding: 0.8rem;
|
|
|
|
}
|
|
|
|
.setting {
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
}
|
|
|
|
.support.large {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
2020-12-23 01:34:22 +00:00
|
|
|
.inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fw-group {
|
|
|
|
display: block;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.textarea {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
2020-12-24 21:22:28 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
color: inherit;
|
|
|
|
}
|