Calendar still does not pick up any CSS controls from the main custom.css file. Here is a snippet of what I added:
.calendar {
background-color:rgba(32,32,32,0.6);
border-radius:8px;
padding:8px;
}
I modified the other sections to look like this:
.module.clock {
background-color:rgba(32,32,32,0.6);
border-radius:8px;
padding:8px;
}
.module.currentweather {
background-color:rgba(32,32,32,0.6);
border-radius:8px;
padding:8px;
}
.module.weatherforecast {
background-color:rgba(32,32,32,0.6);
border-radius:8px;
padding:8px;
}
They work fine “either way”. Calendar refuses to pick up the formatting from the custom.css file it seems and I have to put the controls into the calendar.css file in the module’s directory.