2 * @file clock/style.css
3 * @brief Default styles for the "clock" plugin
4 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
5 * @author Luis Machuca B. <luis.machuca@gulix.cl>
10 * This file sets the default style for the "clock" plugin.
11 * The CSS style applied to the clock is organized as follows:
13 * div#clock_object.classname - the container box.
14 * This is the virtual container. Most probably you don't want to
15 * put anyting in here, except margin/padding specifications.
16 * 'classname' is the class name associated with the style. You must
17 * copy and replace this parameter accordingly to create new styles.
19 * .face - the clock face
20 * face properties, such as font-size and color, should be set here.
21 * .info - the infopage wikilink
22 * this should be left empty unless you want to re-theme the link
23 * different from your wiki template
24 * .info > a:??? - the link
25 * put here CSS for effects on hover, visited, etc.
35 * ---------------------------------------------------------------------
37 * Description : pretty plain
39 * With this style the face itself is not stulized, only some layout
40 * attributes are given as well as default style for the helpbar.
43 #dw_clock_object .face
.plain
{
50 * ---------------------------------------------------------------------
52 * Description : a light-coloured wall-like clock
53 * Features : monospaced font, wide margin and dark borders,
54 * with the face colour following the template theme
57 #dw_clock_object .face
.default
{
66 #dw_clock_object .face
.default
{
68 font-family: monospace
;
73 border: 4px inset __text_alt__
;
75 background-color: __background_alt__
;
82 * ---------------------------------------------------------------------
84 * Description : some description
85 * Features : a clock using a digital clock font in yellow face in a
86 * black background and minor shadow.
89 * In order to achieve the desired effect, this style makes use of
90 * the "font-face" aspect of CSS specification, which may or may not be
91 * supported by your browser as of the time of release of this plugin.
92 * **Check the plugin page for support and indications**
94 * For full experience, it is _recommended_ that you make available the
95 * font to your public via a download link, as well as sourcing the
96 * font file from this stylesheet (see "path/to/your/").
98 * Take into consideration the license of the font file. If the font is
99 * not available as Freeware or Free Software, consider using another
107 font-family: 'Atomic Clock Radio';
108 src: local
('Atomic Clock Radio');
109 /* src: url(path/to/your/copy/of/atomicclockradio.ttf) format('truetype'); */
113 #dw_clock_object .face
.aradio
{
117 background-color: #c4c8ee;
118 border: 2px solid
#b6b6d8;
120 font-family: "Atomic Clock Radio", fantasy
;
124 letter-spacing: 0.6pt;
125 text-shadow: -2px 1px #884446;
130 #dw_clock_object .face
.aradio span
.sep
{
137 * ---------------------------------------------------------------------
139 * Description : "24"-like digital clock
140 * Features : a clock using a digital clock font with yellow face in a
141 * black background and a shadow; in absence of such
142 * font style the display downgrades to the
143 * defined-to-exist monospaced font.
146 * In order to achieve the desired effect, this style makes use of
147 * the "font-face" aspect of CSS specification, which may or may not be
148 * supported by your browser as of the time of release of this plugin.
149 * **Check the plugin page for support and indications**
151 * For full experience, it is _recommended_ that you make available the
152 * font to your public via a download link, as well as sourcing the
153 * font file from this stylesheet (see "path/to/your/").
155 * Take into consideration the license of the font file. If the font is
156 * not available as Freeware or Free Software, consider using another
165 * Warning: the following style uses an online,
166 * free-for-noncommercial-use, Truetype font, from URW Software.
171 /* src: url(path/to/your/copy/of/lcd.ttf) format('truetype'); */
176 * Warning: the following style uses an online,
177 * freeware, Truetype font.
180 font-family: 'Digital Readout';
181 src: local
('Digital Readout');
182 /* src: url(path/to/your/copy/of/digitalreadout.ttf) format('truetype'); */
187 #dw_clock_object .face
.tv24
{
191 background-color: black
;
192 border: 2px solid navy
;
196 font-family: "Digital Readout", "lcdd", monospace
;
199 text-shadow: 2px 2px #404020;
200 letter-spacing: 0.2em;
205 #dw_clock_object .face
.tv24
.info
{
209 border: 2px solid black
;
212 #dw_clock_object .face
.tv24
.info:hover
{
213 border: 2px solid __existing__
;
217 * ---------------------------------------------------------------------
219 * Description : "24"-like digital clock
220 * Features : a blue box with a white typeface, shadows.
223 * In order to achieve the desired effect, this style makes use of
224 * the "font-face" aspect of CSS specification, which may or may not be
225 * supported by your browser as of the time of release of this plugin.
226 * **Check the plugin page for support and indications**
228 * For full experience, it is _recommended_ that you make available the
229 * font to your public via a download link, as well as sourcing the
230 * font file from this stylesheet (see "path/to/your/").
232 * Take into consideration the license of the font file. If the font is
233 * not available as Freeware or Free Software, consider using another
239 #dw_clock_object .face
.bluebox
{
243 background-color: #2222aa;
244 border: 4px solid navy
;
245 border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; -o-border-radius: 6px;
249 font-family: "Liberation", "Helvetica", cursive
;
252 text-shadow: -1px 2px #80c080;
253 text-shadow: 2px -1px #882222;
255 letter-spacing: 0.2em;
262 * ---------------------------------------------------------------------
265 #dw_clock_object p
.helpbar
{
268 background-color: __background_alt__
;
269 border: 1px solid __existing__
;
271 -moz-border-radius: 6px; -webkit-border-radius: 6px; -o-border-radius: 6px;