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.

46 lines
625 B

  1. div.overlay {
  2. position: fixed;
  3. left: 0;
  4. right: 0;
  5. top: 0;
  6. bottom: 0;
  7. padding-top: 4em;
  8. z-index: 999;
  9. background-color: rgba(0, 0, 0, 0.75);
  10. overflow-y: auto;
  11. h1 {
  12. text-align: center;
  13. }
  14. div.modal {
  15. width: 60ch;
  16. max-width: 95%;
  17. margin: auto;
  18. }
  19. div.overlay-options {
  20. width: 60ch;
  21. max-width: 95%;
  22. margin: auto;
  23. text-align: right;
  24. div {
  25. opacity: 0.75;
  26. user-select: none;
  27. cursor: pointer;
  28. }
  29. div:hover {
  30. opacity: 1;
  31. }
  32. }
  33. }
  34. div.overlay.notification-overlay {
  35. padding-top: 20%;
  36. div.modal {
  37. text-align: center;
  38. }
  39. }