/*
Theme Name: FireBoard Docs
Theme URI: https://docs.fireboard.io
Description: Custom documentation theme for FireBoard Labs converted from Hexo
Author: FireBoard Labs
Author URI: https://www.fireboard.com
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fireboard-docs

This theme is a custom WordPress conversion of the original Hexo-based FireBoard documentation site.
*/

.highlight {
  overflow-x: auto;
  background-color: #f8f8f8;
  padding: 0.4em 0 0;
  line-height: 1.1em;
  border-radius: 2px;
  position: relative;
}
.highlight table,
.highlight tr,
.highlight td,
.highlight tbody {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  border: none;
  display: table;
  overflow-x: visible;
}
.highlight td {
  display: table-cell;
}
.content .highlight table,
.content .highlight table tbody,
.content .highlight table tr,
.content .highlight table td {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
}
.content .highlight table td {
  display: table-cell;
}
.highlight .code pre {
  padding: 1.2em 1.4em;
  line-height: 1.5em;
  margin: 0;
}
.highlight .code .line {
  min-height: 1.5em;
}
.highlight.html .code:before,
.highlight.js .code:before,
.highlight.bash .code:before,
.highlight.css .code:before,
.highlight.json .code:before {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  text-align: right;
  font-size: 0.75em;
  padding: 5px 10px 0;
  line-height: 15px;
  height: 15px;
  font-weight: 600;
}
.highlight.html .code:before {
  content: "HTML";
}
.highlight.js .code:before {
  content: "JS";
}
.highlight.bash .code:before {
  content: "Shell";
}
.highlight.css .code:before {
  content: "CSS";
}
.highlight.json .code:before {
  content: "JSON";
}

code,
pre {
  font-family: "Roboto Mono", Monaco, courier, monospace;
  font-size: 0.8em;
  background-color: #f8f8f8;
  -webkit-font-smoothing: initial;
  -moz-osx-font-smoothing: initial;
}
code {
  color: #e96900;
  padding: 3px 5px;
  margin: 0 2px;
  border-radius: 2px;
  white-space: nowrap;
}
pre {
  color: #525252;
}
