infinite-generators/style.css
nif 5094f2ca57 Upload root files
Why the hell is there a limit of 5 files??

Signed-off-by: nif <nif@incremental.social>
2024-04-18 17:52:16 +00:00

27 lines
No EOL
630 B
CSS

html {
background-color: var(--bg);
color: var(--text);
display: flex;
justify-content: center;
}
table.gens, table.gens thead {
text-align: center;
border: 1px solid var(--text);
border-collapse: collapse;
}
table.gens td, table.gens th {
border-left: 1px solid var(--text);
border-right: 1px solid var(--text);
padding: 5px;
}
table.gens tr.alt {
background-color: var(--bg-alt);
}
button, textarea, select {
background-color: var(--btn);
color: var(--text);
border: 2px solid var(--btn-bd)
}
button:hover {
background-color: var(--btn-hv);
}