18 lines
224 B
CSS
18 lines
224 B
CSS
|
:root {
|
||
|
--background-body: #0d1117 !important;
|
||
|
}
|
||
|
|
||
|
#content {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
gap: 1rem;
|
||
|
}
|
||
|
|
||
|
table,
|
||
|
th,
|
||
|
td {
|
||
|
border: 1px solid black;
|
||
|
padding: 0.25rem;
|
||
|
}
|