Skip to content

Commit 47e1900

Browse files
committed
Update example and table rendering CSS.
1 parent cca2c85 commit 47e1900

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

index.html

+28-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
-->
1111
<script src='https://www.w3.org/Tools/respec/respec-w3c' class='remove'></script>
1212
<script class="remove"
13-
src="https://cdn.jsdelivr.net/gh/w3c/respec-vc@3.0.0/dist/main.js"></script>
13+
src="https://cdn.jsdelivr.net/gh/w3c/respec-vc@3.1.0/dist/main.js"></script>
1414
<script class="remove">
1515
var respecConfig = {
1616
// specification status (e.g., WD, LCWD, NOTE, etc.). If in doubt use ED.
17-
specStatus: "CR",
17+
specStatus: "CRD",
1818
group: "vc",
1919

2020
// the specification's short name, as in http://www.w3.org/TR/short-name/
@@ -179,6 +179,32 @@
179179
}
180180
.missing {
181181
background-color: #e06666;
182+
}
183+
table.simple {
184+
border-collapse: collapse;
185+
margin: 25px 0;
186+
min-width: 400px;
187+
border: 1px solid #dddddd;
188+
}
189+
table.simple thead tr {
190+
background-color: #005a9c;
191+
color: #ffffff;
192+
text-align: left;
193+
}
194+
table.simple th,
195+
table.simple td {
196+
padding: 12px 15px;
197+
vertical-align: top;
198+
text-align: left;
199+
}
200+
table.simple tbody tr {
201+
border-bottom: 1px solid #dddddd;
202+
}
203+
table.simple tbody tr:nth-of-type(even) {
204+
background-color: #00000008;
205+
}
206+
table.simple tbody tr:last-of-type {
207+
border-bottom: 2px solid #005a9c;
182208
}
183209
</style>
184210
</head>

0 commit comments

Comments
 (0)