diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-23 20:51:35 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-23 20:51:35 +0100 |
commit | 6f48041c9dd52f4d98c3defec030232aa0bbfeb9 (patch) | |
tree | 092020453e1893021dcf5be7b2f7d4ce93163f87 /ui/css | |
parent | eb46bad3d09e05fe40c4637c3d1aca5d0a263514 (diff) |
merge Sean's code
Diffstat (limited to 'ui/css')
-rw-r--r-- | ui/css/style.css | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/ui/css/style.css b/ui/css/style.css index 963f4c5..7b8f8d2 100644 --- a/ui/css/style.css +++ b/ui/css/style.css @@ -27,9 +27,13 @@ body, html { overflow-y: auto; /* Add vertical scrolling */ } -/*.section.overview_control { +.section.overview_control { grid-row: 1 / span 2; /* Span the top left section across both rows */ -/*}*/ + justify-content: unset; + align-items: normal; + padding: 8px; + gap: 8px; +} .table-wrapper { flex-grow: 1; /* Table wrapper takes remaining space */ @@ -98,7 +102,7 @@ ul { border: 5px solid black; width: calc(20% - 5px); height: calc(40% - 5px); - background-color: gray; + background-color: #ccc; } .traffic-light { width: 20px; @@ -136,10 +140,23 @@ ul { left: 5px; } - /* Styles for the inner content of the squares */ .inner-content { position: relative; width: 100%; height: 100%; } + +details { + border: 1px solid #0008; + padding: 4px; +} + +details summary { + user-select: none; +} + +details[open] summary { + border-bottom: 1px solid #0008; +} + |