extension-popup.html 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="color-scheme" content="dark light" />
  6. <style>
  7. body {
  8. user-select: none;
  9. cursor: default;
  10. margin: 0;
  11. padding: 0;
  12. width: 100vw;
  13. height: 100vh;
  14. overflow: hidden;
  15. }
  16. * {
  17. box-sizing: border-box;
  18. }
  19. .app {
  20. margin: 16px;
  21. margin-top: 3px;
  22. box-shadow: 0 12px 16px rgba(0, 0, 0, 0.12),
  23. 0 8px 10px rgba(0, 0, 0, 0.16);
  24. overflow: hidden;
  25. position: relative;
  26. transition: 0.3s opacity;
  27. background-color: white;
  28. width: fit-content;
  29. opacity: 0;
  30. }
  31. .visible {
  32. opacity: 1;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div id="app" class="app">
  38. <div id="container"></div>
  39. </div>
  40. </body>
  41. </html>