initial commit

This commit is contained in:
2025-11-02 11:49:39 +01:00
commit ec9dcadf58
47 changed files with 1997 additions and 0 deletions

37
errorpages/style.css Normal file
View File

@@ -0,0 +1,37 @@
/*
#
# Full height page, flexbox centers the SVG horizontally and vertically.
#
*/
html, body {
height: 100%;
margin: 0;
background: #fff;
}
body {
display: flex;
justify-content: center;
align-items: center;
}
/*
#
# Force SVG to act as a block so flexbox can center it properly.
#
*/
svg {
display: block;
}
/*
#
# Text style for the arc labels.
#
*/
svg text {
font-family: Arial, sans-serif;
font-size: 12px;
fill: #d90000;
letter-spacing: 1px;
}