Files
deploy b5642af994
Build and Deploy Docker / build (push) Successful in 5m21s
Build and Deploy Docker / deploy (push) Successful in 49s
clear up; add demo data
2026-07-09 16:39:01 +02:00

180 lines
4.1 KiB
Plaintext

@import "table";
.main-container {
font-family: 'Public Sans', system-ui, sans-serif;
color: #1C1C1A;
background: #EFEEE9;
min-height: 100vh;
padding: 56px 24px;
display: flex;
justify-content: center;
-webkit-font-smoothing: antialiased;
}
.card {
position: relative;
width: 100%;
max-width: 750px;
background: #FBFBF9;
border: 1px solid #E6E5E0;
border-radius: 18px;
padding: 36px 34px 42px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.badge {
position: absolute;
top: -13px;
left: 28px;
background: #1C1C1A;
color: #FBFBF9;
font-family: 'IBM Plex Mono', monospace;
font-size: 12px;
font-weight: 600;
padding: 3px 10px;
border-radius: 6px;
}
.rail {
display: flex;
align-items: center;
margin-bottom: 28px;
.rail-step {
display: flex;
align-items: center;
gap: 10px;
&.is-done {
.rail-dot {
background: #E7EFE9;
color: #3F8F6B;
border-color: #CDE3D5;
}
.rail-label {
color: #3B3A36;
}
}
&.is-active{
.rail-dot {
background: #1C1C1A;
color: #FBFBF9;
border-color: #1C1C1A;
}
.rail-label {
color: #1C1C1A;
}
}
}
.rail-dot {
width: 26px;
height: 26px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'IBM Plex Mono', monospace;
font-size: 12px;
font-weight: 600;
background: #FFFFFF;
color: #B7B6B0;
border: 1px solid #E0DFD9;
}
.rail-label {
font-size: 12.5px;
font-weight: 600;
color: #A6A5A0;
}
.rail-line {
flex: 1;
height: 1px;
background: #E0DFD9;
margin: 0 14px;
min-width: 24px;
}
}
/* ---- wybór ---- */
.choices {
display: flex;
flex-direction: column;
gap: 12px;
.choice {
display: flex;
align-items: center;
gap: 16px;
text-align: left;
background: #FFFFFF;
border: 1px solid #E6E5E0;
border-radius: 13px;
padding: 18px 20px;
transition: all .15s;
cursor: pointer;
font-family: inherit;
&.unable {
opacity: 0.2;
cursor: not-allowed;
}
}
&[data-accent="div"]:hover {
border-color: #3F8F6B;
background: #FCFEFD;
}
&[data-accent="crypto"]:hover {
border-color: #C79A3A;
background: #FEFDFA;
}
.choice-icon {
width: 42px;
height: 42px;
flex: none;
border-radius: 11px;
display: flex;
align-items: center;
justify-content: center;
font-size: 21px;
font-weight: 700;
&.div { background: #EDF6F1; color: #3F8F6B; }
&.crypto { background: #F7F1E4; color: #C79A3A; }
}
.choice-body { flex: 1; }
.choice-title { font-size: 15.5px; font-weight: 600; }
.choice-sub { font-size: 12.5px; color: #6B6A64; }
.arrow { color: #B7B6B0; font-size: 18px; }
}
.head-row {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
.dot {
width: 9px;
height: 9px;
border-radius: 2px;
display: inline-block;
}
.head-label { font-size: 14px; font-weight: 600; }
}
.link {
margin-left: auto; background: none; border: none; color: #6B6A64;
font-size: 13px; text-decoration: underline; padding: 0; cursor: pointer; font-family: inherit;
}
.dropzone {
border: 1.5px dashed #CFCEC8; border-radius: 14px; background: #FFFFFF;
padding: 34px 24px; text-align: center; transition: all .15s;
&.is-drag { border-color: #3F8F6B; background: #FCFEFD; }
.icon {
width: 46px; height: 46px; border-radius: 12px; background: #F2F1EC;
display: flex; align-items: center; justify-content: center;
margin: 0 auto 14px; font-size: 20px; color: #6B6A64;
}
.title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.sub { font-size: 12.5px; color: #6B6A64; margin-bottom: 18px; }
.btn-dark {
background: #1C1C1A; color: #FBFBF9; border: none; border-radius: 9px;
padding: 11px 20px; font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: inherit;
&:disabled { opacity: .6; cursor: default; }
}
.add-more { display: block; margin: 12px auto 0; }
}
.loading-all {
margin: auto;
}