styles.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .grammar-panel {
  2. position: fixed;
  3. right: 16px;
  4. bottom: 16px;
  5. width: 220px;
  6. padding: 12px;
  7. border-radius: 10px;
  8. box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  9. background: #fff;
  10. font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  11. z-index: 2147483647;
  12. border: 1px solid rgba(15, 23, 42, 0.08);
  13. }
  14. .grammar-panel__header {
  15. display: flex;
  16. align-items: center;
  17. justify-content: space-between;
  18. margin-bottom: 10px;
  19. }
  20. .grammar-panel__title {
  21. font-size: 14px;
  22. font-weight: 600;
  23. margin: 0;
  24. color: #0f172a;
  25. }
  26. .grammar-panel__close {
  27. background: transparent;
  28. border: none;
  29. width: 20px;
  30. height: 20px;
  31. font-size: 16px;
  32. cursor: pointer;
  33. color: #475569;
  34. }
  35. .grammar-panel button {
  36. width: 100%;
  37. padding: 8px;
  38. margin-bottom: 6px;
  39. border: none;
  40. border-radius: 6px;
  41. font-size: 13px;
  42. cursor: pointer;
  43. background: #2563eb;
  44. color: white;
  45. transition: background 0.2s ease;
  46. }
  47. .grammar-panel button:hover {
  48. background: #1d4ed8;
  49. }
  50. .grammar-panel__status {
  51. min-height: 16px;
  52. font-size: 11px;
  53. color: #475569;
  54. margin-top: 4px;
  55. }
  56. .grammar-panel__status.error {
  57. color: #dc2626;
  58. }
  59. .grammar-panel__status.success {
  60. color: #0a8754;
  61. }