Added style parameters for diff-like table views and textarea elements.
[gnucomo.git] / src / web / gnucomo.css
1
2 body
3 {
4    background-color : rgb(80, 120, 100);
5 }
6
7 h1
8 {
9    font-family : sans-serif ;
10    text-align : center ;
11 }
12
13 h2
14 {
15    font-family : sans-serif ;
16 }
17
18 div.login
19 {
20    background : rgb(80, 120, 150) ;
21    border: solid;
22    border-width: thick;
23    border-color : cyan ;
24    padding : 1em;
25    margin : 10% ;
26    width: 80%;
27    text-align : center ;
28 }
29 table
30 {
31    width : 80% ;
32    border-width : medium ;
33    border-style : none ;
34    border-collapse : collapse;
35    padding : 1px ;
36 }
37
38 td
39 {
40    font-family : sans-serif ;
41 }
42
43 th
44 {
45    border-width : thin ;
46    border-style : solid ;
47 }
48
49
50 /*  Table styles for diff-like views */
51
52 td.left
53 {
54    color : blue ;
55    font-family : sans-serif ;
56 }
57
58 td.right
59 {
60    color : lightgreen ;
61    font-family : sans-serif ;
62 }
63
64 td.both
65 {
66    color : red ;
67    font-family : sans-serif ;
68 }
69
70 textarea
71 {
72    width : 60em ;
73    height : 10em ;
74 }