twocol_bricks.css 621 B

12345678910111213141516171819202122232425
  1. /*
  2. * @file
  3. * Provides the layout styles for layout_twocol_bricks.
  4. *
  5. * @todo Using display: flex requires https://www.drupal.org/node/2842298 to be
  6. * in before this can be marked as stable.
  7. */
  8. .layout--twocol-bricks {
  9. display: flex;
  10. flex-wrap: wrap;
  11. }
  12. .layout--twocol-bricks > .layout__region {
  13. flex: 0 1 100%;
  14. }
  15. @media screen and (min-width: 40em) {
  16. .layout--twocol-bricks > .layout__region--first-above,
  17. .layout--twocol-bricks > .layout__region--second-above,
  18. .layout--twocol-bricks > .layout__region--first-below,
  19. .layout--twocol-bricks > .layout__region--second-below {
  20. flex: 0 1 50%;
  21. }
  22. }