mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
95798a2eba
Related to #2666
61 lines
927 B
SCSS
61 lines
927 B
SCSS
@import "variables";
|
|
@import "mixins";
|
|
@import "html";
|
|
@import "text";
|
|
@import "layout";
|
|
@import "blocks";
|
|
@import "tables";
|
|
@import "lists";
|
|
@import "pages";
|
|
|
|
html, body {
|
|
background-color: #FFF;
|
|
}
|
|
|
|
body {
|
|
font-family: 'DejaVu Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Roboto", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
|
|
table {
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.page-content {
|
|
overflow: hidden;
|
|
}
|
|
|
|
// Prevent code block overflow on export
|
|
pre {
|
|
padding-left: 12px;
|
|
}
|
|
pre:after {
|
|
display: none;
|
|
}
|
|
pre code {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.page-break {
|
|
page-break-after: always;
|
|
}
|
|
@media screen {
|
|
.page-break {
|
|
border-top: 1px solid #DDD;
|
|
}
|
|
}
|
|
|
|
ul.contents ul li {
|
|
list-style: circle;
|
|
}
|
|
|
|
.chapter-hint {
|
|
color: #888;
|
|
margin-top: 32px;
|
|
}
|
|
.chapter-hint + h1 {
|
|
margin-top: 0;
|
|
} |