1/* Stylesheet for taxinvoice.scm -- eguile-based Gnucash invoice report */
2/* Version 0.03 */
3
4/**
5;; (c) 2009 Chris Dennis chris@starsoftanalysis.co.uk
6;;
7;; $Author: chris $ $Date: 2009/07/23 10:41:58 $ $Revision: 1.25 $
8;;
9;; This program is free software; you can redistribute it and/or
10;; modify it under the terms of the GNU General Public License as
11;; published by the Free Software Foundation; either version 2 of the
12;; License, or (at your option) any later version.
13;;
14;; This program is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17;; General Public License for more details.
18;;
19;; You should have received a copy of the GNU General Public License
20;; along with this program; if not, write to the Free Software
21;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22;; 02111-1307 USA
23**/
24
25/* Note that body and table font family and size will be overridden */
26/* by separate report options.                                      */
27  div.main {
28    margin: 2em;
29  }
30  table { /* table does not inherit font sizes for some reason */
31  }
32  table.entries {
33    border: none;
34    border-spacing: 0.1em;
35    empty-cells: show;
36  }
37  table.entries th {
38    background: #ccc;
39    font-weight: bold;
40    padding: 0.2em 0.4em;
41  }
42  table.entries td {
43    padding: 0.2em 0.4em;
44  }
45  td.invnum {
46    font-size: 120%;
47    font-weight: bold;
48  }
49  td.subtotal {
50    font-weight: bold;
51  }
52  td.total {
53    font-size: 110%;
54    font-weight: bold;
55  }
56  table.coytable td, table.coytable tr {
57    vertical-align: top;
58  }
59  img.logo {
60    margin-right: 0.5em;
61  }
62  h1.coyname {
63    margin-top: 0em;
64    padding-top: 0em;
65    text-align: left;
66  }
67  h2.invoice {
68    padding-top: 0em;
69    margin-top: 0em;
70  }
71
72