|
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 table td, |
|
30 #wp-calendar table th { |
|
31 text-align:center; |
|
32 } |
|
33 |
|
34 #wp-calendar table td, |
|
35 #wp-calendar table td.pad:hover, |
|
36 #wp-calendar table.nav tr td { |
|
37 padding:1px; |
|
38 border:none; |
|
39 } |
|
40 #wp-calendar caption { |
|
41 background:#FFFFFF; |
|
42 } |
|
43 #wp-calendar table td:hover, |
|
44 #wp-calendar table #today { |
|
45 padding:0px; |
|
46 border:solid 1px #999; |
|
47 } |
|
48 |
|
49 /* The EC graphic. */ |
|
50 .ec3_ec { |
|
51 display:block; |
|
52 float:right; |
|
53 border:none; |
|
54 width:13px; |
|
55 height:9px; |
|
56 } |
|
57 .ec3_ec span { display:none } |
|
58 |
|
59 |
|
60 /*** |
|
61 *** Popup |
|
62 ***/ |
|
63 |
|
64 .ec3_popup { |
|
65 margin:0 !IMPORTANT; |
|
66 padding:0 !IMPORTANT; |
|
67 border:none; |
|
68 position:absolute; |
|
69 border-collapse:collapse; |
|
70 filter:alpha(opacity=87); |
|
71 -moz-opacity:.87; |
|
72 opacity:.87; |
|
73 z-index:30000; |
|
74 } |
|
75 |
|
76 .ec3_popup td { |
|
77 padding:0; |
|
78 } |
|
79 |
|
80 .ec3_popup table { |
|
81 border:solid #999 1px; /* popup border */ |
|
82 background-color:#ccc; /* popup background colour */ |
|
83 font-size:x-small; /* popup font size */ |
|
84 color:black; |
|
85 text-align:left; |
|
86 } |
|
87 |
|
88 .ec3_popup table td { |
|
89 padding:1.5px 3px 1.5px 3px; |
|
90 } |
|
91 |
|
92 #ec3_shadow0 div { width:8px; height:32px; } |
|
93 #ec3_shadow0 { |
|
94 margin:0; |
|
95 padding:0; |
|
96 border:none; |
|
97 width:8px; |
|
98 background-repeat:no-repeat; |
|
99 background-position:bottom right; |
|
100 vertical-align:bottom; |
|
101 } |
|
102 |
|
103 #ec3_shadow1 { |
|
104 margin:0; |
|
105 padding:0; |
|
106 border:none; |
|
107 height:16px; |
|
108 background-repeat:repeat-x; |
|
109 } |
|
110 |
|
111 #ec3_shadow2 div { width:8px; height:32px; } |
|
112 |
|
113 #ec3_shadow2 { |
|
114 margin:0; |
|
115 padding:0; |
|
116 border:none; |
|
117 width:8px; |
|
118 background-repeat:no-repeat; |
|
119 background-position:bottom left; |
|
120 vertical-align:bottom; |
|
121 } |
|
122 |
|
123 /*** |
|
124 *** Event list |
|
125 ***/ |
|
126 |
|
127 .ec3_list { |
|
128 word-spacing:-1px; |
|
129 letter-spacing:-0.2px; |
|
130 color:#2c8084; |
|
131 } |
|
132 |
|
133 .ec3_list li { |
|
134 font-size:1em !IMPORTANT; |
|
135 } |
|
136 |
|
137 .ec3_list li:before { |
|
138 content:"" !IMPORTANT; |
|
139 } |
|
140 |
|
141 /*** |
|
142 *** Schedule |
|
143 ***/ |
|
144 |
|
145 table.ec3_schedule { |
|
146 border-collapse:collapse; |
|
147 margin:0.5ex 1ex 0.5ex 0; |
|
148 border:solid 1px #800; |
|
149 float:left; |
|
150 } |
|
151 |
|
152 table.ec3_schedule td { |
|
153 padding:0 0.5ex 0 0.5ex; |
|
154 color:#800; |
|
155 } |
|
156 |
|
157 td.ec3_start { text-align:right; } |
|
158 |
|
159 td.ec3_to { text-align:center; } |