help.css 917 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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__link {
  10. display: flex;
  11. align-items: center;
  12. height: var(--default-clickable-area);
  13. margin: 0 8px;
  14. background-position: left center;
  15. }
  16. .help-list__text {
  17. margin-inline-start: 20px;
  18. }
  19. .help-iframe {
  20. width: 100%;
  21. height: 100%;
  22. margin: 0;
  23. padding: 0;
  24. border: 0;
  25. overflow: auto;
  26. }
  27. .help-wrapper {
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. height: 100%;
  32. width: 100%;
  33. }
  34. .help-content__heading {
  35. text-align: center;
  36. padding: 20px;
  37. }
  38. .help-content {
  39. display: block;
  40. padding: 20px;
  41. }
  42. .help-content__body {
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. flex-wrap: wrap;
  47. }
  48. .help-content__body > .button {
  49. margin: 20px;
  50. }