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.

70 lines
1.0 KiB

6 years ago
6 years ago
6 years ago
  1. tr.content-list-item {
  2. user-select: none;
  3. outline: 0.05px solid;
  4. > td.icon {
  5. font-size: 2.75em;
  6. text-align: center;
  7. width: 2.5ch;
  8. outline: 0.05px solid;
  9. @media screen and (max-width: 700px) {
  10. width: 1.25ch;
  11. font-size: 1.5em;
  12. }
  13. }
  14. > td.content {
  15. padding: 0.25em;
  16. padding-bottom: 0.33em;
  17. margin: 0;
  18. > .title {
  19. padding: 0.25em 1ch;
  20. user-select: text;
  21. a {
  22. font-size: 1.333em;
  23. }
  24. a:hover {
  25. color: white;
  26. }
  27. }
  28. > .description {
  29. margin: 0 1ch;
  30. p {
  31. margin: 0;
  32. }
  33. }
  34. > .characters {
  35. margin: 0 1ch;
  36. > .character {
  37. display: inline-block;
  38. margin-right: 1ch;
  39. }
  40. > .character:last-of-type {
  41. .comma {
  42. display: none;
  43. }
  44. }
  45. }
  46. > .meta {
  47. > div {
  48. display: inline-block;
  49. padding: 0.25em 1ch;
  50. user-select: text;
  51. }
  52. > div.spc {
  53. padding: 0;
  54. user-select: none;
  55. }
  56. }
  57. }
  58. }