you might not need all of this, but here's some CSS you can modify and inject to the game if you want. I'm using it with Stylish, but it would be nice to have it as a part of such a useful script :) some fun comments in the code is needed to make it more interesting for others to read it ;)
/**
* DH3 Super Compact by Lasse Brustad aka Lassebrus / Lasse_brus
*
* Made this style to fix parts of DH3's design issues
*
* Want a script that can fix even more? Tell me at Discord: Lasse_brus#1998
*/
body {
font-size: 16px;
}
.center {
font-size: 0;
}
/* less empty space caused by br tags... stop using it Smitty... */
#game > br,
div.right-panel > div > br {
display: none;
}
table.table-top-main-items {
margin-top: 32px;
padding: 0 8px;
}
/* images should be tinyyy */
img.img-50 {
width: 35px;
height: 35px;
}
img.img-100 {
width: 70px;
height: 70px;
}
/* tiny lvls too ofc... */
div#top-bar-skills.not-table-top-main-skills {
margin-top: 4px;
padding: 0 8px;
}
/* notifications and that shit can be a little tinyyyer */
div#notification-area {
margin-bottom: 4px;
}
/* game area */
/* annoying height with lots of empty space .... gone! */
div.right-panel {
min-height: 0;
}
/* just for the item boxes because they lost that much space */
div.right-panel > div > div {
padding: 4px;
}
/* less empty space between item boxes, it's not nessessary with that space duh */
div.item-box {
margin: 4px;
}
/* dialogues */
/* tradables - sell item */
#dialogue-tradables.dialogue {
max-width: 76%;
margin-top: 150px;
margin-left: -22%;
}
you might not need all of this, but here's some CSS you can modify and inject to the game if you want. I'm using it with Stylish, but it would be nice to have it as a part of such a useful script :) some fun comments in the code is needed to make it more interesting for others to read it ;)