1<!-- Copyright 2020 the V8 project authors. All rights reserved. 2Use of this source code is governed by a BSD-style license that can be 3found in the LICENSE file. --> 4<head> 5 <link href="./index.css" rel="stylesheet"> 6</head> 7 8<style> 9h3 { 10 margin-block-start: 0em; 11} 12 13.properties { 14 overflow: auto; 15 max-height: 300px; 16} 17 18.properties table { 19 overflow: visible; 20 min-width: 350px; 21 border-collapse: collapse; 22} 23 24.properties table td { 25 vertical-align: top; 26} 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 width: 100%; 38} 39 40.properties table select { 41 width: 100%; 42} 43 44.code { 45 font-family: var(--code-font); 46} 47 48.footer { 49 margin-top: 10px; 50 text-align: right; 51 width: 100%; 52 display: flex; 53 align-content: space-between; 54} 55 56.footer button { 57 flex: 1 1 0; 58} 59</style> 60 61<div id="body"> 62 <div id="content"></div> 63</div> 64