/*
  Things that are part of theme:
    bg{
      .navbar
      div.dropdown-menu a

    }
    bg-hi {
      .navbar a
    }
    bg-low {
      .dropdown-item:active

    }
*/
:root {
  --blue: #17a2b8;
  --green: #51a051;
  --purple: #ad74bc;
  /*
    --red: $red;
  */
  --bg: var(--green);
  /*
    --bg-low: darken(var(--bg), 10);
    --bg-hi: lighten(var(--bg), 30);
  */
}

body {
  margin-top: 60px;
  box-sizing: content-box;
}

main {
  margin-bottom: 4rem;
  padding: 1rem;
}

/* Make inside links apear below header */
h2::before {
  display: block;
  content: " ";
  height: 55px;
  visibility: hidden;
  pointer-events: none;
}

ul.flex-column {
  margin-top: 1rem;
}

table.table tr td {
  padding: 0.1rem 1rem;
}

/*
.bg-theme, .bg-theme.active {
  background-color: $bg-color;
  color: white;
}
.text-theme {
  color: $bg-color;
}
.text-theme:hover, .text-theme-hi:hover {
  color: $bg-low;
}
.text-theme-hi {
  color: $bg-hi;
}
.text-theme-low {
  color: $bg-low;
}
*/
/*--------------------------------*/
/* Navbar */
.navbar {
  /*
    background-color: $bg-color;
  */
}
.navbar a {
  /*
      color: $bg-hi;
  */
}
.navbar a.active {
  color: white;
}

button {
  color: white;
  padding: 0;
  font-size: 1.2rem;
}

/*--------------------------------*/
/* Dropdown */
button.dropdown-toggle, button.dropdown-toggle:hover {
  color: white;
  /*
    border: 3px solid white;
    border-radius: 5px;
  */
}

div.dropdown-menu a {
  /*
      color: $bg-color;
  */
}
div.dropdown-menu .dropdown-item.active, div.dropdown-menu .dropdown-item:active {
  color: white;
}
div.dropdown-menu .dropdown-item.active {
  /*
      background-color: $bg-color;
  */
}
div.dropdown-menu div.course-name, div.dropdown-menu div.course-desc {
  display: inline-block;
}
div.dropdown-menu div.course-name {
  width: 7rem;
}
div.dropdown-menu div.course-desc {
  text-align: right;
  width: 9rem;
}
div.dropdown-menu .dropdown-item:active {
  /*
      background-color: $bg-low;
  */
}
div.dropdown-menu a.active:hover {
  /*
      color: $bg-hi;

      color: white;
  */
}
div.dropdown-menu a:hover {
  /*
      color: $bg-low;
  */
}

/*--------------------------------*/
/* Console Display */
.console {
  padding: 1rem;
  background-color: black;
}
.console pre {
  color: white;
}

pre code span.comment {
  color: red !important;
}

div.demo {
  width: 20rem;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
}
div.demo h3 {
  padding: 0.3rem 1rem;
  text-align: center;
}

/*--------------------------------*/
/* Topics Nav */
ul li a {
  text-align: center;
}
ul li a.active, ul li .dropdown-item:active {
  color: white;
  /*
      background-color: $bg-color;
  */
  border-radius: 25px;
}

.btn:focus {
  box-shadow: none;
}

/*--------------------------------*/
/* Scrollspy Nav */
/*
ul#myScrollSpy li a:hover{
  color: $bg-low;
}
*/
code h2 {
  display: inline-block;
  font-size: inherit;
}

/*--------------------------------*/
/* Class Diagrams */
div.class_diagram {
  display: inline-block;
  border: 1px solid black;
  font-family: "Lucida Console", Monaco, monospace;
  margin: 1rem 0;
}

div.class_diagram_head, div.class_diagram_body, div.class_diagram_footer {
  padding: 0.6rem;
  border: 1px solid black;
}

div.class_diagram_head {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #e5e5e5;
}

div.class_diagram_body, div.class_diagram_footer {
  line-height: 0.5rem;
}

div.table-example {
  border-left: 3px solid #c9c9c9;
  border-top: 3px solid #c9c9c9;
  border-bottom: 3px solid #c9c9c9;
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: auto;
}

pre.SQL {
  padding: 1rem;
  font-family: "Courier New";
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5rem;
  color: #cf0000;
}

img {
  margin: 1rem 0;
}

/* Career Resume */
.resume {
  margin: 2rem;
  padding: 1rem 2rem;
  border: 1px solid black;
  border-radius: 5px;
}
.resume h3 {
  font-weight: bold;
}
.resume .work-education ul {
  list-style-type: none;
  margin: 0 0 0 1rem;
  padding: 0;
}

/* GitHub */
div.box {
  border: 1px solid black;
  margin: 0.5rem;
  padding: 0.7rem;
  text-align: center;
}
div.box b {
  background-color: white;
  padding: 0.1rem 0.6rem;
}

.box {
  border: 1px solid black;
  background-color: #a8a8a8;
}
.box h5 {
  color: white;
  background-color: transparent;
}
.box .box {
  background-color: #bfbfbf;
}
.box .box .box {
  background-color: #cfcfcf;
}
.box .box .box .box {
  background-color: white;
}
.box .box .box .node {
  display: inline-block;
}

.box-file {
  background-color: greenyellow;
}

.box-stage {
  background-color: lightskyblue;
}

.box-local {
  background-color: mediumpurple;
}

.box-remote {
  background-color: indianred;
}

/*# sourceMappingURL=newStyles.css.map */
