DO NOT COMMIT DIRECTLY AS LONG AS WE USE SUBTREE SPLIT IN site-cpd-theming
  • CSS 61.7%
  • Twig 38.3%
Find a file
Andi 5a1b8596d6
All checks were successful
Trigger dev deployment on internal-site-repo / deploy (push) Successful in 1s
Add required marker
2026-05-21 17:56:22 +02:00
.forgejo/workflows Rename c4c_claro_sub to c4c_theme 2026-05-19 10:21:18 +02:00
components Rename c4c_claro_sub to c4c_theme 2026-05-19 10:21:18 +02:00
css Add required marker 2026-05-21 17:56:22 +02:00
templates Rename c4c_claro_sub to c4c_theme 2026-05-19 10:21:18 +02:00
c4c_theme.info.yml Update readme 2026-05-19 12:45:44 +02:00
c4c_theme.libraries.yml Add form-claro.css 2026-05-21 17:42:51 +02:00
composer.json Rename c4c_claro_sub to c4c_theme 2026-05-19 10:21:18 +02:00
README.md Update readme 2026-05-19 12:45:44 +02:00

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) ;