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.

76 lines
1.2 KiB

  1. div.tag-options {
  2. margin-top: 0em;
  3. div.tag {
  4. padding: 0.25em;
  5. border-bottom: 1px solid rgba(0, 220, 255, 0.125);
  6. div.content {
  7. width: 80%;
  8. display: inline-block;
  9. }
  10. button {
  11. width: 20%;
  12. display: inline-block;
  13. margin: 0;
  14. }
  15. }
  16. div.field {
  17. box-sizing: border-box;
  18. display: inline-block;
  19. width: 35%;
  20. margin: 0;
  21. margin-top: 0ch;
  22. input {
  23. height: 1.55em;
  24. }
  25. }
  26. div.button-field {
  27. position: relative;
  28. top: -0.75ch;
  29. box-sizing: border-box;
  30. display: inline-block;
  31. width: 30%;
  32. margin: 0;
  33. text-align: right;
  34. button {
  35. display: inline-block;
  36. width: 14ch;
  37. margin-right: 1ch;
  38. }
  39. }
  40. div.suggestion-list {
  41. margin: -2em 0 1em 0;
  42. a.tag {
  43. display: inline-block;
  44. margin: 0.25em 0.5ch;
  45. padding: 0.0625em 0.5ch;
  46. outline: 1px solid;
  47. opacity: 0.75;
  48. user-select: none;
  49. }
  50. a.tag:hover {
  51. opacity: 1;
  52. cursor: pointer;
  53. }
  54. div.header {
  55. display: block;
  56. padding: 0em 0.5ch;
  57. padding-top: 0.75em;
  58. font-size: 0.75em;
  59. opacity: 0.5;
  60. user-select: none;
  61. }
  62. }
  63. }