diff --git a/website/docs/source/layouts/layout.erb b/website/docs/source/layouts/layout.erb
index c743215d5..4c2adbed7 100644
--- a/website/docs/source/layouts/layout.erb
+++ b/website/docs/source/layouts/layout.erb
@@ -36,6 +36,11 @@
Vagrant Documentation
diff --git a/website/docs/source/stylesheets/_nav.less b/website/docs/source/stylesheets/_nav.less
index 674b6170e..4adfdbfdc 100644
--- a/website/docs/source/stylesheets/_nav.less
+++ b/website/docs/source/stylesheets/_nav.less
@@ -1,71 +1,74 @@
// roll your own nav
nav {
- width: 100%;
- font-size: 15px;
- text-transform: uppercase;
- .museo-sans-light;
- color: @medium-gray-text;
- height: 80px;
- position: fixed;
- top: 0;
- left: 0;
- background-color: @white;
- z-index: 9999999999;
+ width: 100%;
+ font-size: 15px;
+ text-transform: uppercase;
+ .museo-sans-light;
+ color: @medium-gray-text;
+ height: 80px;
+ position: fixed;
+ top: 0;
+ left: 0;
+ background-color: @white;
+ z-index: 9999999999;
- &.docs {
- background: @gray-background;
- }
+ &.docs {
+ background: @gray-background;
+ }
- .vagrant-logo {
- display: block;
- text-indent: -999999px;
- background: url(/images/logo_vagrant.png) no-repeat 0 0;
- height: 70px;
- width: 275px;
- float: left;
- margin: 10px 20px;
- }
+ .vagrant-logo {
+ display: block;
+ text-indent: -999999px;
+ background: url(/images/logo_vagrant.png) no-repeat 0 0;
+ height: 70px;
+ width: 275px;
+ float: left;
+ margin: 10px 20px;
+ }
- .vagrant-docs-logo {
- display: block;
- text-indent: -999999px;
- background: url(/images/logo_docs.png) no-repeat 0 0;
- height: 70px;
- width: 350px;
- float: left;
- margin: 10px 20px;
- }
+ .vagrant-docs-logo {
+ display: block;
+ text-indent: -999999px;
+ background: url(/images/logo_docs.png) no-repeat 0 0;
+ height: 70px;
+ width: 350px;
+ float: left;
+ margin: 10px 20px;
+ }
- ul {
- margin: 25px 20px;
+ ul {
+ margin: 25px 20px;
- li {
- display: inline;
- margin-left: 15px;
- }
- }
+ li {
+ display: inline;
+ margin-left: 15px;
+ }
- .active-nav {
- color: @blue;
- }
+ li.pill {
+ background-color: #48b4fb;
+ border-radius: 50px;
+ color: #FFF;
+ padding: 10px 18px;
+ }
+ }
- .contact {
+ .active-nav {
+ color: @blue;
+ }
- &:hover {
- background-color: @light-gray-background;
- padding: 10px;
- margin-right: -10px;
- margin-left: 5px;
- .rounded;
- }
+ .contact {
- &:active {
- background-color: darken(@light-gray-background, 5%);
- }
- }
+ &:hover {
+ background-color: @light-gray-background;
+ padding: 10px;
+ margin-right: -10px;
+ margin-left: 5px;
+ .rounded;
+ }
+
+ &:active {
+ background-color: darken(@light-gray-background, 5%);
+ }
+ }
}
-
-
-
-
diff --git a/website/docs/source/v2/getting-started/index.html.md b/website/docs/source/v2/getting-started/index.html.md
index e5d319f00..8b9553821 100644
--- a/website/docs/source/v2/getting-started/index.html.md
+++ b/website/docs/source/v2/getting-started/index.html.md
@@ -21,6 +21,16 @@ Before diving into your first project, please [install Vagrant](/v2/installation
And because we'll be using [VirtualBox](http://www.virtualbox.org) as our
provider for the getting started guide, please install that as well.
+
+
+More of a book person? If you prefer to read a physical
+book, you may be interested in
+
+Vagrant: Up and Running
+, written by the author of Vagrant and published by O'Reilly.
+
+
+
## Up and Running
```