root / pykota / trunk / stylesheets / pykota.css @ 3481

Revision 3481, 1.4 kB (checked in by jerome, 15 years ago)

Changed copyright years.
Copyright years are now dynamic when displayed by a command line tool.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1/*
2  PyKota - Print Quotas for CUPS
3
4  (c) 2003-2009 Jerome Alet <alet@librelogiciel.com>
5  This program is free software: you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation, either version 3 of the License, or
8  (at your option) any later version.
9
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  GNU General Public License for more details.
14
15  You should have received a copy of the GNU General Public License
16  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17*/
18
19/* $Id$ */
20
21body {
22        background-color: #FFFFFF;
23     }
24
25.even {
26        background-color: #DEDEDE;
27      }
28
29.odd {
30        background-color: #FFFFFF;
31     }
32
33.warn {
34        background-color: orange;
35      }
36
37.deny {
38        background-color: red;
39      }
40
41.problem {
42        background-color: #DEBDEB;
43      }
44
45.cancel {
46        background-color: #BEDBED;
47      }
48
49.refund {
50        background-color: green;
51      }
52
53.pykotacolsheader {
54        background-color: #AAAAAA;
55      }
56
57a:link {
58        color : blue;
59       }
60
61a:visited {
62        color : purple;
63       }
64
65a:hover {
66        color : green;
67       }
68
69a:active {
70        color : magenta;
71       }
Note: See TracBrowser for help on using the browser.