ReadMe: Changed the ``big picture'' ASCII art and wrote about the HTML entity replace...
[licom.git] / style.screen.css
1 a
2 {
3         color: blue;
4         background-color: inherit;
5         text-decoration: none;
6 }
7
8 a:hover
9 {
10         text-decoration: underline;
11 }
12
13 a:visited
14 {
15         color: navy;
16         background-color: inherit;
17 }
18
19 body
20 {
21         color: black;
22         background-color: white;
23 }
24
25 div.error
26 {
27         color: red;
28         background-color: yellow;
29
30         font-weight: bold;
31         padding: 1ex;
32         border: 2px solid red;
33 }
34
35 div.foot
36 {
37         color: gray;
38         background-color: white;
39
40         position: fixed;
41         top: auto;
42         right: 0px;
43         bottom: 0px;
44         left: 0px;
45
46         font-size: x-small;
47         text-align: right;
48         border-top: 1px solid black;
49         width: 100%;
50 }
51
52 div.foot a
53 {
54         color: black;
55         background-color: inherit;
56         text-decoration: none;
57 }
58
59 div.foot a:hover
60 {
61         text-decoration: underline;
62 }
63
64 div.menu
65 {
66         border-top: 1px solid black;
67         margin-top: 1ex;
68         font-weight: bold;
69 }
70
71 div.menu a
72 {
73         color: blue;
74         background-color: transparent;
75 }
76
77 div.topmenu
78 {
79         margin-bottom: 1ex;
80         padding-bottom: 1ex;
81         border-bottom: 1px solid black;
82 }
83
84 div.topmenu form
85 {
86         display: inline;
87         margin-right: 5ex;
88 }
89
90 h1
91 {
92         position: absolute;
93         top: 1ex;
94         right: 1ex;
95         bottom: auto;
96         left: auto;
97
98         font-size: 100%;
99         font-weight: bold;
100 }
101
102 img
103 {
104         border: none;
105 }
106
107 table.list
108 {
109         width: 100%;
110         border: 2px solid #d0d0d0;
111 }
112
113 table.list td
114 {
115         empty-cells: show;
116 }
117
118 td
119 {
120         color: black;
121         background-color: #e8e8e8;
122         vertical-align: top;
123 }
124
125 th
126 {
127         color: black;
128         background-color: #d0d0d0;
129         padding: 0.3ex;
130         text-align: left;
131         vertical-align: top;
132 }
133
134 ul.groups li
135 {
136         margin-top: 0.5ex;
137 }