/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Custom styles */
pre {
  line-height: 1.2;
}

.small {
  font-size: 0.75rem;
}

.right {
  float: right;
  margin-left: auto;
}

.success {
  color: green;
}

.warning {
  color: orange;
}

.danger {
  color: red;
}

.bg-danger {
  background-color: red;
}

.sticky {
  display: flex;
  background-color: var(--bg);
  padding: 20px 0px;
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0; /* The distance from the top of the viewport */
  z-index: 1000; /* Make sure the navbar is on top of other content */
}

nav > span img {
  width: 20px;
  height: 20px;
  vertical-align: text-top;
}
