fullscreen.css 375 B

12345678910111213141516171819202122
  1. html:-moz-full-screen {
  2. background: grey;
  3. }
  4. html:-webkit-full-screen {
  5. background: grey;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. html:fullscreen{
  10. background: grey;
  11. width: 100% !important;
  12. height: 100% !important;
  13. }
  14. :not(:root):fullscreen::backdrop{
  15. background:whitesmoke;
  16. }
  17. .pear-full-screen {
  18. width: 100% !important;
  19. height: 100% !important;
  20. }