]> Git — Sourcephile - tmp/julm/literate-invoice.git/blob - data/styles/Document.css
feat(invoice): add what I need
[tmp/julm/literate-invoice.git] / data / styles / Document.css
1 p {
2 margin:0 0;
3 }
4
5 .key-value {
6 display:flex;
7 flex-direction:row;
8 justify-items:space-between;
9 align-items:baseline;
10 //grid-template-columns:1fr 3fr;
11 gap:1ex;
12 //border-top:1px solid black;
13 }
14 .key-value .key {
15 //justify-self:end;
16 font-weight:bold;
17 }
18 .key-value .value {
19 //justify-self:begin;
20 }
21
22
23 .dict-entry {
24 display:flex;
25 flex-direction:row;
26 justify-items:space-between;
27 align-items:baseline;
28 //grid-template-columns:1fr 3fr;
29 gap:1ex;
30 //border-top:1px solid black;
31 }
32 .dict-entry .dict-key {
33 //justify-self:end;
34 font-weight:bold;
35 }
36 .dict-entry .dict-value {
37 //justify-self:begin;
38 }
39
40 ul.list {
41 margin:0;
42 padding:0;
43 list-style-position:inside;
44 list-style-type:none;
45 }
46 ul.list > li {
47 margin:0;
48 padding:0;
49 }
50
51 @media print {
52 /* Explanation: do not change color of visited links when printing. */
53 a:visited {
54 color:blue;
55 }
56 }