this repo has no description
1/* Stylesheet for Common Test */
2
3body {
4 padding: 10px; margin: 10px;
5 -webkit-font-smoothing: antialiased;
6 background-color: #FBFFFC;
7}
8
9a:link {
10 color: #2B507D;
11}
12
13a:visited {
14 color: #85ABD5
15}
16
17h1 {
18 font-family: verdana, arial, sans-serif; font-size: 200%;
19 letter-spacing: -2px; word-spacing: 2px; font-weight: bold;
20 color: #3F3F3F;
21}
22
23h2 {
24 font-family: verdana, arial, sans-serif; font-size: 175%;
25 letter-spacing: -2px; word-spacing: 2px; font-weight: normal;
26 color: #3F3F3F;
27}
28
29h3 {
30 font-family: verdana, arial, sans-serif; font-size: 140%;
31 letter-spacing: -2px; word-spacing: 2px; font-weight: bold;
32 color: #3F3F3F;
33}
34
35h4 {
36 font-family: verdana, arial, sans-serif; font-size: 120%;
37 letter-spacing: -2px; word-spacing: 2px; font-weight: normal;
38 color: #3F3F3F;
39}
40
41p {
42 font-family: "Trebuchet MS", "Lucida Sans Unicode", verdana, arial, sans-serif;
43 font-size: .9em; color: #000000;
44}
45
46ul {
47 list-style-type: none;
48 padding: 0em;
49 margin: 1em;
50}
51li {
52 font-size: 0.95em; color: #000000;
53 margin: .3em 0;
54}
55
56pre {
57 color: black;
58 font-family: "Monaco", "Andale Mono", "Consolas", monospace;
59 font-size: .8em;
60 }
61
62code {
63 color: black;
64 font-family: "Monaco", "Andale Mono", "Consolas", monospace;
65 font-size: .8em;
66}
67
68div.mono_sm {
69 font-family: "Courier New", monospace; font-size: .75em;
70 word-spacing: 1px; color: #000000;
71}
72
73div.mono_la {
74 font-family: "Courier New", monospace; font-size: .8em;
75 color: #000000;
76}
77
78div.copyright {
79 padding: 20px 0px 0px 0px;
80 font-family: "Courier New", monospace; font-size: .7em;
81 color: #000000;
82}
83
84div.ct_internal {
85 background: lightgrey; color: black;
86 font-family: "Monaco", "Andale Mono", "Consolas", monospace;
87 font-size: .95em;
88 margin: .2em 0 0 0;
89}
90
91div.ct_error_notify {
92 background: #CC0000;
93 color: #FFFFFF;
94 font-family: "Monaco", "Andale Mono", "Consolas", monospace;
95 font-size: 1.05em;
96 margin: .2em 0 0 0;
97}
98
99div.ct_error_notify a:link {
100 color: #D0D0D0;
101}
102
103div.ct_error_notify a:visited {
104 color: #AAAAAA;
105}
106
107div.default {
108 background: lightgreen; color: black;
109 font-family: "Monaco", "Andale Mono", "Consolas", monospace;
110 font-size: 1.05em;
111 margin: .2em 0 0 0;
112}
113
114div.label {
115 font-family: verdana, arial, sans-serif; font-size: 200%;
116 letter-spacing: -2.5px; word-spacing: 2px;
117 font-weight: bold; color: #2B507D;
118}
119
120table {
121 border-collapse: collapse; border: 6px solid #3F3F3F;
122 background: #FFFFFF;
123 font: .8em/1.2em "Lucida Sans Unicode", verdana, arial, sans-serif;
124 color: #222;
125}
126
127caption {
128 font-size: 1.3em; font-weight: bold;
129 text-align: center; padding: 1em 4px;
130}
131
132td, th {
133 padding: .5em 7px .5em 7px; line-height: 1.3em;
134 border-bottom: 3px solid #F5C4C1;
135 border-left: 2px dashed #809FFF;
136}
137
138th {
139 background: #3F3F3F; color: #fff;
140 font-family: arial, sans-serif; font-size: 120%;
141 letter-spacing: -0.5px;
142 font-weight: bold; text-align: center;
143 padding-right: .5em; vertical-align: top;
144}
145
146thead th {
147 background: #3F3F3F; color: #fff;
148 font-family: arial, sans-serif; font-size: 120%;
149 letter-spacing: -0.5px;
150 font-weight: bold; text-align: center;
151 padding-right: .5em; vertical-align: top;
152 text-decoration: underline;
153}
154
155tfoot td {
156 font-family: arial, sans-serif; font-size: 110%;
157 letter-spacing: -0.5px;
158 font-weight: bold;
159}
160
161.odd td {
162 background: #F3F3F3;
163}
164.odd th {
165 background: #F3F3F3;
166}
167
168td a, td a:link {
169 color: #2B507D;
170}
171
172td a:visited {
173 color: #85ABD5;
174}
175
176tr:hover th[scope=row], tr:hover td {
177 background-color: #D1D1D1;
178 color: #fff;
179}
180
181td a:hover, td a:focus {
182 color: #85ABD5;
183}
184
185th a, td a:active {
186 color: #85ABD5;
187}
188
189th + td {
190 padding-left: .5em;
191}
192
193#button_holder {
194 display: block; float: center;
195 font-family: arial, verdana, sans-serif;
196 font-size: 12px; text-shadow: 1px 1px lightgray;
197}
198
199.btn a {
200 padding: 6px 12px; float: center;
201 text-decoration: none; color: #3F3F3F;
202 font-weight: bold; border: 3px outset #3F3F3F;
203 background-color: #F3F3F3;
204}
205
206.btn a:hover {
207 color: #fff;
208 background-color: #809FFF;
209}