/* 2020MAR24 */
/* 'css3prefix mixin' @see https://github.com/matthieua/sass-css3-mixins/blob/master/css3-mixins.scss */
/* 'keyframes' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/*/
/* 'animation' mixin from https://developer.mozilla.org/en-US/docs/Web/CSS/animation */
/* legacy-direction function @see http://www.sitepoint.com/building-linear-gradient-mixin-sass/ */
/* 'transition' mixin @see http://codepen.io/sawmac/pen/cayhK */
/* 'gradientanimation' mixin @see https://medium.com/@dave_lunny/animating-css-gradients-using-only-css-d2fd7671e759#.jlbdgs4jl */
/* 'animation' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/ */
/* line 4, ./topbar.scss */
div#topbar {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex: 0 1 auto;
}
/* line 13, ./topbar.scss */
div#topbar ul {
  padding: 0;
  margin: 0;
}
/* line 18, ./topbar.scss */
div#topbar p {
  padding: 0.25em;
  margin: 0;
}
/* line 23, ./topbar.scss */
div#topbar .start, div#topbar .end {
  padding: 0.50em;
}
/* line 27, ./topbar.scss */
div#topbar .start {
  border: 0em;
  border-right: 0.125em solid black;
  justify-content: flex-start;
  order: -1;
}
/* line 34, ./topbar.scss */
div#topbar .middle {
  flex: 1;
  flex-grow: 1;
  padding: 0.50em;
}
/* line 41, ./topbar.scss */
div#topbar .end {
  border: 0em;
  border-left: 0.125em solid black;
  justify-content: flex-end;
  order: 1;
}
/* line 48, ./topbar.scss */
div#topbar #clock {
  display: inline;
}

/* line 54, ./topbar.scss */
div#topbar.default {
  -webkit-box-shadow: 0 5px 20px #888;
  -moz-box-shadow: 0 5px 20px #888;
  box-shadow: 0 5px 20px #888;
}

/* line 63, ./topbar.scss */
div#topbar.fixed {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 1.00;
  margin-left: 0;
  -webkit-box-shadow: 0 0 40px #222;
  -moz-box-shadow: 0 0 40px #222;
  box-shadow: 0 0 40px #222;
}
