Adding style to the application

We'll also add a few lines of CSS in the public/stylesheet file to style our example application.

Open public/stylesheets/style.css and add the following code:

 body { min-height: 75rem; /* Can be removed; just added for demo purposes */ } .navbar { margin-bottom: 0; } .navbar-collapse .container-fluid { padding: 2rem 2.5rem; border-bottom: 1px solid #55595c; } .navbar-collapse h4 { color: #818a91; } .navbar-collapse .text-muted { color: #818a91; } .about { float: left; max-width: 30rem; margin-right: 3rem; } .social a { font-weight: 500; color: #eceeef; } .social a:hover { color: #fff; } .jumbotron { padding-top: 6rem; padding-bottom: 6rem; margin-bottom: 0; background-color: #fff; } .jumbotron p:last-child { margin-bottom: ...

Get Node.js 6.x Blueprints now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.