The frontend/UI server, written in JS using the MarkoJS library
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.

75 lines
1.1 KiB

  1. div.tags-page {
  2. h1 {
  3. font-weight: 100;
  4. text-align: center;
  5. }
  6. p {
  7. text-align: center;
  8. }
  9. div.groups {
  10. column-count: 5;
  11. padding: 0.5em;
  12. div.group {
  13. padding: 0.5em 0em;
  14. vertical-align: top;
  15. h2 {
  16. font-weight: 100;
  17. padding-bottom: 0.125em;
  18. border-bottom: 0.5px solid;
  19. margin-bottom: 0.25em;
  20. margin-top: 0;
  21. }
  22. ul {
  23. margin: 0;
  24. padding: 0;
  25. li {
  26. list-style: none;
  27. a:hover {
  28. text-decoration: underline;
  29. }
  30. }
  31. }
  32. }
  33. div.group:first-of-type {
  34. padding: 0;
  35. }
  36. }
  37. }
  38. @media screen and (max-width: 2000px) {
  39. div.tags-page {
  40. div.groups {
  41. column-count: 4;
  42. }
  43. }
  44. }
  45. @media screen and (max-width: 1400px) {
  46. div.tags-page {
  47. div.groups {
  48. column-count: 3;
  49. }
  50. }
  51. }
  52. @media screen and (max-width: 1000px) {
  53. div.tags-page {
  54. div.groups {
  55. column-count: 2;
  56. }
  57. }
  58. }
  59. @media screen and (max-width: 900px) {
  60. div.tags-page {
  61. div.groups {
  62. column-count: 1;
  63. }
  64. }
  65. }