- Implement `remoteAccess` functionality in `ApiCLI` for Veyon integration. - Create `selectIP.php` view and associated form for remote access inputs. - Add JSON configuration for lab setups (`labList.json`). - Introduce reusable `home-button` web component. - Update project router and controller to support new `/remoteAccess` and `/conn` routes. - Add custom styles and icons to enhance UI.
43 lines
991 B
CSS
43 lines
991 B
CSS
:root {
|
|
/* STD */
|
|
|
|
/* Palette */
|
|
--error: #E12D39;
|
|
--accent: #FF5252;
|
|
--bg: #F0ECD4;
|
|
--divider: #BDBDBD;
|
|
|
|
--primary: #FFE3BD;
|
|
--primary-light: #F1DC7E;
|
|
--primary-dark: #00796B;
|
|
|
|
--secondary-light: #00967D;
|
|
--secondary: #006E59;
|
|
--secondary-dark: #004D3E;
|
|
|
|
--teal-blue: #16425B;
|
|
--kashmir: #2F6690;
|
|
--allports: #3A7CA5;
|
|
|
|
--text-primary: #000000;
|
|
--text-secondary: #757575;
|
|
--text-tertiary: #BDBDBD;
|
|
|
|
|
|
--background: #FFFFFF;
|
|
--gray: #F7F7F7;
|
|
--quill: #D9DCD6;
|
|
--disabled: #D0D0D0;
|
|
--default: #BDBDBD;
|
|
--hover: #999999;
|
|
--storm-dust: #656565;
|
|
--focus: #000000;
|
|
}
|
|
|
|
body {
|
|
/*background-color: var(--bg);*/
|
|
/*color: var(--text-primary);*/
|
|
background: #111;
|
|
color: #fff;
|
|
}
|