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.

35 lines
585 B

  1. div.annotation {
  2. outline: 1px solid;
  3. padding: 0.25em 1ch;
  4. margin-bottom: 1em;
  5. h2 {
  6. font-size: 1em;
  7. margin: 0;
  8. text-align: center;
  9. border-bottom: 0.25px dotted;
  10. margin-bottom: 0.25em;
  11. padding-bottom: 0.25em;
  12. }
  13. p {
  14. margin-top: 0.5em;
  15. }
  16. p:first-of-type {
  17. margin: 0;
  18. }
  19. }
  20. div.annotation-level-info {
  21. background-color: rgba(0, 31, 63, 0.5);
  22. color: #08F;
  23. }
  24. div.annotation-level-warning {
  25. background-color: rgba(63, 31, 0, 0.5);
  26. color: #F80;
  27. }
  28. div.annotation-level-error {
  29. background-color: rgba(63, 7, 0, 0.5);
  30. color: #F10;
  31. }