help.css 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. .help-includes {
  7. overflow: hidden !important;
  8. }
  9. .help-list__text {
  10. margin-left: 24px;
  11. }
  12. .help-iframe {
  13. width: 100%;
  14. height: 100%;
  15. margin: 0;
  16. padding: 0;
  17. border: 0;
  18. overflow: auto;
  19. }
  20. .help-wrapper {
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. height: 100%;
  25. width: 100%;
  26. }
  27. .help-content__heading {
  28. text-align: center;
  29. padding: 20px;
  30. }
  31. .help-content {
  32. display: block;
  33. padding: 20px;
  34. }
  35. .help-content__body {
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. flex-wrap: wrap;
  40. }
  41. .help-content__body > .button {
  42. margin: 20px;
  43. }