docs(guide): adjust styles of the guides

This commit is contained in:
Sean McArthur
2016-07-26 08:55:08 -07:00
parent 12c69b5dd0
commit 81e6e98d80
4 changed files with 30 additions and 2 deletions

View File

@@ -1,2 +1,24 @@
@import url('../rustdoc.css');
@import url('../main.css');
h1 {
margin-top: 50px;
}
h2 {
color: #555;
margin-top: 30px;
}
p {
margin-bottom: 1.2em;
}
p a, #toc a {
color: #3873AD;
}
p a:hover, #toc a:hover {
text-decoration: underline;
}

5
doc/guide/index.md Normal file
View File

@@ -0,0 +1,5 @@
% Guides
Hello! Just getting started? Great! Here, take a look at a guide:
- [Server Guide](./server.html)

View File

@@ -48,7 +48,8 @@ There is quite a few concepts here, so let's tackle them one by one.
## Handler
The [`Handler`][Handler] is how you define what should happen during the lifetime
of an HTTP message.
of an HTTP message. We've implemented it for the `Text`, defining what should
happen at each event during an HTTP message.
## Next