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.

65 lines
900 B

  1. div.post {
  2. margin-bottom: 1ch;
  3. div.post-meta-row {
  4. padding: 0;
  5. margin: 0;
  6. }
  7. div.options {
  8. position: absolute;
  9. text-align: right;
  10. width: calc(100% - 35.5ch);
  11. max-width: 95ch;
  12. a {
  13. display: inline-block;
  14. padding: 0 0.5ch;
  15. opacity: 0.5;
  16. cursor: pointer;
  17. user-select: none;
  18. }
  19. a:hover {
  20. opacity: 1;
  21. }
  22. }
  23. div.post-body {
  24. font-size: 1.25em;
  25. div.nick-wrapper {
  26. display: inline;
  27. .nick-decoration {
  28. display: inline;
  29. }
  30. .nick {
  31. display: inline;
  32. }
  33. }
  34. div.post-content {
  35. display: inline;
  36. }
  37. div.annotation {
  38. margin-top: 0.33em;
  39. }
  40. }
  41. div.post-body p:first-of-type {
  42. margin-top: 0;
  43. padding-top: 0;
  44. }
  45. }
  46. div.post.multipart {
  47. margin-top: -1.25em;
  48. div.post-meta {
  49. span {
  50. display: none;
  51. }
  52. }
  53. }