@charset "utf-8";

/* Style sheet for the schedule table */

table#schedule {			/* The overall table */
    background-color: #f0f0ff;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid black;
    width: 99%;
}

#schedule tr:nth-child(odd) {	/* zebra-striped table */
    background-color: #e2e2ee;
}

#schedule td:nth-child(4) {
    width: 10%;
}


#schedule th, #schedule td {
    vertical-align: middle;		/* everything is vertically centered */
    border: dotted #888;		/* inobtrusive border lines */
    border-width: 0 1px;		/* only left/right borders */
    padding: 3px;			/* Internal padding for each cell */
}


/* First two columns (week number & date range) are horizontally centered */
#schedule td:first-child, #schedule td:nth-child(2) {
    text-align: center;
    white-space: nowrap;
}

#schedule ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

/* Make today’s date bold */
#schedule #current {
    font-weight: bold;
}

/* Surround today's date with ☞ & ☜. */
#schedule #current:before {
    content: "☞ ";
    font-size: 175%;
    color: red;
}
#schedule #current:after  {
    content: " ☜";
    font-size: 175%;
    color: red;
}

/* A s-t-r-e-c-h-e-d Spring/Fall Break announcement */
#schedule td[colspan="5"] {
    text-align: center;
    letter-spacing: 1.5em;
}
