1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-07-04 23:42:54 +00:00

feat: add page that shows transformation configuration

This commit is contained in:
2023-12-04 17:35:44 +01:00
parent 7f54efe034
commit 3e45de56cf
5 changed files with 117 additions and 1 deletions

View File

@ -86,6 +86,10 @@ nav > ul > li:first-of-type {
text-decoration: none;
}
.centered {
text-align: center;
}
main {
margin: 0 auto;
max-width: 1140px;
@ -209,6 +213,25 @@ td.bg-gray, th.bg-gray {
color: white;
}
.bg-path {
background: var(--bg-gray-op);
}
.bg-from {
background: var(--bg-red-op);
}
.bg-to {
background: var(--bg-green-op);
}
.bg-path, .bg-from, .bg-to {
padding: 0.25rem 0.5rem;
border-radius: 3px;
font-family: monospace;
}
td.bg-shaded, th.bg-shaded {
background: repeating-linear-gradient(140deg, white, #e5e5f5 4px, white 8px);
}