popup.css 832 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. body {
  2. width: 300px;
  3. font-family: Arial, sans-serif;
  4. }
  5. .container {
  6. padding: 10px;
  7. }
  8. h1 {
  9. font-size: 18px;
  10. margin-bottom: 15px;
  11. }
  12. h2 {
  13. font-size: 16px;
  14. margin-top: 15px;
  15. margin-bottom: 10px;
  16. }
  17. button {
  18. margin: 5px 0;
  19. padding: 8px;
  20. width: 100%;
  21. background-color: #0060df;
  22. color: white;
  23. border: none;
  24. cursor: pointer;
  25. border-radius: 4px;
  26. }
  27. button:hover {
  28. background-color: #003eaa;
  29. }
  30. input {
  31. width: 100%;
  32. padding: 8px;
  33. margin: 5px 0;
  34. box-sizing: border-box;
  35. border: 1px solid #ccc;
  36. border-radius: 4px;
  37. }
  38. .button-group {
  39. display: flex;
  40. gap: 5px;
  41. }
  42. .button-group button {
  43. flex: 1;
  44. }
  45. .storage-section {
  46. margin-top: 15px;
  47. padding-top: 10px;
  48. border-top: 1px solid #eee;
  49. }
  50. #status, #storage-result {
  51. margin-top: 10px;
  52. padding: 5px;
  53. color: #333;
  54. min-height: 20px;
  55. }