@charset "utf-8";
/*from w3schools.com*/
/* side bar menu */
.sidetop {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #000;
  height: 100%;
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  color: #FFF;
  background-color: #000;
  position: fixed;
  height: 100%;
  overflow: auto;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: white;
  font-family:"Arial Black", Gadget, sans-serif;
  padding: 16px;
  text-decoration: none;
}

/* Active/current link */
.sidebar a.active {
  background-color: #09F;
  color: white;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #09F;
  color: white;
}

div.avatar {
	padding: 16px 16px;
}

div.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
  margin-left: 200px;
  padding: 1px 16px;
  height: 1000px;
  font-family: Verdana, Geneva, sans-serif;
}

div.content-main {
  display: flex;
  margin-top: 16px;
  padding: 2px 8px;
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
}

main div {
  display: none;
  padding: 20px;
}
.active {
  display: block;
}

table {
   width: 100%;
   
   td, th { 
      color: darken($baseColor, 10%);
      padding: $padding; 
   }
   
   td {
      text-align: center;
      vertical-align: middle;
      
      &:last-child {
         font-size: 0.95em;
         line-height: 1.4;
         text-align: left;
      }
   }
   
   th { 
      background-color: lighten(#FFF, 50%);
      font-weight: 300;
   }
   
   tr {     
      &:nth-child(2n) { background-color: #FFF; }
      &:nth-child(2n+1) { background-color: lighten(#FFF, 55%) }
   }
}