2026-01-04 22:50:34 +05:00
|
|
|
// ### BASE STYLES
|
|
|
|
|
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
min-width: 100vw;
|
|
|
|
|
background-color: #4c5062;
|
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
|
|
// assistant page background
|
|
|
|
|
&.assist-page {
|
|
|
|
|
background: radial-gradient(
|
|
|
|
|
circle,
|
|
|
|
|
rgba(24, 123, 123, 0.49) 0%,
|
|
|
|
|
rgba(13, 15, 19, 1) 64%
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
&.assist-active {
|
|
|
|
|
background: radial-gradient(
|
|
|
|
|
circle,
|
|
|
|
|
rgba(24, 81, 123, 0.64) 0%,
|
|
|
|
|
rgba(13, 15, 19, 1) 64%
|
|
|
|
|
);
|
|
|
|
|
}
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root {
|
2026-01-04 22:50:34 +05:00
|
|
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
|
|
color: #0f0f0f;
|
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
|
|
|
|
|
|
font-synthesis: none;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
-webkit-text-size-adjust: 100%;
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2026-01-04 22:50:34 +05:00
|
|
|
color: #2a9cd0;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #1dabed;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
// ### LAYOUT OVERRIDES
|
|
|
|
|
|
2023-06-11 19:18:58 +05:00
|
|
|
#wrapper {
|
2026-01-04 22:50:34 +05:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
#header,
|
|
|
|
|
main {
|
|
|
|
|
padding: 0 30px;
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
// ### FORM OVERRIDES
|
|
|
|
|
|
|
|
|
|
select,
|
|
|
|
|
input {
|
|
|
|
|
color: #ccc !important;
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form {
|
2026-01-04 22:50:34 +05:00
|
|
|
label {
|
|
|
|
|
font-weight: bold !important;
|
|
|
|
|
color: #8ac832 !important;
|
|
|
|
|
font-size: 15px !important;
|
|
|
|
|
border-bottom: 1px dotted gray;
|
|
|
|
|
margin-bottom: 10px !important;
|
|
|
|
|
|
|
|
|
|
& + div {
|
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
}
|
2023-06-11 19:18:58 +05:00
|
|
|
}
|
|
|
|
|
|
2026-01-04 22:50:34 +05:00
|
|
|
.svelteui-Tab-label {
|
|
|
|
|
font-size: 18px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|