changed git call from https to git readonly
[atutor.git] / mods / wiki / fragments / css / calendar.css
1
2 /*
3    Include these style definitions into your sites` css for use with
4    the calendar plugin.
5    Note that there often two class names (old and new style), and that
6    we now prefer the cascading selector style:
7   
8    new                           old
9    ------------------------------------------------------------
10     table.calendar                table.caltable
11     .calendar .head               td.calhead
12     .calendar .daynames           th.caldays
13     .calendar .day                td.calday
14     .calendar .today              td.caltoday
15     .calendar a.found             a.calpg
16     .calendar a.hide              a.calhide
17 */
18
19
20 table.calendar {
21    background-color: #CDBDAD;
22 }
23 table.calendar td {
24    font-family: "Verdana", "Arial", sans-serif;
25 }
26
27 table.calendar .head {
28    font-size: 8pt;
29    text-align: center;
30 }
31
32 table.calendar .daynames {
33    color:#BA997A;
34    font-size: 8pt;
35    text-align:center;
36 }
37
38 table.calendar .day {
39    font-size: 8pt;
40    text-align:right;
41 }
42 table.calendar .today{
43    background-color:#D7CFC7;
44    font-size: 8pt;   
45    text-align:right;
46 }
47
48 table.calendar a.found {
49    text-decoration: none;
50    font-weight:600;
51 }
52 table.calendar a.hide {
53    text-decoration: none;
54 }