overlay.html 725 B

12345678910111213141516171819202122232425262728293031323334
  1. <style>
  2. .overlay {
  3. width: 100%;
  4. height: 100%;
  5. display: none;
  6. align-items: center;
  7. justify-content: center;
  8. background-color: rgba(121, 121, 121, 0.3);
  9. }
  10. error.overlay {
  11. background-color: rgba(121, 121, 121, 1);
  12. }
  13. div#close-button {
  14. position: absolute;
  15. top: 10px;
  16. right: 10px;
  17. width: 30px;
  18. height: 30px;
  19. cursor: pointer;
  20. }
  21. div#close-button img {
  22. width: 100%;
  23. }
  24. </style>
  25. <div id="close-button">
  26. <img src="{{closeImage}}" alt="{{closeText}}">
  27. </div>
  28. <help class="overlay"></help>
  29. <error class="overlay"></error>
  30. <share class="overlay"></share>