app.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html,
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  9. background: #0d0d0d;
  10. color: #e6e6e6;
  11. }
  12. main[data-page="support"] {
  13. max-width: 1400px;
  14. margin: 0 auto;
  15. padding: 2rem;
  16. }
  17. main[data-page="support"] h1 {
  18. margin: 0 0 1rem;
  19. font-size: 1.25rem;
  20. font-weight: 500;
  21. }
  22. form[data-component="lookup"] {
  23. display: flex;
  24. gap: 0.5rem;
  25. margin-bottom: 2rem;
  26. align-items: center;
  27. flex-wrap: wrap;
  28. }
  29. form[data-component="lookup"] input[type="text"] {
  30. flex: 1;
  31. min-width: 280px;
  32. padding: 0.6rem 0.75rem;
  33. border: 1px solid #2a2a2a;
  34. background: #161616;
  35. color: #e6e6e6;
  36. border-radius: 4px;
  37. font: inherit;
  38. }
  39. form[data-component="lookup"] label {
  40. display: inline-flex;
  41. align-items: center;
  42. gap: 0.4rem;
  43. color: #b0b0b0;
  44. }
  45. form[data-component="lookup"] button {
  46. padding: 0.6rem 1rem;
  47. border: 1px solid #3a3a3a;
  48. background: #1f1f1f;
  49. color: #e6e6e6;
  50. border-radius: 4px;
  51. font: inherit;
  52. cursor: pointer;
  53. }
  54. form[data-component="lookup"] button:hover {
  55. background: #2a2a2a;
  56. }
  57. form[data-component="lookup"] button:disabled {
  58. opacity: 0.5;
  59. cursor: not-allowed;
  60. }
  61. [data-component="error"] {
  62. color: #ff6b6b;
  63. background: #2a1414;
  64. border: 1px solid #4a1f1f;
  65. padding: 0.75rem 1rem;
  66. border-radius: 4px;
  67. margin-bottom: 1rem;
  68. }
  69. [data-component="section"] {
  70. margin-bottom: 2rem;
  71. }
  72. [data-component="section"] h2 {
  73. margin: 0 0 0.5rem;
  74. font-size: 1rem;
  75. font-weight: 500;
  76. color: #b0b0b0;
  77. border-bottom: 1px solid #2a2a2a;
  78. padding-bottom: 0.4rem;
  79. }
  80. [data-component="section"] h3 {
  81. margin: 1.75rem 0 0.5rem;
  82. font-size: 0.875rem;
  83. font-weight: 500;
  84. color: #888;
  85. }
  86. [data-component="section"] h3:first-of-type {
  87. margin-top: 0;
  88. }
  89. [data-component="section"] table {
  90. width: 100%;
  91. border-collapse: collapse;
  92. font-size: 0.8125rem;
  93. }
  94. [data-component="section"] th,
  95. [data-component="section"] td {
  96. text-align: left;
  97. padding: 0.4rem 0.6rem;
  98. border-bottom: 1px solid #1f1f1f;
  99. vertical-align: top;
  100. white-space: nowrap;
  101. }
  102. [data-component="section"] th {
  103. color: #888;
  104. font-weight: 500;
  105. background: #141414;
  106. }
  107. [data-component="section"] td a {
  108. color: #6ea8fe;
  109. }
  110. [data-component="section"] [data-empty] {
  111. color: #666;
  112. font-style: italic;
  113. padding: 0.4rem 0;
  114. }