blob: c798b783b70f1e00b680b7ca8ece25529bae9e50 (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* partmom default stylesheet */
body {
margin: 25px;
font-family: helvetica;
}
h1 {
border-bottom: 2px solid;
}
.error {
padding: 15px;
background-color: yellow;
border: 4px solid orange;
color:red;
}
table.grid {
border-collapse: collapse;
border-spacing:2px;
font-size: 10pt;
width: 1200px;
}
th, td {
border-width: 1px;
border-style: inset;
border-color: white;
padding: 2px;
text-align: center;
}
tr.evenrow td {
background-color: #CCC;
}
tr.oddrow td {
background-color: #DDD;
}
tr.strongrow th {
background-color: #999;
font-size: 1.2em;
}
tr.strongrow td {
background-color: #999;
}
th.colheader {
background-color: #BBB;
text-align: right;
width: 300px;
padding-right: 4px;
vertical-align: top;
}
td.outofstock a {
color: #000;
text-decoration: none;
}
td.available a {
color: #000;
text-decoration: none;
}
tr.allparts {
vertical-align: top;
}
tr.allparts a {
color: #000;
text-decoration: none;
}
.fineprint {
border-top: 2px solid black;
margin-top: 25px;
padding-top: 5px;
font-size: 8pt;
font-style: italic;
}
table.sharedspecs {
border-collapse: collapse;
border-spacing:2px;
font-size: 10pt;
}
table.sharedspecs th {
text-align: right;
}
table.sharedspecs td {
text-align: left;
}
|