OLD | NEW |
| (Empty) |
1 /* | |
2 * These hour images were originally part of AWStats and are distributed under | |
3 * the GNU General Public License: http://www.gnu.org/copyleft/gpl.html | |
4 */ | |
5 | |
6 .hour | |
7 { | |
8 display: inline-block; | |
9 width: 14px; | |
10 height: 14px; | |
11 background-image: url(hours.png); | |
12 background-position: 0px 0px; | |
13 } | |
14 | |
15 .hour.hour1 | |
16 { | |
17 background-position: 0px 0px; | |
18 } | |
19 | |
20 .hour.hour2 | |
21 { | |
22 background-position: 0px -14px; | |
23 } | |
24 | |
25 .hour.hour3 | |
26 { | |
27 background-position: 0px -28px; | |
28 } | |
29 | |
30 .hour.hour4 | |
31 { | |
32 background-position: 0px -42px; | |
33 } | |
34 | |
35 .hour.hour5 | |
36 { | |
37 background-position: 0px -56px; | |
38 } | |
39 | |
40 .hour.hour6 | |
41 { | |
42 background-position: 0px -70px; | |
43 } | |
44 | |
45 .hour.hour7 | |
46 { | |
47 background-position: 0px -84px; | |
48 } | |
49 | |
50 .hour.hour8 | |
51 { | |
52 background-position: 0px -98px; | |
53 } | |
54 | |
55 .hour.hour9 | |
56 { | |
57 background-position: 0px -112px; | |
58 } | |
59 | |
60 .hour.hour10 | |
61 { | |
62 background-position: 0px -126px; | |
63 } | |
64 | |
65 .hour.hour11 | |
66 { | |
67 background-position: 0px -140px; | |
68 } | |
69 | |
70 .hour.hour12 | |
71 { | |
72 background-position: 0px -154px; | |
73 } | |
OLD | NEW |