layout-content-medium.css

Same filename in other branches
  1. 10 core/themes/olivero/css/layout/layout-content-medium.css
  2. 11.x core/themes/olivero/css/layout/layout-content-medium.css

Grid system definition for the content wide layout.

File

core/themes/olivero/css/layout/layout-content-medium.css

View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Grid system definition for the content wide layout.
  10. */
  11. .layout--content-medium,
  12. .layout--pass--content-medium > * {
  13. -ms-grid-column: 1;
  14. -ms-grid-column-span: 6;
  15. grid-column: 1 / 7;
  16. width: 100%;
  17. }
  18. @media (min-width: 43.75rem) {
  19. .layout--content-medium,
  20. .layout--pass--content-medium > * {
  21. -ms-grid-column: 2;
  22. -ms-grid-column-span: 12;
  23. grid-column: 2 / 14;
  24. }
  25. }
  26. @media (min-width: 62.5rem) {
  27. .layout--content-medium,
  28. .layout--pass--content-medium > * {
  29. -ms-grid-column: 3;
  30. -ms-grid-column-span: 10;
  31. grid-column: 3 / 13;
  32. }
  33. }
  34. /*
  35. If .layout--content-medium is nested within itself, or an element that's inheriting the
  36. layout--content-medium styles from its parent region, go full width within its
  37. parent .grid-full.
  38. */
  39. @media (min-width: 43.75rem) {
  40. .layout--pass--content-medium > * .layout--content-medium,
  41. .layout--content-medium .layout--content-medium,
  42. .layout--pass--content-medium > * .layout--pass--content-medium > *,
  43. .layout--content-medium .layout--pass--content-medium > * {
  44. -ms-grid-column: 1;
  45. -ms-grid-column-span: 12;
  46. grid-column: 1 / 13;
  47. }
  48. }
  49. @media (min-width: 62.5rem) {
  50. .layout--pass--content-medium > * .layout--content-medium,
  51. .layout--content-medium .layout--content-medium,
  52. .layout--pass--content-medium > * .layout--pass--content-medium > *,
  53. .layout--content-medium .layout--pass--content-medium > * {
  54. -ms-grid-column: 1;
  55. -ms-grid-column-span: 10;
  56. grid-column: 1 / 11;
  57. }
  58. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.