For those who have large displays and are disappointed that the Wide mode only shows eight columns.
This requires Wide mode to be enabled, and will display 16 columns. This also reduces the text size slightly to keep the letters from touching the bounding boxes.
Have fun!
Notes
Userstyle doesn't have notes.
Source code
/* ==UserStyle==
@name Duotrigordle Wide!
@version 20220327.05.47
@namespace userstyles.world/user/xial
@description For those who have large displays and are disappointed that the Wide mode only shows eight columns.
This requires Wide mode to be enabled, and will display 16 columns. This also reduces the text size slightly to keep the letters from touching the bounding boxes.
Have fun!
@author xial
@license No License
==/UserStyle== */
@-moz-document domain("duotrigordle.com") {
.game.wide {
max-width: calc(var(--app-max-width)*3.5);
}
.game.wide .boards {
grid-template-columns: repeat(16,auto);
}
.cell {
font-size: calc(var(--app-width)/40);
}
}