53 lines
784 B
CSS
53 lines
784 B
CSS
body {
|
|
background:
|
|
radial-gradient(circle at 10% 0%, rgba(32, 107, 196, 0.08), transparent 28rem),
|
|
var(--tblr-bg-surface-secondary);
|
|
}
|
|
|
|
.navbar-brand a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.page-header {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.record-values {
|
|
display: grid;
|
|
gap: 0.25rem;
|
|
max-width: 52rem;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.record-values code {
|
|
white-space: normal;
|
|
}
|
|
|
|
.btn-list form {
|
|
margin: 0;
|
|
}
|
|
|
|
.table-sort {
|
|
align-items: center;
|
|
background: transparent;
|
|
border: 0;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
display: inline-flex;
|
|
font: inherit;
|
|
gap: 0.25rem;
|
|
padding: 0;
|
|
text-transform: inherit;
|
|
}
|
|
|
|
.table-sort:hover,
|
|
.table-sort:focus {
|
|
color: var(--tblr-primary);
|
|
}
|
|
|
|
.sort-indicator {
|
|
display: inline-block;
|
|
min-width: 1ch;
|
|
}
|