style.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 0;
  6. font-family: "Segoe UI", "PingFang SC", sans-serif;
  7. background: #edf3ea;
  8. color: #163126;
  9. }
  10. .layout {
  11. display: grid;
  12. grid-template-columns: 400px 1fr;
  13. min-height: 100vh;
  14. }
  15. .panel {
  16. padding: 20px;
  17. background: rgba(250, 252, 248, 0.96);
  18. border-right: 1px solid rgba(22, 49, 38, 0.08);
  19. overflow-y: auto;
  20. }
  21. .panel__header h1 {
  22. margin: 8px 0 10px;
  23. font-size: 28px;
  24. }
  25. .panel__eyebrow {
  26. font-weight: 800;
  27. letter-spacing: 0.18em;
  28. font-size: 12px;
  29. color: #557266;
  30. }
  31. .badge {
  32. display: inline-flex;
  33. align-items: center;
  34. min-height: 30px;
  35. padding: 0 12px;
  36. border-radius: 999px;
  37. font-size: 13px;
  38. font-weight: 700;
  39. }
  40. .badge--muted {
  41. background: #e5ece5;
  42. color: #4f6458;
  43. }
  44. .badge--ok {
  45. background: #d8f7e3;
  46. color: #0a7a3d;
  47. }
  48. .group {
  49. margin-top: 18px;
  50. padding: 16px;
  51. border-radius: 18px;
  52. background: #ffffff;
  53. box-shadow: 0 10px 30px rgba(34, 63, 49, 0.07);
  54. }
  55. .group__title {
  56. font-size: 14px;
  57. font-weight: 800;
  58. letter-spacing: 0.08em;
  59. color: #5d786c;
  60. margin-bottom: 12px;
  61. }
  62. .group__status {
  63. min-height: 18px;
  64. margin: -4px 0 12px;
  65. font-size: 12px;
  66. line-height: 1.5;
  67. color: #5e786d;
  68. }
  69. .row {
  70. display: flex;
  71. gap: 10px;
  72. margin-bottom: 10px;
  73. }
  74. .btn {
  75. flex: 1;
  76. min-height: 40px;
  77. border: 0;
  78. border-radius: 12px;
  79. background: #ebf0ea;
  80. color: #193226;
  81. font-weight: 700;
  82. cursor: pointer;
  83. transition: transform 120ms ease, background 120ms ease, color 120ms ease, opacity 120ms ease;
  84. }
  85. .btn--primary {
  86. background: #103f2f;
  87. color: #fff;
  88. }
  89. .btn--accent {
  90. background: #0ea5a4;
  91. color: #fff;
  92. }
  93. .btn.is-active {
  94. outline: 2px solid #ffb300;
  95. }
  96. .btn:disabled {
  97. opacity: 0.56;
  98. cursor: not-allowed;
  99. }
  100. .file-input-hidden {
  101. position: absolute;
  102. width: 1px;
  103. height: 1px;
  104. opacity: 0;
  105. pointer-events: none;
  106. }
  107. .field {
  108. display: flex;
  109. flex-direction: column;
  110. gap: 6px;
  111. margin-bottom: 10px;
  112. font-size: 13px;
  113. color: #557266;
  114. }
  115. .field input,
  116. .field select {
  117. min-height: 38px;
  118. border: 1px solid rgba(22, 49, 38, 0.12);
  119. border-radius: 10px;
  120. padding: 0 12px;
  121. font: inherit;
  122. }
  123. .field--check {
  124. flex-direction: row;
  125. align-items: center;
  126. }
  127. .hint {
  128. font-size: 12px;
  129. color: #678276;
  130. line-height: 1.5;
  131. }
  132. .hint--ok {
  133. color: #0a7a3d;
  134. }
  135. .hint--warn {
  136. color: #8d4b08;
  137. }
  138. .stat {
  139. display: flex;
  140. justify-content: space-between;
  141. padding: 8px 0;
  142. border-bottom: 1px solid rgba(22, 49, 38, 0.06);
  143. }
  144. .stat:last-child {
  145. border-bottom: 0;
  146. }
  147. .stat span {
  148. color: #668073;
  149. font-size: 13px;
  150. }
  151. .stat strong {
  152. font-size: 14px;
  153. }
  154. .log {
  155. min-height: 140px;
  156. max-height: 220px;
  157. overflow-y: auto;
  158. padding: 10px 12px;
  159. border-radius: 12px;
  160. background: #f3f7f1;
  161. font-size: 12px;
  162. line-height: 1.5;
  163. color: #486257;
  164. white-space: pre-wrap;
  165. }
  166. .jump-list {
  167. display: flex;
  168. flex-wrap: wrap;
  169. gap: 8px;
  170. margin-top: 12px;
  171. }
  172. .jump-chip {
  173. min-height: 32px;
  174. padding: 0 12px;
  175. border: 0;
  176. border-radius: 999px;
  177. background: #eef6ea;
  178. color: #244132;
  179. font-size: 12px;
  180. font-weight: 700;
  181. cursor: pointer;
  182. }
  183. .jump-chip--start {
  184. background: #fff0c9;
  185. }
  186. .jump-chip--finish {
  187. background: #ffe2b8;
  188. }
  189. .map-shell {
  190. min-height: 100vh;
  191. }
  192. #map {
  193. width: 100%;
  194. height: 100vh;
  195. }
  196. .leaflet-container {
  197. background: #dfeadb;
  198. }
  199. .course-marker {
  200. display: flex;
  201. align-items: center;
  202. justify-content: center;
  203. }
  204. .course-marker__control {
  205. width: 34px;
  206. height: 34px;
  207. border-radius: 999px;
  208. border: 3px solid #cc0077;
  209. color: #cc0077;
  210. background: rgba(255, 255, 255, 0.9);
  211. font-size: 16px;
  212. font-weight: 800;
  213. line-height: 1;
  214. }
  215. .course-marker__start {
  216. width: 0;
  217. height: 0;
  218. border-left: 16px solid transparent;
  219. border-right: 16px solid transparent;
  220. border-bottom: 28px solid #cc0077;
  221. filter: drop-shadow(0 3px 10px rgba(22, 49, 38, 0.22));
  222. }
  223. .course-marker__finish {
  224. position: relative;
  225. width: 36px;
  226. height: 36px;
  227. border-radius: 999px;
  228. border: 4px solid #cc0077;
  229. background: rgba(255, 255, 255, 0.76);
  230. }
  231. .course-marker__finish::after {
  232. content: "";
  233. position: absolute;
  234. inset: 6px;
  235. border-radius: 999px;
  236. border: 3px solid #cc0077;
  237. }