style.css

This commit is contained in:
John Varghese
2025-06-03 21:35:36 +05:30
committed by GitHub
parent 0070b1f4c7
commit 1201443668

View File

@@ -17,6 +17,14 @@ input, select, button { padding: 0.5em; border-radius: 4px; border: none; margin
position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh;
background: rgba(30,30,30,0.95); display: flex; align-items: center; justify-content: center; background: rgba(30,30,30,0.95); display: flex; align-items: center; justify-content: center;
} }
.tabs { display: flex; border-bottom: 1px solid #444; margin-bottom: 1em; }
.tab-btn { background: none; border: none; color: #aaa; font-size: 1.1em; padding: 0.7em 1.2em; cursor: pointer; transition: color 0.2s; }
.tab-btn.active, .tab-btn:hover { color: #08f; border-bottom: 2px solid #08f; }
.panel { display: block; }
#sd-table { width: 100%; border-collapse: collapse; margin-top: 1em; }
#sd-table th, #sd-table td { border: 1px solid #333; padding: 0.5em; }
#sd-table th { background: #181818; }
#sd-table tr:nth-child(even) { background: #292929; }
.login-box { .login-box {
background: #232323; padding: 2em 2em 1em 2em; border-radius: 10px; box-shadow: 0 2px 16px #000c; background: #232323; padding: 2em 2em 1em 2em; border-radius: 10px; box-shadow: 0 2px 16px #000c;
display: flex; flex-direction: column; align-items: center; display: flex; flex-direction: column; align-items: center;