|
1 /* EventCalendar. Copyright (C) 2005 2006, Alex Tingle. $Revision: 263 $ |
|
2 * This file is licensed under the GNU GPL. See LICENSE file for details. |
|
3 */ |
|
4 |
|
5 /*** |
|
6 *** Calendar |
|
7 ***/ |
|
8 |
|
9 #wp-calendar table { |
|
10 width:100%; |
|
11 } |
|
12 |
|
13 #wp-calendar #prev { |
|
14 text-align:left; |
|
15 } |
|
16 |
|
17 #wp-calendar #next { |
|
18 text-align:right; |
|
19 } |
|
20 |
|
21 .ec3_eventday a { |
|
22 color:#fff !IMPORTANT; |
|
23 } |
|
24 .ec3_eventday { |
|
25 border:solid 1px #3366FF; |
|
26 background-color:#333333; |
|
27 } |
|
28 |
|
29 #wp-calendar { |
|
30 height:140px; |
|
31 } |
|
32 #wp-calendar table td, |
|
33 #wp-calendar table th { |
|
34 text-align:center; |
|
35 } |
|
36 |
|
37 #wp-calendar table td, |
|
38 #wp-calendar table td.pad:hover { |
|
39 padding:1px; |
|
40 border:none; |
|
41 } |
|
42 #wp-calendar caption { |
|
43 background:#FFFFFF; |
|
44 } |
|
45 #wp-calendar table td:hover, |
|
46 #wp-calendar table #today { |
|
47 padding:0px; |
|
48 border:solid 1px #999; |
|
49 } |
|
50 |
|
51 /* Nav fix*/ |
|
52 .nav { |
|
53 width:100%; |
|
54 border-top: solid 1px #E8E8E8; |
|
55 } |
|
56 .nav tr td { |
|
57 padding:1px; |
|
58 border:none; |
|
59 } |
|
60 .nav #prev { |
|
61 text-align:left; |
|
62 } |
|
63 .nav #next { |
|
64 text-align:right; |
|
65 } |
|
66 |
|
67 |
|
68 /* The EC graphic. */ |
|
69 .ec3_ec { |
|
70 display:block; |
|
71 float:right; |
|
72 border:none; |
|
73 width:13px; |
|
74 height:9px; |
|
75 } |
|
76 .ec3_ec span { display:none } |
|
77 |
|
78 |
|
79 /*** |
|
80 *** Popup |
|
81 ***/ |
|
82 |
|
83 .ec3_popup { |
|
84 margin:0 !IMPORTANT; |
|
85 padding:0 !IMPORTANT; |
|
86 border:none; |
|
87 position:absolute; |
|
88 border-collapse:collapse; |
|
89 filter:alpha(opacity=87); |
|
90 -moz-opacity:.87; |
|
91 opacity:.87; |
|
92 z-index:30000; |
|
93 } |
|
94 |
|
95 .ec3_popup td { |
|
96 padding:0; |
|
97 } |
|
98 |
|
99 .ec3_popup table { |
|
100 border:solid #999 1px; /* popup border */ |
|
101 background-color:#ccc; /* popup background colour */ |
|
102 font-size:x-small; /* popup font size */ |
|
103 color:black; |
|
104 text-align:left; |
|
105 } |
|
106 |
|
107 .ec3_popup table td { |
|
108 padding:1.5px 3px 1.5px 3px; |
|
109 } |
|
110 |
|
111 #ec3_shadow0 div { width:8px; height:32px; } |
|
112 #ec3_shadow0 { |
|
113 margin:0; |
|
114 padding:0; |
|
115 border:none; |
|
116 width:8px; |
|
117 background-repeat:no-repeat; |
|
118 background-position:bottom right; |
|
119 vertical-align:bottom; |
|
120 } |
|
121 |
|
122 #ec3_shadow1 { |
|
123 margin:0; |
|
124 padding:0; |
|
125 border:none; |
|
126 height:16px; |
|
127 background-repeat:repeat-x; |
|
128 } |
|
129 |
|
130 #ec3_shadow2 div { width:8px; height:32px; } |
|
131 |
|
132 #ec3_shadow2 { |
|
133 margin:0; |
|
134 padding:0; |
|
135 border:none; |
|
136 width:8px; |
|
137 background-repeat:no-repeat; |
|
138 background-position:bottom left; |
|
139 vertical-align:bottom; |
|
140 } |
|
141 |
|
142 /*** |
|
143 *** Event list |
|
144 ***/ |
|
145 |
|
146 .ec3_list { |
|
147 word-spacing:-1px; |
|
148 letter-spacing:-0.2px; |
|
149 color:#2c8084; |
|
150 } |
|
151 |
|
152 .ec3_list li { |
|
153 font-size:1em !IMPORTANT; |
|
154 } |
|
155 |
|
156 .ec3_list li:before { |
|
157 content:"" !IMPORTANT; |
|
158 } |
|
159 |
|
160 /*** |
|
161 *** Schedule |
|
162 ***/ |
|
163 |
|
164 table.ec3_schedule { |
|
165 border-collapse:collapse; |
|
166 margin:0.5ex 1ex 0.5ex 0; |
|
167 border:solid 1px #800; |
|
168 float:left; |
|
169 } |
|
170 |
|
171 table.ec3_schedule td { |
|
172 padding:0 0.5ex 0 0.5ex; |
|
173 color:#800; |
|
174 } |
|
175 |
|
176 td.ec3_start { text-align:right; } |
|
177 |
|
178 td.ec3_to { text-align:center; } |