/* Toolfish documentation stylesheet */
* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: #cccccc url(images/cement.jpg);
  color: #111;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}
.page {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 14px 30px;
}
.sidebar {
  flex: 0 0 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}
.sidebar a { display: block; }
.sidebar img { display: block; max-width: 100%; height: auto; }
main {
  flex: 1;
  min-width: 0;
  border-left: 2px solid #9a9a9a;
  padding-left: 22px;
}
h1 { font-size: 20px; color: #006699; margin: 8px 0 14px; }
h2 { font-size: 15px; color: #003366; margin: 26px 0 8px; }
h3 { font-size: 13px; color: #003366; margin: 20px 0 6px; }
a { color: #006699; text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
main img { max-width: 100%; height: auto; }
img.shot { display: block; margin: 12px auto; }
p.center { text-align: center; }
.note { color: #cc2200; font-weight: bold; }
small { font-size: 11px; color: #333; }
kbd {
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  background: #f2f2ee;
  border: 1px solid #999;
  border-bottom-width: 2px;
  border-radius: 3px;
  padding: 0 5px;
  white-space: nowrap;
}
table.hotkeys { border-collapse: collapse; margin: 10px 0; }
table.hotkeys th, table.hotkeys td {
  text-align: left;
  padding: 5px 14px 5px 0;
  vertical-align: top;
  border-bottom: 1px solid #b5b5b5;
}
table.hotkeys th { color: #003366; }
ul { padding-left: 22px; }
li { margin-bottom: 8px; }
.box {
  background: #e5e5e5;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  padding: 4px 16px;
  margin: 16px 0;
}
footer {
  margin-top: 34px;
  padding-top: 10px;
  border-top: 1px solid #aaa;
  font-size: 11px;
  color: #333;
  text-align: center;
}
@media (max-width: 720px) {
  .page { flex-direction: column; }
  .sidebar { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; flex-basis: auto; }
  main { border-left: none; padding-left: 0; }
}
