mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +00:00
- Implement core components: CLI argument parsing, environment loading, GitHub service creation, and logging configuration. - Add support for OpenAI client setup and model resolution. - Develop SDLC context loader from GitHub and repository files. - Implement workflow context and engine builders. - Introduce major workflow packages: `game_tick_loop` and `contextual_iterative_loop`. - Update localization files with new package descriptions and labels. - Streamline web navigation by loading items from a dedicated JSON file.
35 lines
718 B
SCSS
35 lines
718 B
SCSS
@import "variables";
|
|
|
|
:root {
|
|
color: $text;
|
|
background: $body-bg;
|
|
--color-body-bg: #{$body-bg};
|
|
--color-app-bg: #{$app-bg};
|
|
--color-panel-bg: #{$panel-bg};
|
|
--color-panel-alt: #{$panel-bg-alt};
|
|
--color-input-bg: #{$input-bg};
|
|
--color-sidebar-bg: #{$sidebar-bg};
|
|
--color-text: #{$text};
|
|
--color-text-strong: #{$text-strong};
|
|
--color-text-muted: #{$muted};
|
|
--color-text-muted-strong: #{rgba($text, 0.8)};
|
|
--color-border-muted: #{rgba($muted, 0.4)};
|
|
--color-divider: #{rgba($text, 0.08)};
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Inter", system-ui, sans-serif;
|
|
background: $body-bg;
|
|
color: $text;
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|