mirror of
https://github.com/rust-lang-nursery/rust-cookbook
synced 2024-11-22 11:33:09 +00:00
34 lines
447 B
CSS
34 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;
|
||
|
}
|