New "basic" theme which includes only the necessary CSS.
[cocanwiki.git] / html / _css / calendar.css
1 /* Calendar extension.
2  * $Id: calendar.css,v 1.1 2004/10/18 13:34:21 rich Exp $
3  */
4
5 table.cal_month {
6   border-collapse: collapse;
7   border: 1px solid #eee;
8   width: 90%;
9   margin-left: 5%;
10   margin-right: 5%;
11 }
12
13 table.cal_month th.cal_month_header {
14   background-color: #eef;
15 }
16
17 table.cal_month th.cal_month_header a.cal_month_left {
18   margin-right: 2em;
19 }
20
21 table.cal_month th.cal_month_header a.cal_month_right {
22   margin-left: 2em;
23 }
24
25 table.cal_month td.cal_month_events {
26 }
27
28 table.cal_month td.cal_month_events ul {
29   list-style: none;
30   padding: 0px;
31   margin: 0px;
32 }
33
34 table.cal_month td.cal_month_events li {
35   display: inline;
36   margin-right: 2em;
37 }
38
39 table.cal_month tr.cal_month_row {
40   border: 1px solid #eef;
41   font-size: 0.7em;
42 }
43
44 table.cal_month tr.cal_month_weekend {
45   background-color: #fef;
46 }
47
48 table.cal_month tr.cal_month_row th {
49   text-align: right;
50   background-color: #eef;
51   border: 1px solid #fff;
52   padding-right: 1em;
53   width: 4em;
54 }
55
56 table.cal_month tr.cal_month_row td {
57 }
58
59 table.cal_month tr.cal_month_row ul {
60   list-style: none;
61   padding: 0px;
62   margin: 0px;
63 }
64
65 table.cal_month tr.cal_month_row li {
66   display: inline;
67   margin-right: 2em;
68 }
69
70 table.cal_year {
71   border-collapse: collapse;
72   border: 1px solid #eee;
73   width: 90%;
74   margin-left: 5%;
75   margin-right: 5%;
76 }
77
78 table.cal_year th.cal_year_header {
79   background-color: #eef;
80 }
81
82 table.cal_year th.cal_year_header a.cal_year_left {
83   margin-right: 2em;
84 }
85
86 table.cal_year th.cal_year_header a.cal_year_right {
87   margin-left: 2em;
88 }
89
90 table.cal_year td.cal_year_month {
91   vertical-align: top;
92 }
93
94 table.cal_year_1m th.cal_year_1m_header {
95   background-color: #eef;
96 }
97
98 table.cal_year_1m th.cal_year_1m_header_weekend {
99   background-color: #fef;
100 }
101
102 /*
103 table.cal_year_1m tr.cal_year_1m_row td {
104   height: 1.4em;
105 }
106 */
107
108 table.cal_year_1m tr.cal_year_1m_row a {
109   text-decoration: none;
110 }
111
112 table.cal_year_1m tr.cal_year_1m_row td.cal_year_1m_weekend {
113   background-color: #fef;
114 }
115
116 table.cal_year_1m tr.cal_year_1m_row td.cal_year_1m_events {
117   border: 2px solid #000;
118 }
119
120 /*
121 table.cal_year_1m tr.cal_year_1m_row td.cal_year_1m_empty {
122   background: url(/_graphics/pinkhatch.png) repeat;
123 }
124 */
125
126 table.cal_year td.cal_year_events ul {
127   list-style: none;
128   padding: 0px;
129   margin: 0px;
130 }
131
132 table.cal_year td.cal_year_events li {
133   display: inline;
134   margin-right: 2em;
135 }
136
137 table.cal_day {
138   border-collapse: collapse;
139   border: 1px solid #eee;
140   width: 90%;
141   margin-left: 5%;
142   margin-right: 5%;
143 }
144
145 table.cal_day ul {
146   list-style: none;
147   padding: 0px;
148   margin: 0px;
149 }
150
151 table.cal_day li {
152   display: inline;
153   margin-right: 2em;
154 }
155
156 table.cal_day a.cal_day_left {
157   margin-right: 2em;
158 }
159
160 table.cal_day a.cal_day_right {
161   margin-left: 2em;
162 }