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.

57 lines
835 B

  1. // Copyright (c) 2018 Tildes contributors <code@tildes.net>
  2. // SPDX-License-Identifier: AGPL-3.0-or-later
  3. .group-list {
  4. margin: 1rem 0;
  5. ol {
  6. margin-left: 1rem;
  7. }
  8. li {
  9. text-indent: -1rem;
  10. margin-left: 1rem;
  11. }
  12. li + li {
  13. margin-top: 1rem;
  14. }
  15. .link-group {
  16. font-weight: bold;
  17. }
  18. }
  19. .group-list-activity {
  20. font-style: italic;
  21. font-size: 0.6rem;
  22. line-height: 0.8rem;
  23. }
  24. .group-list-item-not-subscribed {
  25. a.link-group {
  26. color: var(--warning-color);
  27. }
  28. }
  29. .group-subscription {
  30. display: flex;
  31. align-items: center;
  32. margin: 1rem 0;
  33. .group-subscription-count,
  34. button {
  35. flex: 1; // makes the two elements equal width
  36. }
  37. .btn-used {
  38. border: 0;
  39. }
  40. }
  41. .group-subscription-count {
  42. white-space: nowrap;
  43. font-size: 0.6rem;
  44. text-align: center;
  45. margin-right: 0.2rem;
  46. }