Description
The most recent docs.rs displays the contents for rouille-3.0.0 with no styles; only the top nav bar is styled. Tested with FF 86 and Chromium 89. When I last visited the page, in the past week or so, it displayed correctly.
Inspector shows the stylesheet links in <head>
as relative, e.g.,
<link rel="stylesheet" type="text/css" href="../rustdoc-20181129-1.32.0-nightly-3e90a12a8.css" id="mainThemeStyle">
...and obviously doesn't read valid CSS, since the console is full of "Ruleset ignored due to bad selector" messages. If I tweak the links to absolute like this:
<link rel="stylesheet" type="text/css" href="/rustdoc-20181129-1.32.0-nightly-3e90a12a8.css" id="mainThemeStyle">
...the styling appears, but will of course again be absent if I navigate away to any subpage.