/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
html {
  /*
  Linked anchors are obscured behind the fixed heading when linked to
  Need to add the height of sticky header plus some padding.
  https://css-tricks.com/fixed-headers-on-page-links-and-overlapping-content-oh-my/
  */
  scroll-padding-top: 135px;
}

/* last edited info at the end of documentation posts */
#tamus-last-edited {
  display: block;
  margin: 3rem 0 1rem 0;
}

/* accessibility tool - display text only to a screen reader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

/* extra whitespace for all h2s after the first one */
.entry-content h2:nth-child(n+2) {
  margin-top: 30px;
}

.site-inner .entry-content h2, .site-inner .entry-content h3, .site-inner .entry-content h4, .site-inner .entry-content h5, .site-inner .entry-content h6 {
  position: relative;
}
.site-inner .entry-content a.anchorlink {
  outline: none;
  text-decoration: none;
  border-bottom: none;
  color: #1a202c;
  /**
   * show link icon for in-page anchor links
   * Modified from code available at: https://github.com/soderlind/wp-anchor-header
   */
}
.site-inner .entry-content a.anchorlink:active::after, .site-inner .entry-content a.anchorlink:hover::after, .site-inner .entry-content a.anchorlink:focus::after {
  color: #1a202c;
  font-family: dashicons;
  content: "\f103"; /*dashicons-admin-links*/
  font-size: 1.5rem;
  margin-left: 5px;
  line-height: 1;
  font-weight: 400;
  height: 20px;
  width: 20px;
  display: inline-block;
  font-style: normal;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: top;
  text-align: center;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
.site-inner .entry-content a.anchorlink:focus {
  outline: 1px dotted #1a202c;
  outline-offset: 2px;
}/*# sourceMappingURL=tamus-documentation-public.css.map */