Change base to be the default DokuWiki template

This commit is contained in:
2026-01-30 11:17:54 +01:00
parent decb19f5bd
commit 90786557a2
90 changed files with 4205 additions and 1812 deletions

68
css/print.css Normal file → Executable file
View File

@@ -11,13 +11,15 @@ body {
}
/* hide certain sections */
.a11y,
audio,
video,
#dokuwiki__header .tools,
#dokuwiki__aside,
.dokuwiki .breadcrumbs,
.dokuwiki .toc,
.dokuwiki .pageId,
#dw__toc,
h3.toggle,
#dokuwiki__pagetools,
#dokuwiki__footer {
display: none;
@@ -32,7 +34,6 @@ caption,
legend {
clear: both;
}
ul {
list-style: disc outside;
}
@@ -52,15 +53,12 @@ ol ol ol ol ol {
list-style-type: lower-roman;
}
/* undo icons */
a:link,
a:visited {
text-decoration: none;
border-bottom: 1pt dotted;
color: #333;
background-color: inherit;
background-image: none;
padding: 0;
}
/* display href after link */
@@ -74,15 +72,19 @@ a.mail:after {
/* code blocks */
pre {
font-family: monospace;
white-space: pre-wrap;
}
dl.code dt,
dl.file dt {
font-weight: bold;
}
mark {
font-weight: bold;
}
/* images */
img,
svg {
img {
border-width: 0;
vertical-align: middle;
}
@@ -90,19 +92,15 @@ img.media {
margin: .2em 0;
}
img.medialeft {
margin: .2em 1.5em .2em 0;
margin: .2em 1em .2em 0;
}
img.mediaright {
margin: .2em 0 .2em 1.5em;
margin: .2em 0 .2em 1em;
}
img.mediacenter {
margin: .2em auto;
}
mark {
font-weight: bold;
}
blockquote {
padding: 0 10pt;
margin: 0;
@@ -114,6 +112,9 @@ blockquote {
}
/* tables */
.dokuwiki div.table {
margin-bottom: 1.4em;
}
table {
border-collapse: collapse;
empty-cells: show;
@@ -126,14 +127,13 @@ td {
margin: 0;
vertical-align: top;
border: 1pt solid #666;
text-align: left;
}
[dir=rtl] th,
[dir=rtl] td {
text-align: right;
}
th {
font-weight: bold;
text-align: left;
}
[dir=rtl] th {
text-align: right;
}
@@ -142,14 +142,40 @@ th {
#dokuwiki__header {
border-bottom: 2pt solid #ccc;
}
#dokuwiki__header h1 {
#dokuwiki__header .logo {
font-size: 1.5em;
font-weight: bold;
}
#dokuwiki__header h1 a {
#dokuwiki__header .logo a {
text-decoration: none;
border-width: 0;
}
#dokuwiki__header .logo img {
float: left;
margin-right: .5em;
height: 64px;
width: auto;
}
[dir=rtl] #dokuwiki__header .logo img {
float: right;
margin-right: 0;
margin-left: .5em;
}
.dokuwiki div.footnotes {
clear: both;
border-top: 1pt solid #000;
border-top: 1pt dotted #999;
margin-top: 10pt;
}
.dokuwiki div.docInfo {
font-size: 90%;
text-align: right;
clear: both;
padding-top: 2pt;
border-top: 1pt solid #999;
margin-top: 10pt;
}
[dir=rtl] .dokuwiki div.docInfo {
text-align: left;
}