popup.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-family: Arial, sans-serif;
  8. background-color: #f5f5f5;
  9. color: #333;
  10. width: 400px;
  11. max-height: 600px;
  12. overflow-y: auto;
  13. }
  14. #app {
  15. padding: 16px;
  16. }
  17. header {
  18. margin-bottom: 16px;
  19. text-align: center;
  20. }
  21. h1 {
  22. font-size: 20px;
  23. color: #333;
  24. }
  25. h2 {
  26. font-size: 16px;
  27. margin-bottom: 8px;
  28. padding-bottom: 4px;
  29. border-bottom: 1px solid #ddd;
  30. }
  31. .playlist {
  32. background: #fff;
  33. border-radius: 8px;
  34. padding: 12px;
  35. margin-bottom: 16px;
  36. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  37. }
  38. .video-item {
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. padding: 8px 0;
  43. border-bottom: 1px solid #eee;
  44. }
  45. .video-item:last-child {
  46. border-bottom: none;
  47. }
  48. .video-title {
  49. flex: 1;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. white-space: nowrap;
  53. }
  54. .video-actions {
  55. display: flex;
  56. gap: 8px;
  57. }
  58. button, a.play-btn {
  59. padding: 4px 8px;
  60. border: none;
  61. border-radius: 4px;
  62. cursor: pointer;
  63. font-size: 12px;
  64. }
  65. .play-btn {
  66. background-color: #4285f4;
  67. color: white;
  68. text-decoration: none;
  69. display: inline-block;
  70. text-align: center;
  71. }
  72. .remove-btn {
  73. background-color: #f44336;
  74. color: white;
  75. }
  76. button:hover, a.play-btn:hover {
  77. opacity: 0.9;
  78. }
  79. .empty-playlist {
  80. padding: 8px 0;
  81. color: #888;
  82. font-style: italic;
  83. font-size: 14px;
  84. }
  85. .current-video {
  86. background-color: #e3f2fd;
  87. border-left: 3px solid #4285f4;
  88. padding-left: 8px;
  89. font-weight: bold;
  90. }