@plainbroke said:
@trnitz
Pretty cool little module, Do you have a way to enlarge it 2 or 3 times as large???
You can do this using your custom.css file.
If you have a single instance of this module running, simply add this to your custom.css file:
.MMM-EventCountdown .event-countdown {
zoom: 2; /* fractional number also accepted */
}
If you have more than a single instance of this module running, add a unique classes value in config.js:
{
module: "MMM-EventCountdown",
position: "top_right",
classes: "countdown-large",
config: {
// ...
}
}
Then, in your custom.css file:
.MMM-EventCountdown.countdown-large .event-countdown {
zoom: 2; /* or 1.5, 3, etc... */
}
Any fraction of a number, such as 1.5, 2.25, etc, will also work.
Screen shot of it set to 2:
[image: EventCountdown-2x.png]