mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
* More mkdocs porting * mkdocs-ify http/external links * move README.md up one level * Further sharpen code-sample CSS * fix last internal-ref links
95 lines
1.6 KiB
CSS
95 lines
1.6 KiB
CSS
/* Top left, desktop */
|
|
.wy-menu {
|
|
background-color: #c0c0c0;
|
|
}
|
|
/* Top left, mobile */
|
|
.wy-nav-top {
|
|
background-color: #c0c0c0;
|
|
}
|
|
/* Left navbar */
|
|
.wy-side-nav-search {
|
|
background-color: #c0c0c0;
|
|
}
|
|
|
|
/* Code samples without <pre> (none currently in use) */
|
|
.rst-content code {
|
|
color: #000000;
|
|
background-color: #e0e0e0;
|
|
}
|
|
.rst-content pre code {
|
|
color: #000000;
|
|
background-color: #eae2cb;
|
|
}
|
|
.highlight {
|
|
color: #0FF1CE;
|
|
}
|
|
.caption-text {
|
|
color: maroon;
|
|
padding: 4px;
|
|
}
|
|
|
|
/* Code samples using <pre> (which is currently in use) */
|
|
.pre-highlight {
|
|
color: #000000;
|
|
background-color: #c5b690;
|
|
font-size: 12px;
|
|
padding: 10px;
|
|
margin-bottom: 0px;
|
|
}
|
|
.pre-non-highlight {
|
|
color: #000000;
|
|
background-color: #eae2cb;
|
|
font-size: 12px;
|
|
padding: 10px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
/* Section titles in content pages */
|
|
h1 {
|
|
color: maroon;
|
|
background-color: #e0e0e0;
|
|
}
|
|
h2 {
|
|
color: maroon;
|
|
background-color: #e0e0e0;
|
|
}
|
|
h3 {
|
|
color: maroon;
|
|
background-color: #e0e0e0;
|
|
}
|
|
|
|
/* Hyperlinks in content pages */
|
|
a {
|
|
color: maroon;
|
|
}
|
|
a:visited {
|
|
color: maroon;
|
|
}
|
|
a:hover {
|
|
background-color: #e0e0e0;
|
|
color: maroon;
|
|
}
|
|
|
|
/* Hyperlinks in navbar */
|
|
.wy-menu-vertical li ul li a {
|
|
margin-bottom:0;
|
|
color:#000000;
|
|
font-weight:normal
|
|
}
|
|
.wy-menu-vertical a {
|
|
display:inline-block;
|
|
line-height:18px;
|
|
padding:.4045em 1.618em;
|
|
display:block;
|
|
position:relative;
|
|
font-size:90%;
|
|
color:#000000
|
|
}
|
|
.wy-menu-vertical a:hover {
|
|
background-color:#4e4a4a;
|
|
cursor:pointer;
|
|
color:#e0e0e0;
|
|
}
|
|
.wy-menu-vertical a:hover span.toctree-expand {
|
|
color:#808080
|
|
}
|