From c4d73026b561f517ad905836a2f45c465e092fc2 Mon Sep 17 00:00:00 2001 From: npub1wsauh7vr2kwz5kpyk0hwzja35640a9gls5t <743bcbf9@nostr.local> Date: Sun, 16 Nov 2025 04:38:00 +0000 Subject: [PATCH] CSS --- web/superball-shared.css | 55 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 2 deletions(-) diff --git a/web/superball-shared.css b/web/superball-shared.css index 0891859..5006eab 100644 --- a/web/superball-shared.css +++ b/web/superball-shared.css @@ -216,11 +216,11 @@ label { @keyframes pulse { 0%, 100% { - opacity: 1; + opacity: 1; } 50% { - opacity: 0.5; + opacity: 0.5; } } @@ -737,4 +737,55 @@ small { .floating-tab:hover { transform: scale(1.05); +} + + +/* .input-group { + margin: 20px; +} */ + +label { + display: block; + margin-bottom: 5px; + font-weight: bold; +} + +textarea { + width: 100%; + padding: 10px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} + +.tabs { + display: flex; + margin: 20px 20px 0; + border-bottom: 1px solid #ccc; +} + +.tab { + padding: 10px 20px; + cursor: pointer; + background-color: #f1f1f1; + border: 1px solid #ccc; + border-bottom: none; + margin-right: 5px; + border-radius: 4px 4px 0 0; +} + +.tab.active { + background-color: #fff; + border-bottom: 1px solid #fff; +} + +.tab-content { + display: none; + padding: 20px; + border: 1px solid #ccc; + border-radius: 4px; +} + +.tab-content.active { + display: block; } \ No newline at end of file