lesson-helper.css 322 B

12345678910111213141516171819
  1. .contextlost {
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 100%;
  7. background: red;
  8. color: white;
  9. font-family: monospace;
  10. font-weight: bold;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. }
  15. .contextlost>div {
  16. padding: 0.5em;
  17. background: darkred;
  18. cursor: pointer;
  19. }