From 51bc42f5cf9cb56ff57c7496ce21801d980ef12f Mon Sep 17 00:00:00 2001 From: Ross Williams Date: Fri, 20 Sep 2024 02:38:52 +0100 Subject: [PATCH] Add UI for manual stage control --- source/scp-head/src/controller.html | 96 +++++++++++++++++++++++++++-- 1 file changed, 90 insertions(+), 6 deletions(-) diff --git a/source/scp-head/src/controller.html b/source/scp-head/src/controller.html index 3fa7125..d0aad46 100644 --- a/source/scp-head/src/controller.html +++ b/source/scp-head/src/controller.html @@ -6,8 +6,44 @@ #resizer-container { display: block !important; } + + #manual-control { + display: flex; + flex-direction: row; + flex-wrap: wrap; + gap: 0.4rem; + } + #manual-control h2 { + flex: 1 0 100%; + font-size: 1rem; + line-height: 1; + margin: 0.5rem 0; + } + #manual-control a { + border: thin solid black; + background: white; + color: black; + display: flex; + justify-content: center; + align-items: center; + height: 1rem; + width: 1rem; + opacity: 0.3; + } + #manual-control a.active { + background: black; + color: white; + } + #manual-control a.registered { + opacity: 1; + } + + + +
+ - - - +