DO NOT COMMIT DIRECTLY AS LONG AS WE USE SUBTREE SPLIT IN site-cpd-theming
- CSS 61.7%
- Twig 38.3%
|
All checks were successful
Trigger dev deployment on internal-site-repo / deploy (push) Successful in 1s
|
||
|---|---|---|
| .forgejo/workflows | ||
| components | ||
| css | ||
| templates | ||
| c4c_theme.info.yml | ||
| c4c_theme.libraries.yml | ||
| composer.json | ||
| README.md | ||
C4C Theme
Breakpoints
- We can't use @media with plain css vars
- So we use:
/* Breakpoints */
--sm (min-width: 31.25rem); /* 500px */
--md (min-width: 43.75rem); /* 700px */
--lg (min-width: 62.5rem); /* 1000px */
--xl (min-width: 81.25rem); /* 1300px */
/* Navigation related breakpoints */
--nav-md (min-width: 31.25rem); /* 500px */
--nav (min-width: 75rem); /* 1200px */
--max-nav (max-width: 1200px) ;