1624 lines
32 KiB
CSS
1624 lines
32 KiB
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
:root {
|
|
font-size: clamp(1rem, 1.2vmax, 1.2rem);
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
color: rgba(var(--text-color), 1);
|
|
background: rgba(var(--background-color), 1);
|
|
}
|
|
body,
|
|
body * {
|
|
--accent-color: #2672ff;
|
|
--accent-color--light: rgba(38, 114, 255, 0.06);
|
|
--text-color: 36, 36, 36;
|
|
--background-color: 247, 250, 255;
|
|
--foreground-color: rgb(250, 252, 255);
|
|
--danger-color: rgb(255, 75, 75);
|
|
--green: #1cad59;
|
|
--yellow: #f3a600;
|
|
--loan-color: rgb(255, 196, 141);
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
body[data-theme=dark],
|
|
body[data-theme=dark] * {
|
|
--accent-color: rgb(170, 190, 255);
|
|
--accent-color--light: rgba(231, 239, 255, 0.06);
|
|
--text-color: 230, 230, 230;
|
|
--text-color-light: 170, 170, 170;
|
|
--background-color: 10, 10, 10;
|
|
--foreground-color: rgb(20, 20, 20);
|
|
--danger-color: rgb(255, 106, 106);
|
|
--green: #00e676;
|
|
--yellow: #ffd13a;
|
|
--loan-color: rgb(255, 201, 170);
|
|
}
|
|
|
|
p,
|
|
strong {
|
|
font-size: 0.9rem;
|
|
max-width: 70ch;
|
|
line-height: 1.7;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
p:not(:last-of-type),
|
|
strong:not(:last-of-type) {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
a:where([class]) {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
a:where([class]):focus-visible {
|
|
-webkit-box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
|
|
box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
button,
|
|
.button {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
position: relative;
|
|
display: -webkit-inline-box;
|
|
display: -ms-inline-flexbox;
|
|
display: inline-flex;
|
|
border: none;
|
|
background-color: transparent;
|
|
overflow: hidden;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
-webkit-transition: -webkit-transform 0.3s;
|
|
transition: -webkit-transform 0.3s;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.button {
|
|
padding: 0.6rem 1rem;
|
|
border-radius: 0.3rem;
|
|
font-weight: 500;
|
|
font-size: 0.8rem;
|
|
background-color: rgba(var(--text-color), 0.06);
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
a:-webkit-any-link:focus-visible {
|
|
outline: rgba(var(--text-color), 1) 0.1rem solid;
|
|
}
|
|
|
|
a:-moz-any-link:focus-visible {
|
|
outline: rgba(var(--text-color), 1) 0.1rem solid;
|
|
}
|
|
|
|
a:any-link:focus-visible {
|
|
outline: rgba(var(--text-color), 1) 0.1rem solid;
|
|
}
|
|
|
|
sm-button {
|
|
--border-radius: 0.5rem;
|
|
--padding: 0.7rem 1rem;
|
|
}
|
|
sm-button[variant=primary] .icon {
|
|
fill: rgba(var(--background-color), 1);
|
|
}
|
|
sm-button[disabled] .icon {
|
|
fill: rgba(var(--text-color), 0.6);
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.flex {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.hide {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.hide-completely {
|
|
display: none !important;
|
|
}
|
|
|
|
.overflow-ellipsis {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.breakable {
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
-ms-word-break: break-all;
|
|
word-break: break-word;
|
|
-ms-hyphens: auto;
|
|
-webkit-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|
|
|
|
.full-bleed {
|
|
grid-column: 1/4;
|
|
}
|
|
|
|
.h1 {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.h3 {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.h4 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.h5 {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.uppercase {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.flex {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.grid-3 {
|
|
grid-template-columns: 1fr auto auto;
|
|
}
|
|
|
|
.flow-column {
|
|
grid-auto-flow: column;
|
|
}
|
|
|
|
.gap-0-5 {
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.gap-1 {
|
|
gap: 1rem;
|
|
}
|
|
|
|
.gap-1-5 {
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.gap-2 {
|
|
gap: 2rem;
|
|
}
|
|
|
|
.gap-3 {
|
|
gap: 3rem;
|
|
}
|
|
|
|
.text-align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.align-start {
|
|
-webkit-box-align: start;
|
|
-ms-flex-align: start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.align-center {
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.justify-start {
|
|
-webkit-box-pack: start;
|
|
-ms-flex-pack: start;
|
|
justify-content: start;
|
|
}
|
|
|
|
.justify-center {
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-right {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.align-self-center {
|
|
-ms-flex-item-align: center;
|
|
align-self: center;
|
|
}
|
|
|
|
.justify-self-center {
|
|
justify-self: center;
|
|
}
|
|
|
|
.justify-self-start {
|
|
justify-self: start;
|
|
}
|
|
|
|
.justify-self-end {
|
|
justify-self: end;
|
|
}
|
|
|
|
.direction-column {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.space-between {
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.stretch {
|
|
-webkit-box-pack: stretch;
|
|
-ms-flex-pack: stretch;
|
|
justify-content: stretch;
|
|
justify-items: stretch;
|
|
}
|
|
.stretch > * {
|
|
width: 100%;
|
|
}
|
|
|
|
.interact {
|
|
position: relative;
|
|
cursor: pointer;
|
|
-webkit-transition: -webkit-transform 0.3s;
|
|
transition: -webkit-transform 0.3s;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
.observe-empty-state:empty {
|
|
display: none;
|
|
}
|
|
|
|
.observe-empty-state:not(:empty) ~ .empty-state {
|
|
display: none;
|
|
}
|
|
|
|
.icon {
|
|
width: 1.2rem;
|
|
height: 1.2rem;
|
|
fill: rgba(var(--text-color), 0.8);
|
|
}
|
|
|
|
.button__icon {
|
|
height: 1.2rem;
|
|
width: 1.2rem;
|
|
}
|
|
.button__icon--left {
|
|
margin-right: 0.5rem;
|
|
}
|
|
.button__icon--right {
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.icon-button {
|
|
padding: 0.6rem;
|
|
border-radius: 0.8rem;
|
|
background-color: var(--accent-color--light);
|
|
height: -webkit-max-content;
|
|
height: -moz-max-content;
|
|
height: max-content;
|
|
}
|
|
.icon-button .icon {
|
|
fill: var(--accent-color);
|
|
}
|
|
|
|
#confirmation_popup {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
#confirmation_popup h4 {
|
|
font-weight: 500;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
#confirmation_popup sm-button {
|
|
margin: 0;
|
|
}
|
|
#confirmation_popup .flex {
|
|
padding: 0;
|
|
margin-top: 1rem;
|
|
}
|
|
#confirmation_popup .flex sm-button:first-of-type {
|
|
margin-right: 0.6rem;
|
|
margin-left: auto;
|
|
}
|
|
|
|
button:active,
|
|
.button:active,
|
|
.interact:active,
|
|
.nav-item:active {
|
|
-webkit-transform: scale(0.96);
|
|
transform: scale(0.96);
|
|
}
|
|
|
|
#main_page {
|
|
padding: 1.5rem;
|
|
}
|
|
#main_page > section:nth-of-type(1) {
|
|
-ms-flex-line-pack: start;
|
|
align-content: flex-start;
|
|
}
|
|
|
|
.logo {
|
|
display: grid;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 0 0.3rem;
|
|
margin-right: 1rem;
|
|
}
|
|
.logo h4 {
|
|
text-transform: capitalize;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
}
|
|
.logo .main-logo {
|
|
height: 1.4rem;
|
|
width: 1.4rem;
|
|
fill: rgba(var(--text-color), 1);
|
|
stroke: none;
|
|
}
|
|
|
|
details summary {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
details[open] > summary {
|
|
margin-bottom: 1rem;
|
|
}
|
|
details[open] > summary .icon {
|
|
-webkit-transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.card {
|
|
padding: 1rem;
|
|
border-radius: 0.5rem;
|
|
background-color: var(--accent-color--light);
|
|
}
|
|
|
|
.warning {
|
|
background-color: khaki;
|
|
color: rgba(0, 0, 0, 0.7);
|
|
padding: 1rem;
|
|
border-radius: 0.5rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.page-layout {
|
|
display: grid;
|
|
grid-template-columns: 1.5rem minmax(0, 1fr) 1.5rem;
|
|
}
|
|
.page-layout > * {
|
|
grid-column: 2/3;
|
|
}
|
|
|
|
.page {
|
|
height: 100%;
|
|
}
|
|
|
|
#sign_in,
|
|
#sign_up {
|
|
grid-template-rows: auto 1fr;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
#sign_in section,
|
|
#sign_up section {
|
|
margin-top: -6rem;
|
|
justify-self: center;
|
|
width: min(24rem, 100%);
|
|
}
|
|
#sign_in sm-form,
|
|
#sign_up sm-form {
|
|
margin: 2rem 0;
|
|
}
|
|
#sign_in header,
|
|
#sign_up header {
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
#sign_up sm-copy {
|
|
font-size: 0.9rem;
|
|
--button-border-radius: 0.5rem;
|
|
}
|
|
#sign_up .h2 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
#sign_up .card {
|
|
margin: 1.5rem 0;
|
|
}
|
|
#sign_up h5 {
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
#sign_up .warning {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
#loading {
|
|
place-content: center;
|
|
text-align: center;
|
|
}
|
|
#loading sm-spinner {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
#home {
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
grid-template-areas: "main-header" "subpages" "main-nav";
|
|
}
|
|
|
|
#main_nav {
|
|
grid-area: main-nav;
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.nav-item {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
padding: 0.8rem;
|
|
border-radius: 0.5rem;
|
|
color: inherit;
|
|
-webkit-transition: -webkit-transform 1s;
|
|
transition: -webkit-transform 1s;
|
|
transition: transform 1s;
|
|
transition: transform 1s, -webkit-transform 1s;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.nav-item--active .icon {
|
|
fill: var(--accent-color);
|
|
}
|
|
.nav-item--active .nav-item__title {
|
|
color: var(--accent-color);
|
|
}
|
|
.nav-item.has-notification::after {
|
|
left: 0;
|
|
top: 0;
|
|
margin: 0.7rem 0.8rem;
|
|
content: "";
|
|
position: absolute;
|
|
padding: 0.3rem;
|
|
border-radius: 50%;
|
|
background-color: var(--danger-color);
|
|
}
|
|
|
|
#main_header {
|
|
grid-area: main-header;
|
|
padding: 1.5rem;
|
|
display: grid;
|
|
gap: 1rem;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
grid-template-columns: 1fr auto auto;
|
|
}
|
|
|
|
#subpage_container {
|
|
grid-area: subpages;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#dashboard {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
padding: 0 1.5rem;
|
|
}
|
|
|
|
#quick_actions_container {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
gap: 1.5rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.quick-action {
|
|
color: inherit;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.quick-action.disabled {
|
|
pointer-events: none;
|
|
opacity: 0.6;
|
|
-webkit-filter: grayscale(100%);
|
|
filter: grayscale(100%);
|
|
}
|
|
.quick-action__icon {
|
|
padding: 1rem;
|
|
border-radius: 1rem;
|
|
background-color: var(--accent-color--light);
|
|
margin-bottom: 0.8rem;
|
|
}
|
|
.quick-action__icon .icon {
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
fill: var(--accent-color);
|
|
}
|
|
.quick-action__title {
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
strip-select {
|
|
--gap: 0;
|
|
background-color: rgba(var(--text-color), 0.06);
|
|
border-radius: 0.3rem;
|
|
}
|
|
|
|
.empty-state {
|
|
padding: 0 1.5rem;
|
|
margin: 3rem 0;
|
|
justify-items: center;
|
|
text-align: center;
|
|
}
|
|
.empty-state .empty-state__icon {
|
|
-webkit-filter: drop-shadow(0 0.5rem 0.3rem rgba(0, 0, 0, 0.1));
|
|
filter: drop-shadow(0 0.5rem 0.3rem rgba(0, 0, 0, 0.1));
|
|
height: 12rem;
|
|
width: 12rem;
|
|
padding: 3rem;
|
|
border-radius: 50%;
|
|
margin-bottom: 1.5rem;
|
|
background-color: rgba(var(--text-color), 0.06);
|
|
}
|
|
|
|
strip-option {
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
letter-spacing: 0.05em;
|
|
font-size: 0.7rem;
|
|
--border-radius: 0;
|
|
--active-option-color: rgba(var(--background-color), 1);
|
|
--active-option-background-color: var(--accent-color);
|
|
}
|
|
strip-option:first-of-type {
|
|
--border-radius: 0.3rem 0 0 0.3rem;
|
|
}
|
|
strip-option:last-of-type {
|
|
--border-radius: 0 0.3rem 0.3rem 0;
|
|
}
|
|
|
|
.activity-card {
|
|
display: grid;
|
|
padding: 1rem 0;
|
|
gap: 0.4rem 1rem;
|
|
border-radius: 0.5rem;
|
|
-webkit-box-align: start;
|
|
-ms-flex-align: start;
|
|
align-items: flex-start;
|
|
color: inherit;
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
}
|
|
.activity-card__icon {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-line-pack: center;
|
|
align-content: center;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
padding: 0.5rem;
|
|
border-radius: 0.8rem;
|
|
background-color: var(--accent-color--light);
|
|
}
|
|
.activity-card__icon .icon {
|
|
height: 1.3rem;
|
|
width: 1.3rem;
|
|
fill: var(--accent-color);
|
|
}
|
|
.activity-card__title {
|
|
font-size: 0.95rem;
|
|
font-weight: 500;
|
|
}
|
|
.activity-card__title::first-letter {
|
|
text-transform: uppercase;
|
|
}
|
|
.activity-card__time {
|
|
font-size: 0.8rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
|
|
#notifications,
|
|
#history {
|
|
padding-bottom: 5rem;
|
|
}
|
|
#notifications .activity-card,
|
|
#history .activity-card {
|
|
padding: 1rem 1.5rem;
|
|
}
|
|
|
|
#user_accounts:not(:empty) {
|
|
margin-top: 1.5rem;
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
padding-bottom: 5rem;
|
|
}
|
|
|
|
.activity-card--account {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
gap: 1.5rem;
|
|
padding: 1rem 1.5rem;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
border: solid thin rgba(var(--text-color), 0.2);
|
|
}
|
|
.activity-card--account .activity-card__icon {
|
|
padding: 0;
|
|
background-color: transparent;
|
|
}
|
|
.activity-card--account .activity-card__type {
|
|
text-transform: capitalize;
|
|
font-size: 0.9rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
font-weight: 500;
|
|
}
|
|
.activity-card--account .activity-card__amount {
|
|
margin-top: 0.3rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.activity-card--request,
|
|
.activity-card--pending {
|
|
grid-template-areas: "icon . amount" "icon time .";
|
|
}
|
|
.activity-card--request .activity-card__icon,
|
|
.activity-card--pending .activity-card__icon {
|
|
grid-area: icon;
|
|
}
|
|
.activity-card--request .activity-card__time,
|
|
.activity-card--pending .activity-card__time {
|
|
grid-area: time;
|
|
}
|
|
.activity-card--request .activity-card__amount,
|
|
.activity-card--pending .activity-card__amount {
|
|
grid-area: amount;
|
|
text-align: end;
|
|
}
|
|
.activity-card--request sm-spinner,
|
|
.activity-card--pending sm-spinner {
|
|
--height: 1rem;
|
|
--width: 1rem;
|
|
}
|
|
|
|
.activity-card--admin {
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
grid-template-areas: "icon . button" "icon time button";
|
|
}
|
|
.activity-card--admin .activity-card__icon {
|
|
grid-area: icon;
|
|
}
|
|
.activity-card--admin .activity-card__time {
|
|
grid-area: time;
|
|
}
|
|
.activity-card--admin .activity-card__action {
|
|
grid-area: button;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
background-color: var(--accent-color--light);
|
|
color: var(--accent-color);
|
|
-webkit-box-pack: end;
|
|
-ms-flex-pack: end;
|
|
justify-content: flex-end;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.activity-card--admin sm-spinner {
|
|
--height: 1rem;
|
|
--width: 1rem;
|
|
}
|
|
|
|
#pending_transaction:not(:empty) {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.activity-card--pending:not(:empty) {
|
|
padding: 1rem;
|
|
margin-top: 0.8rem;
|
|
border: solid 0.1rem var(--accent-color);
|
|
}
|
|
.activity-card--pending:not(:empty) .activity-card__description {
|
|
font-size: 0.8rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
grid-column: span 2;
|
|
}
|
|
|
|
.status-tag:not(:empty) {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
font-size: 0.7rem;
|
|
border-radius: 0.2rem;
|
|
padding: 0.3rem 0.4rem;
|
|
font-weight: 500;
|
|
color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
.status-tag:not(:empty) .icon {
|
|
margin-right: 0.3rem;
|
|
}
|
|
.status-tag:not(:empty).active {
|
|
color: var(--green);
|
|
background-color: rgba(0, 230, 118, 0.1);
|
|
}
|
|
.status-tag:not(:empty).closed {
|
|
color: rgba(var(--text-color), 0.7);
|
|
background-color: rgba(var(--text-color), 0.06);
|
|
}
|
|
.status-tag:not(:empty).success {
|
|
color: var(--green);
|
|
background-color: rgba(0, 230, 118, 0.1);
|
|
}
|
|
.status-tag:not(:empty).success .icon {
|
|
fill: var(--green);
|
|
}
|
|
.status-tag:not(:empty).failed {
|
|
color: var(--danger-color);
|
|
background-color: rgba(255, 75, 75, 0.1);
|
|
}
|
|
.status-tag:not(:empty).failed .icon {
|
|
fill: var(--danger-color);
|
|
}
|
|
.status-tag:not(:empty).pending {
|
|
color: var(--yellow);
|
|
background-color: rgba(255, 252, 75, 0.1);
|
|
}
|
|
.status-tag:not(:empty).pending .icon {
|
|
fill: var(--yellow);
|
|
}
|
|
|
|
.activity-card--response {
|
|
grid-template-areas: "icon . time" "icon description description";
|
|
}
|
|
.activity-card--response .activity-card__icon {
|
|
grid-area: icon;
|
|
}
|
|
.activity-card--response .activity-card__description {
|
|
grid-area: description;
|
|
font-size: 0.8rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.activity-card--response .activity-card__time {
|
|
grid-area: time;
|
|
}
|
|
|
|
.success .icon {
|
|
fill: var(--green);
|
|
}
|
|
|
|
.failed .icon {
|
|
fill: var(--danger-color);
|
|
}
|
|
|
|
.pending .icon {
|
|
fill: var(--yellow);
|
|
}
|
|
|
|
#user_section {
|
|
display: grid;
|
|
-ms-flex-line-pack: start;
|
|
align-content: flex-start;
|
|
gap: 2rem;
|
|
overflow-y: auto;
|
|
padding: 1.5rem;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
#user_section h4 {
|
|
height: 1.8rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#user_section__header {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: inherit;
|
|
padding-top: 1.5rem;
|
|
z-index: 2;
|
|
}
|
|
|
|
#refresh_balance_button.loading {
|
|
padding: 0.5rem;
|
|
pointer-events: none;
|
|
background-color: transparent;
|
|
}
|
|
#refresh_balance_button sm-spinner {
|
|
--height: 1rem;
|
|
--width: 1rem;
|
|
}
|
|
|
|
#account_chart_container {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
height: 15rem;
|
|
padding-bottom: 3rem;
|
|
margin: 1.5rem 0;
|
|
}
|
|
|
|
#chart_legend {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.legend {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
font-size: 0.8rem;
|
|
margin-right: 1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.legend::before {
|
|
content: "";
|
|
margin-right: 0.5rem;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-radius: 25%;
|
|
}
|
|
.legend:nth-of-type(1)::before {
|
|
background-color: var(--green);
|
|
}
|
|
.legend:nth-of-type(2)::before {
|
|
background-color: var(--loan-color);
|
|
}
|
|
|
|
.balance-card {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-areas: "icon ." "icon .";
|
|
padding: 1rem 0;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
gap: 0.3rem 1rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
.balance-card__icon {
|
|
grid-area: icon;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-line-pack: center;
|
|
align-content: center;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
padding: 0.5rem;
|
|
border-radius: 0.8rem;
|
|
background-color: var(--accent-color--light);
|
|
}
|
|
.balance-card__icon .icon {
|
|
height: 1.3rem;
|
|
width: 1.3rem;
|
|
fill: var(--accent-color);
|
|
}
|
|
.balance-card__token {
|
|
font-size: 0.8rem;
|
|
}
|
|
.balance-card__amount {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.page__header button {
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
#transaction,
|
|
#account {
|
|
grid-template-rows: auto 1fr;
|
|
gap: 1rem 0;
|
|
padding: 1.5rem 0;
|
|
-ms-flex-line-pack: start;
|
|
align-content: flex-start;
|
|
}
|
|
|
|
#transaction section,
|
|
#account_details {
|
|
display: grid;
|
|
gap: 2rem;
|
|
grid-template-rows: auto 1fr;
|
|
}
|
|
|
|
.positive {
|
|
color: var(--green);
|
|
}
|
|
|
|
#transaction_top,
|
|
#account_top {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
justify-items: flex-start;
|
|
position: relative;
|
|
}
|
|
|
|
#transaction_detail__icon,
|
|
#account_detail__icon {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
background-color: var(--accent-color);
|
|
border-radius: 40%;
|
|
padding: 0.8rem;
|
|
justify-self: flex-start;
|
|
-ms-flex-item-align: start;
|
|
align-self: flex-start;
|
|
}
|
|
#transaction_detail__icon .icon,
|
|
#account_detail__icon .icon {
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
fill: rgba(var(--background-color), 1);
|
|
}
|
|
|
|
#transaction_detail__amount,
|
|
#account_detail__amount {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
#account_detail__interest_type,
|
|
#account_detail__type {
|
|
color: rgba(var(--text-color), 0.8);
|
|
font-weight: 500;
|
|
}
|
|
|
|
#account_detail__interest {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
#transaction__cta {
|
|
justify-self: flex-start;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
#account_process {
|
|
display: grid;
|
|
-ms-flex-line-pack: start;
|
|
align-content: flex-start;
|
|
gap: 2rem;
|
|
}
|
|
|
|
#account_process__steps,
|
|
#transaction__steps {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.account-step {
|
|
opacity: 0;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
gap: 0.3rem 0.8rem;
|
|
-webkit-animation: slide-down 0.3s forwards;
|
|
animation: slide-down 0.3s forwards;
|
|
}
|
|
.account-step:nth-of-type(2) {
|
|
-webkit-animation-delay: 0.1s;
|
|
animation-delay: 0.1s;
|
|
}
|
|
.account-step:nth-of-type(3) {
|
|
-webkit-animation-delay: 0.2s;
|
|
animation-delay: 0.2s;
|
|
}
|
|
.account-step:nth-of-type(4) {
|
|
-webkit-animation-delay: 0.3s;
|
|
animation-delay: 0.3s;
|
|
}
|
|
.account-step sm-spinner {
|
|
--height: 1rem;
|
|
--width: 1rem;
|
|
}
|
|
.account-step:not(:last-of-type) .step__line {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 0.1rem;
|
|
margin: 0.5rem 0 1rem 0;
|
|
justify-self: center;
|
|
background-color: var(--green);
|
|
}
|
|
.account-step .icon {
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
}
|
|
.account-step:not(.loading) .step__title {
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
padding: 0.2rem 0;
|
|
}
|
|
.account-step .step__description {
|
|
font-size: 0.8rem;
|
|
}
|
|
.account-step.row-3:not(:last-of-type) .step__line {
|
|
grid-row: span 2;
|
|
}
|
|
.account-step.row-3 .button {
|
|
grid-column: 2/3;
|
|
}
|
|
.account-step .button {
|
|
justify-self: flex-start;
|
|
}
|
|
|
|
@-webkit-keyframes slide-down {
|
|
from {
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-1rem);
|
|
transform: translateY(-1rem);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes slide-down {
|
|
from {
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-1rem);
|
|
transform: translateY(-1rem);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
#deposit,
|
|
#loan {
|
|
padding: 1.5rem 0;
|
|
grid-template-rows: auto 1fr;
|
|
}
|
|
#deposit sm-form,
|
|
#loan sm-form {
|
|
justify-self: center;
|
|
margin-top: 3rem;
|
|
width: min(24rem, 100%);
|
|
}
|
|
#deposit sm-form::part(form),
|
|
#loan sm-form::part(form) {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#deposit__icon .icon,
|
|
#loan__icon .icon {
|
|
height: 1.8rem;
|
|
width: 1.8rem;
|
|
fill: var(--accent-color);
|
|
}
|
|
|
|
.est-interest h3 {
|
|
margin-top: 0.2rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
font-size: 1.3rem;
|
|
}
|
|
.est-interest h3::after {
|
|
font-weight: 500;
|
|
content: "% p.a";
|
|
font-size: 1rem;
|
|
}
|
|
|
|
#get_deposit_amount,
|
|
#get_loan_amount {
|
|
--font-size: 1.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.loader-button-wrapper {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
position: relative;
|
|
-webkit-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
.loader-button-wrapper sm-button,
|
|
.loader-button-wrapper slide-button {
|
|
width: 100%;
|
|
z-index: 1;
|
|
-webkit-transition: -webkit-clip-path 0.3s;
|
|
transition: -webkit-clip-path 0.3s;
|
|
transition: clip-path 0.3s;
|
|
transition: clip-path 0.3s, -webkit-clip-path 0.3s;
|
|
-webkit-clip-path: circle(100%);
|
|
clip-path: circle(100%);
|
|
}
|
|
.loader-button-wrapper sm-button.clip,
|
|
.loader-button-wrapper slide-button.clip {
|
|
pointer-events: none;
|
|
-webkit-clip-path: circle(0);
|
|
clip-path: circle(0);
|
|
}
|
|
.loader-button-wrapper sm-spinner {
|
|
position: absolute;
|
|
}
|
|
|
|
#result {
|
|
place-content: center;
|
|
}
|
|
#result section {
|
|
text-align: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
#result__icon {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
border-radius: 50%;
|
|
padding: 1rem;
|
|
margin: -5rem 0 1.5rem 0;
|
|
-webkit-animation: pop-in 1s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
animation: pop-in 1s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
}
|
|
#result__icon.pending {
|
|
background-color: rgba(255, 252, 75, 0.1);
|
|
}
|
|
#result__icon.failed {
|
|
background-color: rgba(255, 75, 75, 0.1);
|
|
}
|
|
#result__icon .icon {
|
|
height: 1.8rem;
|
|
width: 1.8rem;
|
|
}
|
|
#result__description {
|
|
margin: 0.5rem 0;
|
|
}
|
|
#result__back_button {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
@-webkit-keyframes pop-in {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: scale(0.4) translateY(6rem);
|
|
transform: scale(0.4) translateY(6rem);
|
|
}
|
|
40% {
|
|
opacity: 1;
|
|
-webkit-transform: scale(0.4) translateY(0);
|
|
transform: scale(0.4) translateY(0);
|
|
}
|
|
100% {
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
@keyframes pop-in {
|
|
0% {
|
|
opacity: 0;
|
|
-webkit-transform: scale(0.4) translateY(6rem);
|
|
transform: scale(0.4) translateY(6rem);
|
|
}
|
|
40% {
|
|
opacity: 1;
|
|
-webkit-transform: scale(0.4) translateY(0);
|
|
transform: scale(0.4) translateY(0);
|
|
}
|
|
100% {
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
#settings {
|
|
padding: 0 1.5rem;
|
|
}
|
|
#settings sm-copy {
|
|
font-size: 0.9rem;
|
|
margin: 0.3rem 0 1.5rem 0;
|
|
}
|
|
|
|
#sign_out_button {
|
|
color: rgba(var(--background-color), 1);
|
|
--padding: 0.8rem 1.6rem;
|
|
--background: var(--danger-color);
|
|
}
|
|
|
|
#admin {
|
|
display: grid;
|
|
padding: 0 1.5rem;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
#admin_requests_container {
|
|
margin-top: 1rem;
|
|
padding-bottom: 3rem;
|
|
}
|
|
|
|
@media screen and (max-width: 640px) {
|
|
sm-button {
|
|
--padding: 0.9rem 1.6rem;
|
|
}
|
|
|
|
#dashboard {
|
|
padding: 0 1.5rem;
|
|
}
|
|
|
|
#main_nav {
|
|
background-color: var(--foreground-color);
|
|
border-top: thin solid rgba(var(--text-color), 0.1);
|
|
}
|
|
|
|
.nav-item {
|
|
-webkit-box-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
.nav-item__title {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.8);
|
|
margin-top: 0.3rem;
|
|
}
|
|
|
|
#transaction_action_button,
|
|
#account_action_button,
|
|
.loader-button-wrapper {
|
|
margin-top: auto;
|
|
}
|
|
|
|
#transaction_top,
|
|
#account_top {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
#user_section {
|
|
left: 0;
|
|
}
|
|
|
|
#admin__header {
|
|
position: relative;
|
|
display: grid;
|
|
gap: 1rem;
|
|
grid-template-columns: minmax(0, 1fr);
|
|
text-align: center;
|
|
justify-items: center;
|
|
}
|
|
|
|
#account_process,
|
|
#transaction__steps {
|
|
border-top: solid rgba(var(--text-color), 0.2) thin;
|
|
padding-top: 1.5rem;
|
|
}
|
|
|
|
.account-step .button {
|
|
margin-top: 0.5rem;
|
|
}
|
|
}
|
|
@media screen and (min-width: 640px) {
|
|
#confirmation_popup {
|
|
--width: 24rem;
|
|
}
|
|
|
|
.page-layout {
|
|
grid-template-columns: 1fr 90vw 1fr;
|
|
}
|
|
|
|
#home {
|
|
background-color: var(--foreground-color);
|
|
grid-template-rows: auto 1fr;
|
|
grid-template-columns: auto minmax(0, 1fr);
|
|
grid-template-areas: "main-header main-header user-section" "main-nav subpages user-section";
|
|
}
|
|
|
|
#main_nav {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
padding: 0 1rem;
|
|
}
|
|
#main_nav::after {
|
|
position: absolute;
|
|
right: 0;
|
|
content: "";
|
|
width: 1px;
|
|
background-color: rgba(var(--text-color), 0.2);
|
|
height: 80%;
|
|
}
|
|
|
|
.nav-item--active {
|
|
background-color: var(--accent-color--light);
|
|
}
|
|
.nav-item:not(:last-of-type) {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.nav-item:last-of-type {
|
|
margin-top: auto;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.nav-item__title {
|
|
display: none;
|
|
}
|
|
|
|
#user_section {
|
|
grid-area: user-section;
|
|
background-color: rgba(var(--background-color), 1);
|
|
width: min(24rem, 100%);
|
|
}
|
|
|
|
#transaction_top,
|
|
#account_top,
|
|
#account_process,
|
|
#transaction__steps {
|
|
overflow: hidden;
|
|
padding: 1.8rem;
|
|
border-radius: 0.5rem;
|
|
background-color: var(--foreground-color);
|
|
-webkit-box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1), 0 1rem 1.5rem -0.8rem rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1), 0 1rem 1.5rem -0.8rem rgba(0, 0, 0, 0.1);
|
|
-ms-flex-item-align: start;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
#transaction_detail__icon {
|
|
justify-self: flex-start;
|
|
}
|
|
|
|
#admin__header {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.account-step.row-3 {
|
|
grid-template-areas: ". . b-link" ". . b-link";
|
|
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
}
|
|
.account-step.row-3 .step__line {
|
|
grid-column: 1/2;
|
|
}
|
|
.account-step.row-3 .button {
|
|
grid-area: b-link;
|
|
align-self: flex-start;
|
|
}
|
|
}
|
|
@media screen and (max-width: 1024px) {
|
|
#user_section {
|
|
position: fixed;
|
|
background-color: rgba(var(--background-color), 1);
|
|
-webkit-transition: -webkit-transform 0.3s;
|
|
transition: -webkit-transform 0.3s;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s, -webkit-transform 0.3s;
|
|
z-index: 2;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
padding-top: 0;
|
|
}
|
|
#user_section.reveal {
|
|
-webkit-box-shadow: -0.5rem 0 1.5rem rgba(0, 0, 0, 0.1);
|
|
box-shadow: -0.5rem 0 1.5rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
#user_section:not(.reveal) {
|
|
-webkit-transform: translateX(100%);
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
@media screen and (min-width: 1024px) {
|
|
.page-layout {
|
|
grid-template-columns: 1fr 80vw 1fr;
|
|
}
|
|
|
|
.card {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
#home {
|
|
grid-template-columns: 14rem minmax(0, 1fr) 24rem;
|
|
}
|
|
|
|
.nav-item__title {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.8);
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
#transaction section,
|
|
#account_details {
|
|
grid-template-columns: 18rem minmax(0, 1fr);
|
|
}
|
|
|
|
.hide-on-desktop {
|
|
display: none;
|
|
}
|
|
|
|
.activity-card--pending:not(:empty) {
|
|
padding: 1.5rem;
|
|
}
|
|
}
|
|
@media screen and (min-width: 1920px) {
|
|
.page-layout {
|
|
grid-template-columns: 1fr 70vw 1fr;
|
|
}
|
|
}
|
|
@media (any-hover: hover) {
|
|
::-webkit-scrollbar {
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(var(--text-color), 0.3);
|
|
border-radius: 1rem;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(var(--text-color), 0.5);
|
|
}
|
|
|
|
.nav-item,
|
|
.interact {
|
|
-webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
|
|
transition: background-color 0.3s, -webkit-transform 0.3s;
|
|
transition: background-color 0.3s, transform 0.3s;
|
|
transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
|
|
}
|
|
.nav-item:hover,
|
|
.interact:hover {
|
|
background-color: var(--accent-color--light);
|
|
}
|
|
} |