style.css 4.2 KB

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