property-link-table-template.html 1.01 KB
Newer Older
1 2 3 4 5 6 7 8
<!-- 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>
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
h3 {
  margin-block-start: 0em;
}

.properties {
  overflow: auto;
  max-height: 300px;
}

.properties table {
  overflow: visible;
  min-width: 350px;
  border-collapse: collapse;
}

.properties table td {
25 26
  vertical-align: top;
}
27 28

.properties table > tbody > tr > td:nth-child(2n+1):after {
29
  content: ':';
30
 }
31 32

.properties table > tbody > tr > td:nth-child(2n+1) {
33
  padding-right: 3px;
34
}
35

36
.properties table > tbody > tr > td:nth-child(2n+2) {
37 38 39
  width: 100%;
}

40 41
.properties table select {
  width: 100%;
42 43
}

44
.code {
45
  font-family: var(--code-font);
46
  font-size: var(--code-font-size);
47
}
48

49 50 51 52 53 54 55 56 57 58
.footer {
  margin-top: 10px;
  text-align: right;
  width: 100%;
  display: flex;
  align-content: space-between;
}

.footer button {
  flex: 1 1 0;
59
}
60 61 62 63
</style>

<div id="body">
  <div id="content"></div>
64
</div>