refactor: make components for rules, description, rename stats

This commit is contained in:
plebeius.eth
2024-04-09 15:03:26 +02:00
parent 6c86cc0124
commit 9aab7624ec
11 changed files with 69 additions and 59 deletions
@@ -0,0 +1,54 @@
.hide {
display: none;
}
.show {
display: block;
}
.content hr {
min-width: 468px;
margin-left: -4px;
margin-bottom: 6px;
}
.blotter {
min-width: 468px;
margin: auto;
line-height: 1;
margin-top: -1px;
}
.blotter tr {
font-size: var(--stats-font-size);
}
.blotter tfoot {
text-align: right;
}
.hideButton {
color: var(--button-desktop-text-color);
text-decoration: var(--button-text-decoration);
text-transform: capitalize;
}
.hideButton:hover {
cursor: pointer;
color: var(--button-desktop-text-color-hover);
}
.statValue {
color: var(--button-desktop-text-color);
}
.lowercase {
text-transform: lowercase;
}
@media (max-width: 640px) {
.content {
display: none;
}
}