rust-cookbook/theme/custom.css
Michal Budzynski 0e07818023 Bumped to the latest mdbook version (0.0.25)
- enabled play button
- added clipboard support
- fixed several bugs on mobile
- new theme
- cleanup of custom css and js
2017-09-11 16:47:08 +02:00

33 lines
447 B
CSS

table {
width: 100%;
}
table td:first-child {
width: 65%;
}
table td:nth-child(2) {
width: 20%;
padding: 3px;
}
table td:nth-child(3) {
padding: 3px;
}
/* underline hyperlinked inline code items */
a:hover > .hljs {
text-decoration: underline;
}
/* color hyperlinked inline code items
identically to normal links */
.rust a > .hljs,
.navy a > .hljs,
.coal a > .hljs{
color: #2b79a2;
}
.light a > .hljs {
color: #4183c4;
}