561 lines
7.1 KiB
CSS
561 lines
7.1 KiB
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
:root {
|
|
font-size: clamp(1rem, 1.2vmax, 1.2rem);
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
--accent-color: #0d7377;
|
|
--secondary-color: #ffac2e;
|
|
--text-color: 20, 20, 20;
|
|
--foreground-color: 252, 253, 255;
|
|
--background-color: 241, 243, 248;
|
|
--danger-color: rgb(255, 75, 75);
|
|
--green: #1cad59;
|
|
--yellow: rgb(220, 165, 0);
|
|
color: rgba(var(--text-color), 1);
|
|
background-color: rgba(var(--background-color), 1);
|
|
}
|
|
|
|
body[data-theme=dark] {
|
|
--accent-color: #32e0c4;
|
|
--secondary-color: #d60739;
|
|
--text-color: 220, 220, 220;
|
|
--foreground-color: 27, 28, 29;
|
|
--background-color: 21, 22, 22;
|
|
--danger-color: rgb(255, 106, 106);
|
|
--green: #00e676;
|
|
--yellow: rgb(255, 213, 5);
|
|
}
|
|
|
|
p,
|
|
strong {
|
|
font-size: 0.9rem;
|
|
max-width: 65ch;
|
|
line-height: 1.7;
|
|
color: rgba(var(--text-color), 0.9);
|
|
}
|
|
|
|
img {
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
a:focus-visible {
|
|
box-shadow: 0 0 0 0.1rem rgba(var(--text-color), 1) inset;
|
|
}
|
|
|
|
button {
|
|
display: inline-flex;
|
|
border: none;
|
|
background-color: inherit;
|
|
}
|
|
|
|
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.3rem;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.breakable {
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
-ms-word-break: break-all;
|
|
word-break: break-word;
|
|
-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: 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 {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.justify-start {
|
|
justify-content: start;
|
|
}
|
|
|
|
.justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-right {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.align-self-center {
|
|
align-self: center;
|
|
}
|
|
|
|
.justify-self-center {
|
|
justify-self: center;
|
|
}
|
|
|
|
.justify-self-start {
|
|
justify-self: start;
|
|
}
|
|
|
|
.justify-self-end {
|
|
justify-self: end;
|
|
}
|
|
|
|
.direction-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.w-100 {
|
|
width: 100%;
|
|
}
|
|
|
|
.color-0-8 {
|
|
color: rgba(var(--text-color), 0.8);
|
|
}
|
|
|
|
.weight-400 {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.weight-500 {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.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.9);
|
|
}
|
|
|
|
.button__icon {
|
|
height: 1.2rem;
|
|
width: 1.2rem;
|
|
}
|
|
.button__icon--left {
|
|
margin-right: 0.5rem;
|
|
}
|
|
.button__icon--right {
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
#confirmation_popup,
|
|
#prompt_popup {
|
|
flex-direction: column;
|
|
}
|
|
#confirmation_popup h4,
|
|
#prompt_popup h4 {
|
|
font-weight: 500;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
#confirmation_popup sm-button,
|
|
#prompt_popup sm-button {
|
|
margin: 0;
|
|
}
|
|
#confirmation_popup .flex,
|
|
#prompt_popup .flex {
|
|
padding: 0;
|
|
margin-top: 1rem;
|
|
}
|
|
#confirmation_popup .flex sm-button:first-of-type,
|
|
#prompt_popup .flex sm-button:first-of-type {
|
|
margin-right: 0.6rem;
|
|
margin-left: auto;
|
|
}
|
|
|
|
#main_header {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
padding: 1rem 1.5rem;
|
|
background: rgba(var(--background-color), 1);
|
|
border-bottom: solid 1px rgba(var(--text-color), 0.16);
|
|
z-index: 2;
|
|
}
|
|
|
|
#logo {
|
|
display: grid;
|
|
align-items: center;
|
|
width: 100%;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 0 0.5rem;
|
|
margin-right: 1rem;
|
|
}
|
|
#logo h4 {
|
|
text-transform: capitalize;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
margin-top: 0.2rem;
|
|
}
|
|
#logo h5 {
|
|
font-size: 0.8rem;
|
|
font-family: "Roboto", sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
#logo #main_logo {
|
|
height: 1.4rem;
|
|
width: 1.4rem;
|
|
fill: rgba(var(--text-color), 1);
|
|
stroke: none;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 3rem;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.section__header {
|
|
display: flex;
|
|
padding: 1rem 0;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex-1 {
|
|
flex: 1;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
}
|
|
|
|
.flow-column {
|
|
grid-auto-flow: column;
|
|
}
|
|
|
|
.gap-0-3 {
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
.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 {
|
|
align-content: flex-start;
|
|
}
|
|
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.align-end {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.justify-start {
|
|
justify-items: start;
|
|
}
|
|
|
|
.justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-right {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.align-self-center {
|
|
align-self: center;
|
|
}
|
|
|
|
.align-self-end {
|
|
align-self: end;
|
|
}
|
|
|
|
.justify-self-center {
|
|
justify-self: center;
|
|
}
|
|
|
|
.justify-self-start {
|
|
justify-self: start;
|
|
}
|
|
|
|
.justify-self-end {
|
|
justify-self: end;
|
|
}
|
|
|
|
.flex-direction-column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.w-100 {
|
|
width: 100%;
|
|
}
|
|
|
|
.h-100 {
|
|
height: 100%;
|
|
}
|
|
|
|
.margin-right-0-3 {
|
|
margin-right: 0.3rem;
|
|
}
|
|
|
|
.margin-right-0-5 {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.margin-right-1 {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.margin-left-0-5 {
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.margin-left-auto {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.margin-right-auto {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.margin-bottom-0-5 {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.margin-bottom-1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.margin-block-1 {
|
|
margin-block: 1rem;
|
|
}
|
|
|
|
.margin-block-1-5 {
|
|
margin-block: 1.5rem;
|
|
}
|
|
|
|
.margin-inline-1 {
|
|
margin-inline: 1rem;
|
|
}
|
|
|
|
.margin-inline-1-5 {
|
|
margin-inline: 1.5rem;
|
|
}
|
|
|
|
#main_section {
|
|
padding: 0 1.5rem;
|
|
margin-bottom: 5rem;
|
|
}
|
|
|
|
#otp2 {
|
|
padding: 1rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
#otp2.success {
|
|
background-color: rgba(0, 230, 118, 0.062745098);
|
|
}
|
|
#otp2.failed {
|
|
background-color: rgba(230, 0, 0, 0.062745098);
|
|
}
|
|
|
|
@media screen and (min-width: 640px) {
|
|
sm-popup {
|
|
--width: 24rem;
|
|
}
|
|
#main_section {
|
|
gap: 3rem;
|
|
padding: 0 4vw;
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
} |