2021-06-15 11:19:00 +00:00
|
|
|
<!-- Copyright 2020 the V8 project authors. All rights reserved.
|
|
|
|
Use of this source code is governed by a BSD-style license that can be
|
|
|
|
found in the LICENSE file. -->
|
|
|
|
<head>
|
|
|
|
<link href="./index.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<style>
|
2022-03-29 10:54:44 +00:00
|
|
|
h3 {
|
|
|
|
margin-block-start: 0em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.properties {
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.properties table {
|
|
|
|
overflow: visible;
|
|
|
|
min-width: 350px;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.properties table td {
|
2021-06-15 11:19:00 +00:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2022-03-29 10:54:44 +00:00
|
|
|
|
|
|
|
.properties table > tbody > tr > td:nth-child(2n+1):after {
|
2021-06-15 11:19:00 +00:00
|
|
|
content: ':';
|
2021-06-28 19:46:31 +00:00
|
|
|
}
|
2022-03-29 10:54:44 +00:00
|
|
|
|
|
|
|
.properties table > tbody > tr > td:nth-child(2n+1) {
|
2021-06-28 19:46:31 +00:00
|
|
|
padding-right: 3px;
|
2021-06-15 11:19:00 +00:00
|
|
|
}
|
2021-06-28 19:46:31 +00:00
|
|
|
|
2022-03-29 10:54:44 +00:00
|
|
|
.properties table > tbody > tr > td:nth-child(2n+2) {
|
2021-06-28 19:46:31 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-03-29 10:54:44 +00:00
|
|
|
.properties table select {
|
|
|
|
width: 100%;
|
2021-06-28 19:46:31 +00:00
|
|
|
}
|
|
|
|
|
2022-03-29 10:54:44 +00:00
|
|
|
.code {
|
2022-04-05 17:42:47 +00:00
|
|
|
font-family: var(--code-font);
|
2021-06-15 11:19:00 +00:00
|
|
|
}
|
2021-06-28 19:46:31 +00:00
|
|
|
|
2022-03-29 10:54:44 +00:00
|
|
|
.footer {
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: right;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer button {
|
|
|
|
flex: 1 1 0;
|
2021-06-28 19:46:31 +00:00
|
|
|
}
|
2021-06-15 11:19:00 +00:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<div id="body">
|
|
|
|
<div id="content"></div>
|
2022-03-29 10:54:44 +00:00
|
|
|
</div>
|