mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 12:33:40 +00:00
* remove product key flow from setup * feat: backend turned off encryption + new Id + no package id * implement new encryption scheme in FE * decode response string * crypto not working * update setup wizard closes #1762 * feat: Get the encryption key * fix: Get to recovery * remove old code * fix build * fix: Install works for now * fix bug in config for adding new list items * dismiss action modal on success * clear button in config * wip: Currently broken in avahi mdns * include headers with req/res and refactor patchDB init and usage * fix: Can now run in the main * flatline on failed init * update patch DB * add last-wifi-region to data model even though not used by FE * chore: Fix the start. * wip: Fix wrong order for getting hostname before sql has been created * fix edge case where union keys displayed as new when not new * fix: Can start * last backup color, markdown links always new tab, fix bug with login * refactor to remove WithRevision * resolve circular dep issue * update submodule * fix patch-db * update patchDB * update patch again * escape error * decodeuricomponent * increase proxy buffer size * increase proxy buffer size * fix nginx Co-authored-by: BluJ <mogulslayer@gmail.com> Co-authored-by: BluJ <dragondef@gmail.com> Co-authored-by: Aiden McClelland <me@drbonez.dev>
119 lines
1.9 KiB
SCSS
119 lines
1.9 KiB
SCSS
@font-face {
|
|
font-family: 'Montserrat';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url('/assets/fonts/Montserrat/Montserrat-Regular.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Montserrat';
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
src: url('/assets/fonts/Montserrat/Montserrat-Bold.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Montserrat';
|
|
font-style: normal;
|
|
font-weight: thin;
|
|
src: url('/assets/fonts/Montserrat/Montserrat-Light.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Benton Sans';
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
src: url('/assets/fonts/Benton_Sans/BentonSans-Regular.otf');
|
|
}
|
|
|
|
/** Ionic CSS Variables overrides **/
|
|
:root {
|
|
--ion-font-family: 'Benton Sans';
|
|
}
|
|
|
|
ion-content {
|
|
--background: var(--ion-color-medium);
|
|
}
|
|
|
|
ion-grid {
|
|
padding-top: 32px;
|
|
height: 100%;
|
|
max-width: 640px;
|
|
}
|
|
|
|
ion-row {
|
|
height: 100%;
|
|
}
|
|
|
|
ion-item {
|
|
--color: var(--ion-color-light);
|
|
--highlight-color-valid: transparent;
|
|
--highlight-color-invalid: transparent;
|
|
}
|
|
|
|
ion-toolbar {
|
|
--ion-background-color: var(--ion-color-light);
|
|
ion-title {
|
|
color: var(--ion-color-dark);
|
|
}
|
|
}
|
|
|
|
ion-avatar {
|
|
width: 27px;
|
|
height: 27px;
|
|
}
|
|
|
|
ion-card-title {
|
|
margin: 16px 0;
|
|
font-family: 'Montserrat';
|
|
font-size: x-large;
|
|
--color: var(--ion-color-light);
|
|
}
|
|
|
|
ion-toast {
|
|
--background: var(--ion-color-light);
|
|
--button-color: var(--ion-color-dark);
|
|
--border-style: solid;
|
|
--border-width: 1px;
|
|
--color: white;
|
|
}
|
|
|
|
.center-spinner {
|
|
height: 20vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.inline {
|
|
* {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
.claim-button {
|
|
margin-inline-start: 0;
|
|
margin-inline-end: 0;
|
|
margin-top: 24px;
|
|
min-width: 140px;
|
|
}
|
|
|
|
.error-toast {
|
|
--border-color: var(--ion-color-danger);
|
|
width: 40%;
|
|
min-width: 400px;
|
|
--end: 8px;
|
|
right: 8px;
|
|
left: unset;
|
|
top: 64px;
|
|
}
|
|
|
|
.error-border {
|
|
border: 2px solid var(--ion-color-danger);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.success-border {
|
|
border: 2px solid var(--ion-color-success);
|
|
border-radius: 4px;
|
|
}
|