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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
@import url('https://fonts.googleapis.com/css?family=Lato');
body {
font-family: 'Lato', sans-serif;
}
h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
font-family: 'Lato', sans-serif;
}
a {
color: #ff7f00;
}
@media screen and (min-width: 1200px) {
.wy-nav-content {
max-width: 1200px;
}
}
.wy-nav-top {
background-color: #ff7f00;
}
.wy-side-nav-search {
background-color: #ff7f00;
}
.wy-side-nav-search > div.version {
color: #333;
}
.wy-side-nav-search input[type="text"] {
border-color: #BF5F00;
}
.wy-menu-vertical a:active {
background-color: #ff7f00;
}
.rst-content dl:not(.docutils) dt {
background: #faf4ec;
border-top: solid 3px #ff7f00;
}
|