threecol_25_50_25.css 520 B

1234567891011121314151617181920212223
  1. /*
  2. * @file
  3. * Provides the layout styles for layout_threecol_25_50_25.
  4. */
  5. .layout--threecol-25-50-25 {
  6. display: flex;
  7. flex-wrap: wrap;
  8. }
  9. .layout--threecol-25-50-25 > .layout__region,
  10. .layout--threecol-25-50-25 > .layout__region--second {
  11. flex: 0 1 100%;
  12. }
  13. @media screen and (min-width: 40em) {
  14. .layout--threecol-25-50-25 > .layout__region--first,
  15. .layout--threecol-25-50-25 > .layout__region--third {
  16. flex: 0 1 25%;
  17. }
  18. .layout--threecol-25-50-25 > .layout__region--second {
  19. flex: 0 1 50%;
  20. }
  21. }