1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

bugfixes, design changes

This commit is contained in:
NoobishSVK
2024-05-04 00:36:49 +02:00
parent a557961998
commit 57b276e136
12 changed files with 114 additions and 61 deletions

View File

@@ -81,38 +81,38 @@ hr {
color: var(--color-4);
}
table {
.table-big {
border-radius: 30px;
background-color: var(--color-2);
padding: 20px;
margin: auto;
}
table th {
.table-big th {
padding: 8px 20px;
outline: 1px solid var(--color-3);
background-color: var(--color-3);
}
table td {
.table-big td {
padding: 8px 20px;
}
table td:nth-child(1) {
.table-big td:nth-child(1) {
text-align: left;
}
table td:nth-child(2) {
.table-big td:nth-child(2) {
color: var(--color-main-bright);
text-align: left;
}
table th:nth-child(1) {
.table-big th:nth-child(1) {
border-radius: 30px 0px 0px 30px;
}
table th:nth-last-child(1){
.table-big th:nth-last-child(1){
border-radius: 0px 30px 30px 0px;
}