about summary refs log tree commit diff
path: root/src/rustbook/css.rs
AgeCommit message (Collapse)AuthorLines
2015-06-24separate css and js from rustMathieu David-177/+0
2015-06-24Add class to last paragraph that contains next and previous navigation links ↵Mathieu David-0/+4
to add bigger margin
2015-06-24Some love for the rustbook, added Open Sans font, made the sidebar more ↵Mathieu David-8/+33
beautiful with more space and colors, added some style to the code blocks
2015-05-17Add 'active' class to current page in rustbook table of contentsSean Collins-0/+5
2015-02-05Make the book chapters printableKostas Karachalios-41/+47
Tested on: * Safari on OSX * Firefox on OSX
2015-01-30rollup merge of #21494: jatinn/jsnavAlex Crichton-0/+9
Added javascript code to insert next/prev links in the rust book. Related Issue - https://github.com/rust-lang/rust/issues/20835
2015-01-26Add same "-webkit-overflow-scrolling: touch" to the table of contents in the ↵Nelson Chen-0/+1
book.
2015-01-26Add "-webkit-overflow-scrolling: touch" to book CSS for the page wrapper.Nelson Chen-0/+1
This change permits native momentum scrolling in Safari on iOS in the book.
2015-01-22add next/prev section links in the book -- using jsjatinn-0/+9
2015-01-13Make the Rust Book more mobile friendlySeth Faxon-1/+55
2015-01-10rustbook: use a relative @import path to ensure it works offline.Huon Wilson-1/+1
The URL previously caused the book to require an internet connection to get the full styling, this should mean no internet is required.
2015-01-08"The Rust Programming Language"Steve Klabnik-0/+72
This pulls all of our long-form documentation into a single document, nicknamed "the book" and formally titled "The Rust Programming Language." A few things motivated this change: * People knew of The Guide, but not the individual Guides. This merges them together, helping discoverability. * You can get all of Rust's longform documentation in one place, which is nice. * We now have rustbook in-tree, which can generate this kind of documentation. While its style is basic, the general idea is much better: a table of contents on the left-hand side. * Rather than a almost 10,000-line guide.md, there are now smaller files per section.