:root { --primary-color: #0d6efd; --primary-hover: #0b5ed7; --secondary-color: #6c757d; --secondary-hover: #5c636a; --dark-bg: #121212; --dark-text: #e0e0e0; --dark-fieldset-bg: #1e1e1e; --dark-border: #333; --dark-code-bg: #2d2d2d; --dark-log-bg: #2a2a2a; --dark-input-bg: #2d2d2d; --dark-input-text: #e0e0e0; } body { margin: 0; padding: 0; font-family: system-ui, -apple-system, sans-serif; overflow-x: hidden; } .debug { display: none !important; } body.debug-mode .debug { display: flex !important; } body.debug-mode { background-color: var(--dark-bg); color: var(--dark-text); } body.debug-mode .main { background-color: var(--dark-bg); color: var(--dark-text); } body.debug-mode fieldset { background-color: var(--dark-fieldset-bg); box-shadow: 0 .5rem 0.5rem rgba(0, 0, 0, 0.5); } body.debug-mode h3 { border-bottom: 1px solid var(--dark-border); color: var(--dark-text); } body.debug-mode code { background: var(--dark-code-bg); color: #ff9800; } body.debug-mode #log { background: var(--dark-log-bg); border: 1px solid var(--dark-border); } body.debug-mode #log .time { color: #8bc34a; } body.debug-mode #log .action { color: #03a9f4; } body.debug-mode input[type=text], body.debug-mode input[type=number], body.debug-mode select { background-color: var(--dark-input-bg); color: var(--dark-input-text); border-color: var(--dark-border); } body.debug-mode input[type=file] { color: var(--dark-input-text); background-color: transparent; border-color: var(--dark-border); } body.debug-mode input[type=file]::file-selector-button { background-color: var(--dark-fieldset-bg); color: var(--dark-input-text); border-color: var(--dark-border); } body.debug-mode input[type=file]::file-selector-button:hover { background-color: #333; border-color: #444; } body.debug-mode fieldset legend { color: #64b5f6; } .main { width: 100%; max-width: 950px; margin: 0 auto; padding: 0 1rem; background: #fff; font-size: 1rem; font-weight: 400; line-height: 1.5; box-sizing: border-box; } .footer { display: flex; gap: 10px; font-size: 0.8rem; color: #666; flex-wrap: wrap; margin: 1rem 0; } .footer .links { display: flex; align-items: center; } .footer .links a { color: #666; text-decoration: none; position: relative; padding: 0 8px; } .footer .links a:first-child { padding-left: 0; } .footer .links a:not(:last-child)::after { content: "•"; position: absolute; right: -4px; color: #999; } .footer a:hover { color: #0d6efd; text-decoration: underline; } body.debug-mode .footer .links a:not(:last-child)::after { color: #666; } body.debug-mode .footer { color: #999; } body.debug-mode .footer a { color: #999; } body.debug-mode .footer a:hover { color: #64b5f6; } h3 { padding-bottom: .3em; border-bottom: 1px solid #CCC; text-align: center; } fieldset { border: none; box-shadow: 0 .5rem 0.5rem rgba(0, 0, 0, 0.2); background-color: #f8f9fa; padding: 10px; margin-bottom: 16px; border-radius: 4px; } fieldset legend { font-weight: bold; color: rgba(0, 0, 255, 0.6); } code { padding: .2em .4em; margin: 0; font-size: 85%; background: #CCC; border-radius: 3px; } .flex-container { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; } .flex-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; } #status { margin: 10px 0; } #log { width: 100%; min-height: 100px; max-height: 300px; margin: 0; padding: 5px; background: #DDD; overflow: auto; font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace; box-sizing: border-box; } #log .time { color: #333; } #log .action { color: #666; } #canvas-box { margin-top: 10px; width: 100%; } #canvas { border: black solid 1px; max-width: 100%; height: auto; display: block; margin: 0 auto; } button { padding: 0.375rem 0.75rem; border: 1px solid var(--primary-color); border-radius: 0.375rem; margin-bottom: 5px; white-space: nowrap; cursor: pointer; font-size: 0.9rem; } button:disabled { opacity: 0.65; } button.primary { color: #fff; background-color: var(--primary-color); } button.primary:hover { color: #fff; border-color: var(--primary-hover); background-color: var(--primary-hover); } button.secondary { color: #fff; background-color: var(--secondary-color); border-color: var(--secondary-color); } button.secondary:hover { color: #fff; border-color: var(--secondary-hover); background-color: var(--secondary-hover); } input[type=text], input[type=number], select { font-size: 1rem; font-weight: 400; line-height: 1.5; color: #212529; border: 1px solid #dee2e6; border-radius: 0.375rem; padding: .2rem .75rem; max-width: 100%; box-sizing: border-box; } input[type=file] { font-size: 1rem; font-weight: 400; line-height: 1.5; color: #212529; max-width: 100%; } input::file-selector-button { font-size: 0.9rem; font-weight: 400; line-height: 1.5; border: 1px solid var(--primary-color); border-radius: 0.375rem; cursor: pointer; } select { padding: .3rem 2.25rem .3rem .75rem; } input:focus, select:focus { border: 1px solid #86b7fe; box-shadow: 0 0 4px rgba(0, 120, 215, 0.8); outline: 0; } label { margin-right: 4px; white-space: nowrap; } .status-bar { display: none; font-size: 85%; color: #666; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dotted #AAA; } @media (max-width: 768px) { .flex-container { flex-direction: column; } .left-controls, .right-controls { margin-left: 0; width: 100%; } .canvas-log-container { flex-direction: column; } #log { height: 150px; margin-top: 10px; } fieldset { padding: 8px; } button { width: auto; } input[type=text], input[type=number], select { max-width: 100%; margin-bottom: 5px; } }