/*
 * ----------------------------------------------------------------------------
 * "THE BEERWARE LICENSE" (Revision 42):
 * <christof.hanke@induhviduals.de> wrote this file.  As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return.  Christof Hanke
 * ----------------------------------------------------------------------------
*/
.flex-container {
  display: flex;
}

.flex-item {
  border: none;
  margin: .5em;
  padding: .5em;
  text-align: center;
}

.right { 
    text-align: right;
}

.left { 
    text-align: left;
}

.left-border {
  border-left: 1px solid;
}

.right-border {
  border-right: 1px solid;
}

.row {
  flex-direction: row;
}

