inflection_table.css
894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.inflection-table-container {
display: inline-block;
vertical-align: top;
}
table.InflectionTable {
border-width: 0;
/*border-style: solid;
border-color: gray;*/
border-collapse: collapse;
background-color: white;
margin: 15px;
}
table.InflectionTable td {
border-width: 1px;
padding: 15px;
border-style: solid;
border-color: gray;
background-color: #d9e5ed;
text-align: left;
}
table.InflectionTable td span.qualifiers {
color: darkgray;
font-style: italic;
}
table.InflectionTable td.ColumnHeader, table.InflectionTable td.RowHeader {
background-color: #d8d8d8;
}
table.InflectionTable td.ColumnHeader {
text-align: center;
}
table.InflectionTable td.RowHeader {
text-align: left;
}
table.InflectionTable td.EmptyCell {
border-width: 0px;
background-color: white;
}
ul.FormList {
list-style-type: none;
padding: 0;
margin: 0;
}