Experiment with centered graph drawing.

This commit is contained in:
Sergio Martínez Portela 2023-06-09 20:54:01 +02:00
parent b248f507c6
commit 49a5ec3df2
3 changed files with 160 additions and 6 deletions

View file

@ -480,6 +480,17 @@ tr.__table-separator {
border-bottom: 0.5ex solid black;
}
.connections svg {
max-width: 100%;
height: auto;
}
.connections svg #graph0 > polygon {
/* Main box */
fill: transparent;
stroke: none;
}
/* Side-to-side */
@media (min-width: 120ex) {
body:not(.no-toc) {
@ -617,4 +628,15 @@ tr.__table-separator {
tr.__table-separator {
border-bottom: 0.5ex solid #eee;
}
.connections svg polygon {
stroke: white;
fill: #222;
}
.connections svg text {
fill: white;
}
.connections svg path {
stroke: white;
}
}