html {
  height: 100%; }

body {
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif; }

#header {
  height: calc(100px + 2rem);
  display: flex;
  align-items: center;
  background: #4992c8;
  color: #bbbbbb; }

#headerContent {
  align-items: center;
  display: flex; }

#headerContent a {
  color: white;
  font-size: 2rem; }

#headerContent a.logo {
  line-height: 0;
  background: white;
  margin-right: 1rem;
  padding: 1rem; }

#headerContent .title {
  font-size: 2rem;
  color: white; }

#page {
  display: flex;
  height: calc( 100vh - 100px);
  /* calculate the height. Header is 100px */ }

#sidebar {
  width: calc(101px + 2rem);
  background: #21445e; }

#sidebar ul {
  list-style: none;
  padding: 1rem;
  margin: 0; }

#sidebar a {
  color: #bbb; }

#sidebar a:hover {
  color: white; }

#content {
  background: white;
  padding: 1rem;
  /* enable grow, disable shrink */ }

.git_log {
  border-bottom: 1px solid #ddd;
  padding: 10px 0px; }

.git_diff {
  color: #757575; }

.git_diff.deleted {
  color: #ff7575; }

.git_diff.new {
  color: #35bb35; }
