Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- .woodpecker.yaml: image paths -> library/autojanet-{agent,dispatcher}
- .woodpecker.yaml: secret names RS_HARBOR_USER / RS_HARBOR_PASS (global)
- container/Dockerfile: restore COPY skills/, skills/ populated from opencode config
- skills/: 84 opencode skills bundled into image
- k8s/manifests: update image refs to library/
2 KiB
2 KiB
CSS Language Prompt Snippet
Key Concepts
- Selectors: Element, class (
.name), ID (#name), attribute ([attr]), and pseudo-class (:hover) targeting - Specificity: Inline > ID > Class > Element cascade priority determining which rules win
- Box Model:
margin,border,padding,contentdimensions controlling element sizing - Flexbox:
display: flexwithjustify-content,align-itemsfor one-dimensional layouts - Grid:
display: gridwithgrid-template-columns/rowsfor two-dimensional layouts - Custom Properties (Variables):
--name: valuewithvar(--name)for reusable design tokens - Media Queries:
@media (max-width: ...)for responsive design breakpoints - SCSS/Sass Features: Nesting,
$variables,@mixin,@include,@extend,@use,@forward - CSS Modules: Scoped class names (
.module.css) preventing global style collisions - Cascade Layers:
@layerfor explicit control over cascade ordering
Notable File Patterns
*.css— Standard CSS stylesheets*.scss/*.sass— Sass/SCSS preprocessor files*.less— Less preprocessor files*.module.css/*.module.scss— CSS Modules (scoped styles)globals.css/reset.css/normalize.css— Global base stylestailwind.config.js— Tailwind CSS configuration (though a JS file)variables.scss/_variables.scss— Design token definitions
Edge Patterns
- CSS files are
relatedto the HTML or component files that import them for styling - SCSS partial files (
_*.scss) aredepends_onby the main stylesheet that@uses them - CSS variable definition files are
relatedto all stylesheets that reference those variables - CSS Modules are
relatedto the component files that import them
Summary Style
"Global stylesheet defining CSS custom properties for the design system color palette and typography." "Responsive layout styles with flexbox and grid for the dashboard page across 3 breakpoints." "SCSS partial defining shared mixins for spacing, shadows, and media query breakpoints."