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.

52 lines
782 B

  1. .changes-page {
  2. width: 90%;
  3. max-width: 95ch;
  4. margin: auto;
  5. > p {
  6. text-align: center;
  7. }
  8. h1 {
  9. font-weight: 200;
  10. text-align: center;
  11. }
  12. .header {
  13. text-align: center;
  14. vertical-align: middle;
  15. margin-bottom: 1em;
  16. h1 {
  17. display: block;
  18. margin-bottom: 0;
  19. }
  20. a {
  21. vertical-align: middle;
  22. display: inline-block;
  23. padding: 0.5em 0.5ch 0.5em 0.5ch;
  24. opacity: 0.5;
  25. }
  26. a:hover {
  27. cursor: pointer;
  28. opacity: 1;
  29. }
  30. }
  31. .show-more-button {
  32. margin: 1em 0;
  33. padding: 0.5em 2em;
  34. font-size: 2em;
  35. text-align: center;
  36. user-select: none;
  37. display: block;
  38. color: #DA1;
  39. }
  40. .show-more-button:hover {
  41. cursor: pointer;
  42. text-decoration: underline;
  43. }
  44. }