kthornbloom / Monthly

A jQuery based responsive calendar
http://kthornbloom.com/monthly/
Other
316 stars 108 forks source link

Weekend color number #54

Closed tegarkurniawan closed 7 years ago

richardtallent commented 7 years ago

Hi @tegarkurniawan,

While day-of-week classes could be added to make this easier, you can already do this with plain CSS. For example, this code will change the background color of all Saturdays and Sundays to grey (assuming Sunday is the first day of the week in the settings):

.monthly-week .m-d:nth-child(1),
.monthly-week .m-d:nth-child(7) {
    background-color: #e0e0e0;
}
tegarkurniawan commented 7 years ago

thanks