uix-subpage uix-homepage-header {
  background-color: var(--bg-content);
}
uix-subpage > .body {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding-top: 0;
  min-height: 90svh;
}
uix-subpage > .body .empty {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--green);
  font-weight: normal;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
uix-subpage > .body .empty > .fa {
  font-size: 60px;
}
uix-subpage > .body > a {
  color: var(--text);
  opacity: 0.3;
  text-align: center;
  margin-bottom: 20px;
}
uix-subpage > .body > a code {
  color: var(--text);
}
uix-subpage > .body > .warning {
  width: 100%;
  border: 2px solid #ff7116;
  box-sizing: border-box;
  padding: 20px 40px;
  display: inline;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-top: 10px;
  border-radius: 10px;
  text-align: center;
}
uix-subpage > .body > .version {
  font-weight: bold;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 40px;
  margin-bottom: 20px;
  margin-top: 30px;
}
uix-subpage > .body > .version > div > select {
  background: var(--bg-content);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 1000px;
  width: 140px;
  margin-left: 10px;
}
uix-subpage > .body > uix-markdown {
  margin-top: 30px;
  margin-bottom: 30px;
}
uix-subpage > .header {
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 2px solid var(--bg-content);
  padding-bottom: 30px;
  margin-bottom: 0px !important;
  display: flex;
  flex-direction: column;
}
uix-subpage > .header > .back {
  margin-bottom: 20px;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.1s;
  color: var(--text);
}
uix-subpage > .header > .back > .fa {
  margin-right: 4px;
}
uix-subpage > .header > .back:hover {
  opacity: 1;
  color: var(--accent);
}
uix-subpage > .header > h1 {
  font-size: 58px;
  margin-top: 0px;
  margin-bottom: 4px;
  flex-wrap: wrap;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
uix-subpage > .header > h1 > span {
  font-size: medium;
  font-weight: normal;
}
uix-subpage > .header > .homepage {
  margin-bottom: 16px;
}
uix-subpage > .header > .license {
  margin-top: 6px;
}
uix-subpage > .header > .license .fa {
  margin-right: 2px;
}
uix-subpage > .header > .stats {
  display: flex;
  gap: 16px;
}
uix-subpage > .header > .stats > * .fa {
  margin-right: 2px;
}
uix-subpage > .header > .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  margin-top: 12px;
}
uix-subpage > .header > .tags > span {
  padding: 2px 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-content);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
uix-subpage > .header, uix-subpage > .body {
  max-width: 1000px;
  margin: auto;
}
