-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtop.html
More file actions
230 lines (213 loc) · 4.57 KB
/
top.html
File metadata and controls
230 lines (213 loc) · 4.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/cascadia-code" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/9000.0.1/themes/prism-tomorrow.min.css" rel="stylesheet">
<style id="css-reset">
@charset "utf-8";
/***
The new CSS reset - version 1.8.5 (last updated 14.6.2023)
GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
all: unset;
display: revert;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
a,
button {
cursor: revert;
}
ol,
ul,
menu {
list-style: none;
}
img {
max-inline-size: 100%;
max-block-size: 100%;
}
table {
border-collapse: collapse;
}
input,
textarea {
-webkit-user-select: auto;
user-select: auto;
}
textarea {
white-space: revert;
}
meter {
-webkit-appearance: revert;
appearance: revert;
}
:where(pre) {
all: revert;
}
::placeholder {
color: unset;
}
::marker {
content: initial;
}
:where([hidden]) {
display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
-moz-user-modify: read-write;
-webkit-user-modify: read-write;
overflow-wrap: break-word;
-webkit-line-break: after-white-space;
line-break: after-white-space;
-webkit-user-select: auto;
user-select: auto;
}
:where([draggable="true"]) {
-webkit-user-drag: element;
}
:where(dialog:modal) {
all: revert;
}
</style>
<style id="css-db-docs">
:root {
--columns: 1;
--inner-columns: 1;
}
body {
font-family: 'Noto Sans', sans-serif;
font-size: 1rem;
font-weight: 400;
margin: 2rem;
}
h1 {
font-weight: 900;
font-size: 2.5em;
margin-block: 0.67em;
}
h2 {
font-weight: 800;
font-size: 2em;
margin-block: 3em 0.3em;
}
h3 {
font-weight: 700;
font-size: 1.7em;
margin-block: 2em 0.3em;
}
h4 {
font-weight: 600;
font-size: 1.5em;
margin-block: 1em 0.3em;
}
strong {
font-weight: 600;
}
em {
font-style: italic;
}
code[class*="language-"],
pre[class*="language-"] {
font-family: 'Cascadia Code', monospace;
}
.jump {
display: flex;
flex-wrap: wrap;
gap: 0.5em;
place-content: center;
margin: 1em 0 2em;
}
.jump a {
padding: 0.25em 0.5em;
border-radius: 0.5em;
background-color: #ccc;
}
.definition li {
display: grid;
line-height: 1.6;
padding: 0.2em 0;
}
.definition-columns li {
grid-template-columns: 1fr 1fr;
}
.definition-indexes li {
grid-template-columns: 2fr 6em 3fr;
}
.definition-foreign-keys li {
grid-template-columns: 3fr 2fr 3fr;
}
.definition-check-constraints li {
grid-template-columns: 3fr 2fr;
}
.definition li div {
padding: 0 0.25em;
overflow-wrap: anywhere;
}
.definition li:nth-child(even) {
background-color: #ddd;
}
.definition svg {
width: 1em;
height: 1em;
}
.table-data {
display: grid;
grid-template-columns: repeat(var(--columns), auto);
width: 100%;
overflow: auto;
}
.table-data div {
padding: 0.25em 0.5em;
white-space: nowrap;
}
.table-data .table-header {
background-color: #bbb;
}
.description-box {
padding-bottom: 0.5em;
border-bottom: 2px solid black;
}
.object-description {
display: grid;
grid-template-columns: auto 1fr;
gap: 1ch;
}
.object-description div {
font-style: italic;
font-weight: 300;
}
.inner-description {
grid-column: 1 / span var(--inner-columns);
}
.definition .object-description div {
padding: 0;
}
.align-center {
text-align: center;
}
.align-right {
text-align: right;
}
.highlight-blue {
color: blue;
}
body > :first-child {
margin-top: 0;
}
body > :last-child {
margin-bottom: 0;
}
</style>
</head>
<body>
<svg style="display: none">
<symbol id="sort-asc" viewBox="0 0 512 512"><path d="M8 256C8 119 119 8 256 8s248 111 248 248-111 248-248 248S8 393 8 256zm292 116V256h70.9c10.7 0 16.1-13 8.5-20.5L264.5 121.2c-4.7-4.7-12.2-4.7-16.9 0l-115 114.3c-7.6 7.6-2.2 20.5 8.5 20.5H212v116c0 6.6 5.4 12 12 12h64c6.6 0 12-5.4 12-12z"/></symbol>
<symbol id="sort-desc" viewBox="0 0 512 512"><path d="M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM212 140v116h-70.9c-10.7 0-16.1 13-8.5 20.5l114.9 114.3c4.7 4.7 12.2 4.7 16.9 0l114.9-114.3c7.6-7.6 2.2-20.5-8.5-20.5H300V140c0-6.6-5.4-12-12-12h-64c-6.6 0-12 5.4-12 12z"/></symbol>
</svg>