This is a basic web app for designing and printing simple calendars. Colors, size, fonts, and other features can be customized.
The calendar's CSS can be fully edited using the method:
printacal.setStyleProp(ruleName, cssPropertyName, cssValue);
ruleName is used to target a class elements in the calendar and can be determined via the element's className, for example,
<div class="printacal-date printacal-custom">26</div>
would have the ruleName "date".
Example:
printacal.setStyleProp("date", "fontFamily", "Arial");
MIT licensed 2014