27 lines
630 B
CSS
27 lines
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);
|
||
|
}
|