contact.css 494 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * @file
  3. * This file is used to style the contact form.
  4. */
  5. .contact-form {
  6. max-width: 600px;
  7. margin: auto auto 1rem;
  8. padding: 0 1rem;
  9. }
  10. @media screen and (min-width: 30rem) { /* 480px */
  11. .contact-form {
  12. margin-bottom: 2rem;
  13. }
  14. }
  15. @media screen and (min-width: 60rem) { /* 960px */
  16. .contact-form {
  17. margin-bottom: 3rem;
  18. }
  19. }
  20. .contact-form .form-item-copy {
  21. margin-bottom: 0;
  22. }
  23. .contact-form .form-item-copy .form-checkbox {
  24. min-width: auto;
  25. margin: 0 5px 0 0;
  26. }