2026-03-23 19:46:49 +02:00
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.setup {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2026-03-23 19:30:00 +02:00
|
|
|
|
2026-03-25 18:38:44 +02:00
|
|
|
&>.setup-outer-wrapper {
|
2026-03-25 22:02:18 +02:00
|
|
|
width: 100dvw;
|
|
|
|
|
height: 100dvh;
|
|
|
|
|
|
2026-03-25 23:08:10 +02:00
|
|
|
body:not(.electron) & {
|
|
|
|
|
@media (min-width: 700px) {
|
|
|
|
|
background:
|
|
|
|
|
radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
|
|
|
|
|
radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
|
|
|
|
|
radial-gradient(ellipse at 60% 80%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
|
|
|
|
|
var(--left-pane-background-color);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 2em;
|
|
|
|
|
}
|
2026-03-25 22:02:18 +02:00
|
|
|
}
|
2026-03-23 19:46:49 +02:00
|
|
|
|
|
|
|
|
.setup-container {
|
|
|
|
|
background-color: var(--main-background-color);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 2em;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 2rem;
|
2026-03-24 12:40:53 +02:00
|
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
2026-03-24 12:17:55 +02:00
|
|
|
position: relative;
|
2026-03-25 22:02:18 +02:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
@media (min-width: 700px) {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 750px;
|
|
|
|
|
height: 650px;
|
|
|
|
|
top: unset;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2026-03-23 19:46:49 +02:00
|
|
|
|
|
|
|
|
.setup-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-24 08:59:08 +02:00
|
|
|
justify-content: center;
|
2026-03-23 19:46:49 +02:00
|
|
|
gap: 1rem;
|
|
|
|
|
|
2026-03-23 19:50:53 +02:00
|
|
|
.setup-option-card {
|
2026-03-23 19:46:49 +02:00
|
|
|
padding: 1.5em;
|
2026-03-23 19:50:53 +02:00
|
|
|
cursor: pointer;
|
2026-03-23 20:02:20 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1rem;
|
2026-03-23 19:50:53 +02:00
|
|
|
|
2026-03-25 10:07:41 +02:00
|
|
|
&.disabled {
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-color: var(--main-border-color)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:not(.disabled):hover {
|
2026-03-23 19:50:53 +02:00
|
|
|
background-color: var(--card-background-hover-color);
|
|
|
|
|
filter: contrast(105%);
|
|
|
|
|
transition: background-color .2s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 20:02:20 +02:00
|
|
|
.tn-icon {
|
|
|
|
|
font-size: 2.5em;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 19:46:49 +02:00
|
|
|
h3 {
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p:last-of-type {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-23 20:21:47 +02:00
|
|
|
|
|
|
|
|
.page {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
2026-03-25 18:25:47 +02:00
|
|
|
padding: 2em;
|
2026-03-25 20:30:04 +02:00
|
|
|
overflow: auto;
|
2026-03-23 20:21:47 +02:00
|
|
|
|
2026-03-25 20:07:37 +02:00
|
|
|
>.back-button {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 2em;
|
|
|
|
|
left: 2em;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
|
|
|
|
|
.tn-icon {
|
|
|
|
|
margin-right: 0.4em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 20:21:47 +02:00
|
|
|
>main {
|
|
|
|
|
flex: 1;
|
2026-03-23 20:27:44 +02:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-24 13:55:12 +02:00
|
|
|
padding-top: 1em;
|
2026-03-25 20:56:01 +02:00
|
|
|
min-height: 0;
|
2026-03-23 20:21:47 +02:00
|
|
|
}
|
|
|
|
|
|
2026-03-25 19:54:55 +02:00
|
|
|
&.contentless {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-23 20:21:47 +02:00
|
|
|
>footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
border-top: 1px solid var(--main-border-color);
|
|
|
|
|
padding-top: 1rem;
|
2026-03-25 10:00:47 +02:00
|
|
|
margin-inline: -2em;
|
|
|
|
|
padding-inline: 2em;
|
2026-03-23 20:21:47 +02:00
|
|
|
}
|
2026-03-25 18:25:47 +02:00
|
|
|
|
|
|
|
|
>.page-error {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
background: var(--admonition-caution-accent-color);
|
2026-03-25 18:38:44 +02:00
|
|
|
z-index: 1;
|
2026-03-25 18:25:47 +02:00
|
|
|
margin: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
2026-03-25 18:38:44 +02:00
|
|
|
padding-right: 2.5em;
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0.5em;
|
|
|
|
|
right: 0.5em;
|
|
|
|
|
}
|
2026-03-25 18:25:47 +02:00
|
|
|
}
|
2026-03-23 20:21:47 +02:00
|
|
|
}
|
2026-03-23 20:27:44 +02:00
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-03-25 18:18:37 +02:00
|
|
|
gap: 1rem;
|
2026-03-23 20:27:44 +02:00
|
|
|
width: 80%;
|
2026-03-25 20:07:37 +02:00
|
|
|
margin-inline: auto;
|
2026-03-24 18:24:29 +02:00
|
|
|
|
2026-03-25 18:18:37 +02:00
|
|
|
.form-group {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 18:24:29 +02:00
|
|
|
.admonition {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2026-03-23 20:27:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-item-with-icon {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
|
|
|
|
.tn-icon {
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-23 19:30:00 +02:00
|
|
|
}
|
2026-03-24 09:09:21 +02:00
|
|
|
|
2026-03-24 12:56:40 +02:00
|
|
|
.sync-illustration {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2026-03-25 20:07:37 +02:00
|
|
|
margin-top: 1.5em;
|
2026-03-24 13:55:12 +02:00
|
|
|
margin-bottom: 1.5rem;
|
2026-03-24 12:56:40 +02:00
|
|
|
|
|
|
|
|
.tn-icon {
|
|
|
|
|
font-size: 3em;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
>div {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
text-align: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
line-height: 1;
|
2026-03-24 13:55:12 +02:00
|
|
|
font-size: 0.85rem;
|
2026-03-24 12:56:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sync-illustration-arrows {
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 3em;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
border: 2px dashed var(--main-border-color);
|
|
|
|
|
top: 1.5em;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-24 13:55:12 +02:00
|
|
|
|
2026-03-25 19:37:27 +02:00
|
|
|
.illustration-icon {
|
|
|
|
|
font-size: 4em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
opacity: 0.6;
|
2026-03-25 21:10:10 +02:00
|
|
|
margin-block: 1rem;
|
2026-03-25 19:37:27 +02:00
|
|
|
}
|
|
|
|
|
|
2026-03-25 20:30:04 +02:00
|
|
|
.illustration-logo {
|
|
|
|
|
width: 96px;
|
|
|
|
|
height: 96px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 13:55:12 +02:00
|
|
|
h1 {
|
|
|
|
|
font-size: 1.4em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 + p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: var(--muted-text-color);
|
2026-03-25 20:07:37 +02:00
|
|
|
margin-bottom: 0;
|
2026-03-24 13:55:12 +02:00
|
|
|
}
|
2026-03-25 18:38:44 +02:00
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
|
z-index: 15 !important;
|
|
|
|
|
}
|
2026-03-24 09:09:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes lds-ring {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
2026-03-23 19:30:00 +02:00
|
|
|
}
|
2026-03-24 12:17:55 +02:00
|
|
|
|
|
|
|
|
/* Slide transitions */
|
|
|
|
|
.slide-page {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-out-forward,
|
|
|
|
|
.slide-out-backward,
|
|
|
|
|
.slide-in-forward,
|
|
|
|
|
.slide-in-backward {
|
|
|
|
|
animation-duration: 0.35s;
|
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-out-forward {
|
|
|
|
|
animation-name: slide-out-left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-out-backward {
|
|
|
|
|
animation-name: slide-out-right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-in-forward {
|
|
|
|
|
animation-name: slide-in-right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-in-backward {
|
|
|
|
|
animation-name: slide-in-left;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-25 20:56:01 +02:00
|
|
|
.page.select-language {
|
|
|
|
|
.dropdownWrapper {
|
2026-03-25 21:13:49 +02:00
|
|
|
padding-bottom: 2em;
|
|
|
|
|
width: 80%;
|
|
|
|
|
margin: auto;
|
2026-03-25 20:56:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdownWrapper,
|
|
|
|
|
.dropdown,
|
|
|
|
|
.dropdown-menu {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 19:36:40 +02:00
|
|
|
.page.sync-in-progress {
|
|
|
|
|
.sync-progress {
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
|
|
|
|
progress {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 1rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
|
|
&::-webkit-progress-bar {
|
|
|
|
|
background-color: var(--main-border-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-progress-value {
|
|
|
|
|
background-color: var(--main-text-color);
|
|
|
|
|
transition: width 0.2s ease-out;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
min-width: 2.5em;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-24 12:17:55 +02:00
|
|
|
@keyframes slide-out-left {
|
|
|
|
|
from { transform: translateX(0); opacity: 1; }
|
|
|
|
|
to { transform: translateX(-100%); opacity: 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-out-right {
|
|
|
|
|
from { transform: translateX(0); opacity: 1; }
|
|
|
|
|
to { transform: translateX(100%); opacity: 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-in-right {
|
|
|
|
|
from { transform: translateX(100%); opacity: 0; }
|
|
|
|
|
to { transform: translateX(0); opacity: 1; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes slide-in-left {
|
|
|
|
|
from { transform: translateX(-100%); opacity: 0; }
|
|
|
|
|
to { transform: translateX(0); opacity: 1; }
|
|
|
|
|
}
|