/** Rockwell is the UoB brand header font */
@font-face {
  font-family: Rockwell;
  src: url(rockwell.ttf);
}

h1, .h1 {
  font-family: Rockwell, Sanchez, Georgia, "Times New Roman", Times, serif;
  color: #B01C2E; /* This is "University Red" from the Brand Guidelines. */
}

/** This is the circle with users initials in it, in the default Webber navbar */
.user-menu {
  background-color: hsla(0,0%,100%,.5);
  color: #f8f9fa;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/**
 * This styles the background text which displays the current environment.
 */
#webber-background-text {
  font-size: 10em;
  color: #ececec;
  position: fixed;
  width: 3000px;
  height: 2000px;
  top: -500px;
  left: -500px;
  z-index: -1000;
  line-height: normal;
  transform: rotate(-25deg);
}

/**
 * By default, Bootstrap will wrap lines that are too long in <pre> tags. This is perfectly
 * reasonable but looks ugly when printing Java stack traces. This line will instead allow a
 * horizontal scroll bar to be used, when this happens, on error pages.
 */
.error pre {
  word-wrap: normal;
}