You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.2KB

  1. :root {
  2. --bg: #0b0f14;
  3. --panel: #111821;
  4. --grid: #1c2a39;
  5. --text: #d6e3f0;
  6. --accent: #48d1b8;
  7. --muted: #7f93aa;
  8. }
  9. * { box-sizing: border-box; }
  10. body {
  11. margin: 0;
  12. font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  13. background: radial-gradient(circle at 20% 20%, #14202e, #0b0f14 60%);
  14. color: var(--text);
  15. height: 100vh;
  16. display: flex;
  17. flex-direction: column;
  18. }
  19. header, footer {
  20. padding: 12px 20px;
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-between;
  24. background: linear-gradient(90deg, #0f1824, #0b0f14);
  25. border-bottom: 1px solid #0f2233;
  26. }
  27. footer {
  28. border-top: 1px solid #0f2233;
  29. border-bottom: none;
  30. }
  31. .title {
  32. font-weight: 600;
  33. letter-spacing: 0.02em;
  34. }
  35. .meta {
  36. font-size: 0.9rem;
  37. color: var(--muted);
  38. }
  39. main {
  40. flex: 1;
  41. display: grid;
  42. grid-template-rows: 1fr 1.2fr;
  43. gap: 12px;
  44. padding: 12px;
  45. }
  46. .panel {
  47. background: var(--panel);
  48. border: 1px solid #13263b;
  49. border-radius: 10px;
  50. padding: 8px;
  51. position: relative;
  52. }
  53. canvas {
  54. width: 100%;
  55. height: 100%;
  56. border-radius: 6px;
  57. background: #06090d;
  58. }
  59. #status {
  60. color: var(--muted);
  61. }
  62. @media (max-width: 820px) {
  63. main {
  64. grid-template-rows: 1fr 1fr;
  65. }
  66. }