You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-FileCopyrightText: 2015 ownCloud Inc.
  4. * SPDX-FileCopyrightText: 2015 Raghu Nayyar, http://raghunayyar.com
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. /* Global Components */
  8. .pull-left {
  9. float: left;
  10. }
  11. .pull-right {
  12. float: right;
  13. }
  14. .clear-left {
  15. clear: left;
  16. }
  17. .clear-right {
  18. clear: right;
  19. }
  20. .clear-both {
  21. clear: both;
  22. }
  23. .hidden {
  24. display: none;
  25. }
  26. .hidden-visually {
  27. position: absolute;
  28. left: -10000px;
  29. top: -10000px;
  30. width: 1px;
  31. height: 1px;
  32. overflow: hidden;
  33. }
  34. .bold {
  35. font-weight:600;
  36. }
  37. .center {
  38. text-align:center;
  39. }
  40. .inlineblock {
  41. display: inline-block;
  42. }