/* Like style.css, but with fixed nav bar at top.
*/
@import "style.css";
/* Shuffle body down to make room
*/
body {
margin-top: 5em;
}
body>div.navBar {
position: fixed;
}
div.navBar {
/* display: block; */
/* position: absolute; */
/* width: auto; height: auto; */
top: 0em;
/* right: auto; bottom: auto; left: auto; */
margin-left: auto; margin-right: auto;
/* This navbar will overlap objects on the page.
*/
/* border: 2pt solid yellow; */
}
