mdbook/src/theme/css/book.css

66 lines
999 B
CSS
Raw Normal View History

body {
2019-03-20 16:34:19 +01:00
font-family: "Source Serif Pro", serif;
}
p {
text-align: justify;
line-height: 1.25em;
}
code {
2019-03-20 16:34:19 +01:00
font-family: "Source Code Pro", monospace;
2019-03-20 17:02:05 +01:00
padding: 0 !important;
}
code:not(.block) {
2019-03-20 16:34:19 +01:00
padding: 0 0 1pt 0 !important;
}
2019-03-20 17:02:05 +01:00
code:not(.block)::before {
content: '';
}
code:not(.block)::after {
content: '';
}
pre {
margin-left: 2em;
}
pre pre {
margin-left: 0;
}
pre.playpen > div.buttons {
float: right;
height: 0;
}
em {
font-style: italic;
}
h3::before {
content: "¶";
width: 1em;
display: inline-block;
margin-left: -1em;
}
h4::before {
content: "§";
width: 1em;
display: inline-block;
margin-left: -1em;
}
2019-03-20 22:13:12 +01:00
.left-buttons {
position: absolute;
}
.right-buttons {
position: absolute;
right: 0;
}
#menu-bar-sticky-container {
background-color: rgba(255, 255, 255, 0.8) !important;
}
@media print {
.bottons {
display: none;
}
body {
font-size: 11pt;
}
}