HEY PEOPLE TAKE A BREAK FROM YOUR SHENANIGANS IT’S MOLT
hi. Remember that regular breaks are good for you!
Can an administrator of the site add some custom CSS for tables? The default design is ugly and cramping my style. I’m thinking something where the header looks different from the table cells, and there’s actual borders to differentiate stuff, at the very least.
/* Table Design */
.cooked table thead, .d-editor-preview table thead {
border-bottom: 2px solid #BBBBBB !important;
background-color: #D3D3D3;
}
.cooked table tr, .d-editor-preview table tr {
border-bottom: 1px solid #BBBBBB;
}
Here’s something to reference the ugliness and future beauty with:
Caliber | Ammunition items | Unturned examples | Real examples |
---|---|---|---|
7.62mm | 7.62mm Bullet | Zubeknakov • Nykorev • Snayperskya | AK-47 • PKM |
5.56mm | 5.56mm Bullet | Eaglefire • Maplestrike | M4A1 • C7A2 |
Or doing something like this might be decent:
/* Table Design */
.cooked table td, .cooked table th, .d-editor-preview table td, .d-editor-preview table th {
border-right: 1px solid #EEEEEE;
border-left: 1px solid #EEEEEE;
}
OR BOTH! BOTH PROBABLY WON’T BREAK THE SITE!
Thanks!