node-add.css 818 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * Layout overrides for node add/edit form.
  9. */
  10. .layout-region-node-footer__content {
  11. margin-top: 1.5em;
  12. }
  13. /**
  14. * Widescreen
  15. *
  16. * Both of the following media queries must *exactly* match what is in
  17. * node.module.css. This is rather crazy.
  18. *
  19. * @todo Figure out how to reduce media query duplication across files
  20. * and modules. Layout styles only allowed in themes?
  21. */
  22. @media
  23. screen and (min-width: 780px), (orientation: landscape) and (min-device-height: 780px) {
  24. .layout-region-node-footer__content {
  25. margin-top: 0.5em;
  26. }
  27. }
  28. /* Push sidebar down to horizontal align with form section */
  29. .layout-region-node-secondary {
  30. margin-top: 1.5rem;
  31. }