blob: 463cd0d0cc08928124456e2c4d2b1200215fe333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@import "../base/mixins.less";
@import "./variables.less";
@import "./summary.less";
@import "./glossary.less";
body {
font-family: @font-family-base;
color: @text-color;
.text-adjust(100%);
}
.page {
// Section and first titles
.section {
.gitbook-markdown(@md-color: @text-color, @md-line-height: 1.6, @md-link-color: @link-color);
}
// Hide the title (only used to build PDF table of content)
.book-chapter {
display: none;
}
}
|