699 lines
13 KiB
SCSS
699 lines
13 KiB
SCSS
*,
|
|
::before,
|
|
::after{
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
:root{
|
|
height: 100%;
|
|
font-size: clamp(1rem, 1.2vmax, 3rem);
|
|
--ease-in-overshhot: cubic-bezier(0.6, -0.28, 0.735, 0.045);
|
|
--ease-out-overshhot: cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
}
|
|
body{
|
|
--accent-color: #6300d4;
|
|
--text-color: 17, 17, 17;
|
|
--text-color-light: 100, 100, 100;
|
|
--foreground-color: 255, 255, 255;
|
|
--background-color: #efefef;
|
|
--error-color: red;
|
|
color: rgba(var(--text-color), 1);
|
|
height: calc(100%);
|
|
background: rgba(var(--text-color), 0.04);
|
|
}
|
|
body[data-theme='dark']{
|
|
--accent-color:#c64aff;
|
|
--text-color: 240, 240, 240;
|
|
--text-color-light: 170, 170, 170;
|
|
--foreground-color: 20, 20, 20;
|
|
--error-color: rgb(255, 106, 106);
|
|
background: rgba(var(--foreground-color), 1);
|
|
}
|
|
button{
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: inline-flex;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
outline: none;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
button:focus-visible{
|
|
outline: rgba(var(--text-color), 1) 0.1rem solid;
|
|
}
|
|
sm-input,
|
|
sm-textarea{
|
|
--border-radius: 0.3rem;
|
|
--background: rgba(var(--text-color), 0.1);
|
|
}
|
|
sm-button[variant="primary"]{
|
|
--padding: 0.8rem 1.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
ul{
|
|
list-style: none;
|
|
}
|
|
.flex{
|
|
display: flex;
|
|
}
|
|
.grid{
|
|
display: grid;
|
|
}
|
|
.align-center{
|
|
align-items: center;
|
|
}
|
|
.justify-right{
|
|
margin-left: auto;
|
|
}
|
|
.direction-column{
|
|
flex-direction: column;
|
|
}
|
|
.space-between{
|
|
justify-content: space-between;
|
|
}
|
|
.full-width{
|
|
width: 100%;
|
|
}
|
|
.hide{
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
.hide-completely{
|
|
display: none !important;
|
|
}
|
|
.no-transformations{
|
|
transform: none !important;
|
|
}
|
|
.overflow-ellipsis{
|
|
width: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.ripple{
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
transform: scale(0);
|
|
background: rgba(var(--text-color), 0.16);
|
|
pointer-events: none;
|
|
}
|
|
.interact{
|
|
position: relative;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.observe-empty-state:empty{
|
|
display: none;
|
|
}
|
|
.observe-empty-state:not(:empty) ~ .empty-state{
|
|
display: none;
|
|
}
|
|
.icon{
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
fill: rgba(var(--text-color), 0.7);
|
|
}
|
|
#confirmation_popup,
|
|
#prompt_popup {
|
|
flex-direction: column;
|
|
h4 {
|
|
font-weight: 500;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
sm-button{
|
|
margin: 0;
|
|
}
|
|
.flex {
|
|
padding: 0;
|
|
margin-top: 1rem;
|
|
sm-button:first-of-type {
|
|
margin-right: 0.6rem;
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
.popup__header{
|
|
padding: 0.5rem 1.5rem 0 1rem;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
.popup__header__close{
|
|
padding: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
.icon-only{
|
|
height: 2.6rem;
|
|
width: 2.6rem;
|
|
padding: 0.6rem;
|
|
}
|
|
.close-icon{
|
|
padding: 0.3rem;
|
|
}
|
|
.initial{
|
|
display: flex;
|
|
text-align: center;
|
|
user-select: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 500;
|
|
color: rgba(var(--foreground-color), 1);
|
|
background-color: rgba(var(--text-color), 0.1);
|
|
}
|
|
|
|
#contact_popup{
|
|
--body-padding: 0;
|
|
}
|
|
#contact_popup__initial{
|
|
align-self: center;
|
|
width: 5rem;
|
|
height: 5rem;
|
|
padding: 1rem;
|
|
margin: 1rem 0;
|
|
font-size: 2rem;
|
|
border-radius: 50%;
|
|
}
|
|
#contact_popup__name{
|
|
align-self: center;
|
|
font-weight: 700;
|
|
font-size: 1.2rem;
|
|
}
|
|
.contact__copy-row{
|
|
padding: 0 1.5rem;
|
|
margin: 1rem 0;
|
|
}
|
|
.copy-label{
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.flo-id-grid{
|
|
gap: 0.5rem;
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
#contact__flo_id{
|
|
}
|
|
.copy-button{
|
|
padding: 0.4rem;
|
|
}
|
|
#contact_popup__options{
|
|
padding: 1rem 0;
|
|
}
|
|
.contact__option{
|
|
font-size: 1rem;
|
|
padding: 0.8rem 1.5rem;
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.button__icon{
|
|
fill: rgba(var(--text-color), 0.7);
|
|
}
|
|
.button__title{
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
|
|
#main_card{
|
|
height: 100%;
|
|
width: 100%;
|
|
grid-row: 1/3;
|
|
}
|
|
#main_header{
|
|
grid-area: header;
|
|
height: max-content;
|
|
gap: 0.2rem 1rem;
|
|
padding: 1rem;
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-areas: 'logo company' 'logo app';
|
|
}
|
|
#main_header__logo{
|
|
width: 1.8rem;
|
|
height: 1.8rem;
|
|
grid-area: logo;
|
|
}
|
|
#page_container{
|
|
grid-area: page;
|
|
overflow-y: hidden;
|
|
}
|
|
.page{
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
align-content: flex-start;
|
|
}
|
|
.header__company-name{
|
|
grid-area: company;
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.7);
|
|
align-self: flex-end;
|
|
}
|
|
.header__app-name{
|
|
align-self: flex-start;
|
|
line-height: 1;
|
|
grid-area: app;
|
|
font-weight: 700;
|
|
color: rgba(var(--text-color), 0.9);
|
|
}
|
|
#main_navbar{
|
|
grid-area: nav;
|
|
}
|
|
.navbar__item{
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0.8rem;
|
|
border-radius: 0.5rem;
|
|
&--active{
|
|
.navbar__item__icon{
|
|
fill: var(--accent-color);
|
|
}
|
|
.navbar__item__title{
|
|
color: var(--accent-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
.navbar__item__icon{
|
|
margin-right: 1rem;
|
|
fill: rgba(var(--text-color), 0.7);
|
|
}
|
|
.navbar__item__title{
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
color: rgba(var(--text-color), 0.7);
|
|
}
|
|
|
|
.fab{
|
|
position: absolute;
|
|
display: inline-flex;
|
|
border-radius: 5rem;
|
|
aspect-ratio: 1/1;
|
|
padding: 0.7rem;
|
|
background: #FF1F1F;
|
|
box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.16);
|
|
}
|
|
.fab__icon{
|
|
height: 1.8rem;
|
|
width: 1.8rem;
|
|
fill: white;
|
|
}
|
|
#flo_options{
|
|
padding: 1rem;
|
|
}
|
|
.flo-options__item{
|
|
padding: 0.8rem;
|
|
max-width: 6rem;
|
|
justify-content: center;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.option__icon{
|
|
height: 3rem;
|
|
width: 3rem;
|
|
padding: 0.8rem;
|
|
background: rgba(var(--text-color), 0.04);
|
|
border-radius: 1rem;
|
|
}
|
|
.coral{
|
|
fill: #ff5e78;
|
|
}
|
|
.violet{
|
|
fill: #845ec2;
|
|
}
|
|
.option__title{
|
|
margin-top: 0.5rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#dashboard_page__header{
|
|
}
|
|
#base_header{
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.header__title{
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
|
|
|
|
|
|
#search_contacts__input{
|
|
width: 100%;
|
|
--padding: 0.5rem;
|
|
}
|
|
#search_contacts_button{
|
|
|
|
}
|
|
|
|
.search__icon{
|
|
height: 1.2rem;
|
|
width: 1.2rem;
|
|
}
|
|
|
|
.expanding-search{
|
|
width: 14rem;
|
|
}
|
|
#selected_contact_options{
|
|
|
|
}
|
|
.contact-option{
|
|
&:not(:last-of-type){
|
|
margin-right: 0.5rem;
|
|
}
|
|
&:first-of-type{
|
|
padding-right: 0.6rem;
|
|
margin-right: auto;
|
|
margin-left: -0.6rem;
|
|
}
|
|
}
|
|
.contact-option__button{
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border-radius: 0.3rem;
|
|
padding: 0.5rem 0.6rem;
|
|
}
|
|
.contact-option__icon{
|
|
height: 1.2rem;
|
|
width: 1.2rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
.contact-option__name{
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
|
|
#contacts_container{
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
align-content: flex-start;
|
|
padding: 0 0 6rem 1rem;
|
|
}
|
|
.contact-card{
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: grid;
|
|
width: 100%;
|
|
gap: 1rem;
|
|
grid-template-columns: auto auto 1fr auto;
|
|
align-items: center;
|
|
padding: 0.5rem 0.6rem;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
align-self: flex-start;
|
|
justify-content: center;
|
|
border-radius: 0.3rem;
|
|
background: rgba(var(--foreground-color), 0.6);
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
.contact-card__checkbox{
|
|
--height: 1.5rem;
|
|
--width: 1.5rem;
|
|
--border-radius: 0.3rem;
|
|
--border-color: rgba(var(--text-color), 0.6);
|
|
}
|
|
.contact-card__initial{
|
|
width: 2rem;
|
|
height: 2rem;
|
|
padding: 1.2rem;
|
|
font-size: 1.1rem;
|
|
border-radius: 50%;
|
|
}
|
|
.contact-card__name{
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.contact-card__more{
|
|
padding: 0.4rem;
|
|
}
|
|
#contacts_empty_state{
|
|
text-align: center;
|
|
}
|
|
.empty-state__title{
|
|
font-weight: 400;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
|
|
#show_contact_popup_button{
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: 1.5rem;
|
|
}
|
|
|
|
.page__header{
|
|
min-height: 4rem;
|
|
padding: 1rem;
|
|
}
|
|
.page__title{
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
#send_flo_form{
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 1rem;
|
|
gap: 0.3;
|
|
}
|
|
.form__section{
|
|
align-content: flex-start;
|
|
}
|
|
|
|
.label{
|
|
font-size: 0.9rem;
|
|
margin-bottom: 0.3rem;
|
|
color: rgba(var(--text-color), 0.9);
|
|
&:not(:first-of-type){
|
|
margin-top: 0.8rem;
|
|
}
|
|
}
|
|
#sent_flo_data{
|
|
--max-height: 12rem;
|
|
}
|
|
#send_flo_button{
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
|
|
|
|
#balance_card{
|
|
width: 100%;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
border-radius: 0.3rem;
|
|
background-color: rgba(var(--text-color), 0.04);
|
|
}
|
|
#balance_card__input{
|
|
margin-bottom: 1rem;
|
|
}
|
|
.balance_card__title{
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
margin-bottom: 0.5rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.balance_card__description{
|
|
font-size: 0.9rem;
|
|
margin-bottom: 0.5rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
#flo_balance{
|
|
word-break: break-all;
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
|
|
|
|
.settings__section{
|
|
padding: 0 1rem;
|
|
width: min(50ch, 100%);
|
|
&:not(:last-of-type){
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
.setting__title{
|
|
color: rgba(var(--text-color), 0.9);
|
|
}
|
|
.setting__description{
|
|
font-size: 0.9rem;
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
.toggle-grid{
|
|
gap: 0.3rem;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
|
|
// mobile only styles
|
|
@media all and (max-width: 640px){
|
|
.hide-on-mobile{
|
|
display: none;
|
|
}
|
|
#main_card{
|
|
min-height: 100%;
|
|
grid-template-rows: auto 1fr auto;
|
|
grid-template-areas: 'header' 'page' 'nav';
|
|
}
|
|
#main_navbar{
|
|
flex-direction: row;
|
|
}
|
|
.navbar__item{
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
.navbar__item__icon{
|
|
margin: 0 0 0.5rem 0;
|
|
}
|
|
.navbar__item__icon{
|
|
margin: 0 0 0.5rem 0;
|
|
}
|
|
#dashboard_page__header{
|
|
padding-top: 0;
|
|
}
|
|
.expanding-search{
|
|
background-color: rgba(var(--foreground-color), 1);
|
|
position: absolute;
|
|
z-index: 1;
|
|
width: 100%;
|
|
}
|
|
.back-button{
|
|
|
|
}
|
|
}
|
|
|
|
// desktop only styles
|
|
@media all and (min-width: 640px){
|
|
body{
|
|
align-items: center;
|
|
justify-content: center;
|
|
#main_card{
|
|
background: rgba(var(--foreground-color), 1);
|
|
}
|
|
}
|
|
body[data-theme='dark']{
|
|
#main_card{
|
|
background: rgba(var(--text-color), 0.04);
|
|
}
|
|
}
|
|
sm-popup{
|
|
--width: 24rem;
|
|
}
|
|
.hide-on-desktop{
|
|
display: none;
|
|
}
|
|
.popup__header{
|
|
padding: 1rem 1.5rem 0 1rem;
|
|
}
|
|
#main_card{
|
|
position: relative;
|
|
width: 80vw;
|
|
height: 80vh;
|
|
border-radius: 0.2rem;
|
|
overflow: hidden;
|
|
grid-template-columns: 15rem 1fr;
|
|
grid-template-rows: auto 1fr;
|
|
grid-template-areas: 'header page' 'nav page';
|
|
box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.16);
|
|
}
|
|
#main_header{
|
|
padding: 1.5rem;
|
|
}
|
|
#main_navbar{
|
|
flex-direction: column;
|
|
height: 100%;
|
|
padding: 0 1rem;
|
|
align-content: flex-start;
|
|
}
|
|
.navbar__item__title{
|
|
font-size: 0.9rem;
|
|
}
|
|
#page_container{
|
|
position: relative;
|
|
grid-row: 1/3;
|
|
&::after{
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
height: 65%;
|
|
width: 1px;
|
|
background: rgba(var(--text-color), 0.2);
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
.page__header{
|
|
min-height: 6.2rem;
|
|
padding: 1.5rem;
|
|
}
|
|
#contacts_container{
|
|
padding: 0 1rem 8rem 1.5rem;
|
|
}
|
|
#send_flo_form{
|
|
gap: 1rem;
|
|
grid-template-columns: 1fr 1fr;
|
|
padding: 0 1.5rem 1.5rem 1.5rem;
|
|
}
|
|
.settings__section{
|
|
padding: 0 1.5rem;
|
|
}
|
|
}
|
|
@media all and (min-width: 1080px){
|
|
|
|
}
|
|
@media all and (min-width: 1280px){
|
|
#main_card{
|
|
width: 65vw;
|
|
height: 85vh;
|
|
}
|
|
}
|
|
@media all and (min-width: 1920px){
|
|
#main_card{
|
|
width: 60vw;
|
|
height: 65vh;
|
|
}
|
|
}
|
|
@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;
|
|
&:hover{
|
|
background: rgba(var(--text-color), 0.5);
|
|
}
|
|
}
|
|
.contact-card__checkbox:not([checked]):not(:focus-within){
|
|
opacity: 0.4;
|
|
transition: opacity 0.3s;
|
|
}
|
|
.contact-card__more:not(:focus-within){
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
.contact-card:hover .contact-card__checkbox,
|
|
.contact-card:hover .contact-card__more{
|
|
opacity: 1;
|
|
}
|
|
.contact-option__button{
|
|
transition: background 0.3s;
|
|
&:hover{
|
|
background-color: rgba(var(--text-color), 0.1);
|
|
}
|
|
}
|
|
} |