Skip to content
Snippets Groups Projects
Commit 693e3736 authored by Anika Henke's avatar Anika Henke
Browse files

made print styles more readable and changed media classes to the same as in 3cc7f979

parent 7c5f6a37
No related branches found
No related tags found
No related merge requests found
......@@ -14,26 +14,51 @@ body {
/* hide certain sections */
.a11y,
div.notify, div.info, div.success, div.error,
#dokuwiki__header .tools, #dokuwiki__aside,
.dokuwiki .breadcrumbs, .dokuwiki .toc, .dokuwiki .secedit,
#dokuwiki__pagetools, #dokuwiki__footer {
div.notify,
div.info,
div.success,
div.error,
#dokuwiki__header .tools,
#dokuwiki__aside,
.dokuwiki .breadcrumbs,
.dokuwiki .toc,
.dokuwiki .secedit,
#dokuwiki__pagetools,
#dokuwiki__footer {
display: none;
}
.dokuwiki h1, .dokuwiki h2, .dokuwiki h3, .dokuwiki h4, .dokuwiki h5,
.dokuwiki caption, .dokuwiki legend {
.dokuwiki h1,
.dokuwiki h2,
.dokuwiki h3,
.dokuwiki h4,
.dokuwiki h5,
.dokuwiki caption,
.dokuwiki legend {
clear: both;
}
.dokuwiki ul { list-style: disc outside; }
.dokuwiki ol { list-style: decimal outside; }
.dokuwiki ol ol { list-style-type: lower-alpha; }
.dokuwiki ol ol ol { list-style-type: upper-roman; }
.dokuwiki ol ol ol ol { list-style-type: upper-alpha; }
.dokuwiki ol ol ol ol ol { list-style-type: lower-roman; }
.dokuwiki ul {
list-style: disc outside;
}
.dokuwiki ol {
list-style: decimal outside;
}
.dokuwiki ol ol {
list-style-type: lower-alpha;
}
.dokuwiki ol ol ol {
list-style-type: upper-roman;
}
.dokuwiki ol ol ol ol {
list-style-type: upper-alpha;
}
.dokuwiki ol ol ol ol ol {
list-style-type: lower-roman;
}
/* undo icons */
.dokuwiki a:link, .dokuwiki a:visited {
.dokuwiki a:link,
.dokuwiki a:visited {
text-decoration: underline;
color: #333;
background-color: inherit;
......@@ -53,24 +78,51 @@ a.mail:after {
.dokuwiki pre {
font-family: monospace;
}
.dokuwiki dl.code dt, .dokuwiki dl.file dt {
.dokuwiki dl.code dt,
.dokuwiki dl.file dt {
font-weight: bold;
}
/* images */
.dokuwiki img { border-width: 0; vertical-align: middle; }
.dokuwiki img.medialeft { margin: .5em 1.5em .5em 0; float: left; }
.dokuwiki img.mediaright { margin: .5em 0 .5em 1.5em; float: right; }
.dokuwiki img.mediacenter { margin: .5em auto; display: block; }
.dokuwiki img {
border-width: 0;
vertical-align: middle;
}
.dokuwiki img.media {
margin: .2em 0;
}
.dokuwiki img.medialeft {
margin: .2em 1em .2em 0;
float: left;
}
.dokuwiki img.mediaright {
margin: .2em 0 .2em 1em;
float: right;
}
.dokuwiki img.mediacenter {
margin: .2em auto;
display: block;
}
/* align table cells */
.dokuwiki .leftalign { text-align: left; }
.dokuwiki .centeralign { text-align: center; }
.dokuwiki .rightalign { text-align: right; }
.dokuwiki .leftalign {
text-align: left;
}
.dokuwiki .centeralign {
text-align: center;
}
.dokuwiki .rightalign {
text-align: right;
}
/* underline */
.dokuwiki em.u { font-style: normal; text-decoration: underline; }
.dokuwiki em em.u { font-style: italic; }
.dokuwiki em.u {
font-style: normal;
text-decoration: underline;
}
.dokuwiki em em.u {
font-style: italic;
}
div.clearer {
clear: both;
......@@ -93,7 +145,8 @@ div.clearer {
border-spacing: 0;
border: 1pt solid #ccc;
}
.dokuwiki th, .dokuwiki td {
.dokuwiki th,
.dokuwiki td {
padding: 3pt 5pt;
margin: 0;
vertical-align: top;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment