blob: 9e2fb989c23e3db029dc1c76db07a0d3e93319aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* Color of the top header */
.md-header {
background-color: #16326c;
}
/* Color of the bottom header */
.md-tabs {
background-color: #16326c;
}
/* Color of links */
.md-typeset a {
color: #16326c;
}
.md-typeset h1 {
font-size: 1.8rem;
color: rgba(0,0,0,.87);
}
/* Hiding the content from left side navbar */
.md-nav__title {
display: none;
}
/* Hiding the content from the top navbar */
.md-tabs__list {
display: none;
}
|