cpd-external/c4c_theme

There is no license information available for the latest version (dev-master) of this package.

Maintainers

Package info

crowdpower.app.codey.ch/CrowdPower-External/c4c_theme

Type:drupal-theme

pkg:composer/cpd-external/c4c_theme

Statistics

Installs: 13

Dependents: 0

Suggesters: 0

dev-master 2026-05-21 15:56 UTC

This package is auto-updated.

Last update: 2026-05-21 15:56:41 UTC


README

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