@charset "UTF-8";
/* FONT SOURCE */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local("Inter"), url("/fonts/Inter.woff2?v=4.0") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: local("Inter"), url("/fonts/Inter-Italic.woff2?v=4.0") format("woff2");
}
/* GENERIC ELEMENTS */
:root {
  --bg1: #FFF1;
  --bg2: #FFF2;
  --text: #fff;
  --status-offline: #FFF2;
  --status-online: #4f4;
  --status-afk: #f84;
}

html:not(.fancy) * {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

a {
  color: inherit;
}

table {
  border-spacing: 2px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

html.hide-offline tr.offline {
  display: none;
}

td:not(.empty) {
  position: relative;
  height: 50px;
  padding: 0px 30px;
  background: var(--bg1);
  text-align: right;
  white-space: pre;
  transition: width 0.2s, height 0.2s, padding 0.2s;
}
td:not(.empty)[data-objective=Player] {
  text-align: left;
  padding-left: 40px;
}
td:not(.empty):first-of-type {
  width: 50px;
  padding: 0px !important;
  background: transparent;
  z-index: 10;
}
td:not(.empty):first-of-type img {
  height: 100%;
  image-rendering: pixelated;
  display: block;
}

td:not(.empty)::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: var(--relative);
  height: 100%;
  background: var(--bg2);
  z-index: -1;
}

html.compact td:not(.empty) {
  height: 30px;
  padding: 0px 10px;
}
html.compact td:not(.empty)[data-objective=Player] {
  padding-left: 30px;
}
html.compact td:not(.empty):first-of-type {
  width: 30px;
}

tr.current-player td:not(.empty) {
  background: var(--bg2);
  font-weight: bold;
}

.sticky {
  position: sticky !important;
  left: 0;
}

th {
  padding: 10px 20px;
  background: var(--bg2);
  cursor: pointer;
  transition: padding 0.2s;
}

html.compact th {
  padding: 5px 10px;
}

th.webstats-sort-column {
  position: relative;
}
th.webstats-sort-column::after {
  position: absolute;
  top: 10px;
  right: 10px;
  transition: top 0.2s, right 0.2s;
}
th.webstats-sort-column.ascending::after {
  content: "↑";
}
th.webstats-sort-column.descending::after {
  content: "↓";
}

html.compact th.webstats-sort-column::after {
  top: 5px;
  right: 5px;
}

.status {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--status-offline);
  transition: top 0.2s, left 0.2s;
}

html.compact .status {
  top: 10px;
  left: 10px;
}

.status.online {
  background: var(--status-online);
}

.status.afk {
  background: var(--status-afk);
}

.centre {
  text-align: center;
}

.img-inline {
  height: 1em;
  margin: 0px 5px;
  vertical-align: sub;
}

.hidden {
  display: none;
}

/* POSITIONAL ELEMENTS */
body {
  margin: 0px;
  color: var(--text);
  background-color: #235;
  background-image: url("/img/background-1080.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: Inter, sans-serif;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  width: 100%;
  padding: 0px 10%;
  box-sizing: border-box;
  background: var(--bg2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5333333333);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: padding-left 0.2s;
  z-index: 20;
}
header > * {
  display: flex;
  margin: 0px;
}
header > h1 {
  line-height: 50px;
}
header img {
  height: 50px;
  margin: 0px 10px;
}
header a {
  transition: background-color 0.2s, -webkit-backdrop-filter 0.2s;
  transition: background-color 0.2s, backdrop-filter 0.2s;
  transition: background-color 0.2s, backdrop-filter 0.2s, -webkit-backdrop-filter 0.2s;
  text-decoration: none;
}
header a:hover {
  background: rgba(255, 255, 255, 0.1333333333);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: none;
}
header a.active {
  background: rgba(255, 255, 255, 0.2);
}

nav > * {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 0px 20px;
}

#options {
  flex-shrink: 1;
  flex-wrap: wrap;
  max-height: 50px;
  color: var(--text);
}
#options > * {
  display: flex;
  align-items: center;
  line-height: 25px;
  flex-shrink: 0;
  flex-grow: 1;
}
#options input {
  margin-left: 20px;
}

main {
  margin: 100px auto;
  width: 80%;
  transition: width 0.2s;
}

#playtime-graph {
  position: relative;
  margin: 50px auto 0px auto;
  height: 700px;
}

footer {
  height: 50px;
  margin-left: 10%;
  color: rgba(255, 255, 255, 0.3333333333);
}

/* MEDIA DIRECTIVES */
@media (prefers-color-scheme: dark) {
  :root {
    --bg1: #0003;
    --bg2: #0005;
    --text: #ddd;
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 0px 10px;
  }
  main {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 930px) {
  header #options {
    flex-direction: column;
  }
}
@media screen and (max-width: 720px) {
  main {
    margin-top: 150px;
  }
  header {
    padding: 0px;
  }
  header img {
    height: 100px;
  }
  header #options {
    flex-shrink: 0;
    max-height: 100px;
  }
  header > * {
    flex-direction: column;
  }
  #playtime-graph {
    height: 500px;
  }
}/*# sourceMappingURL=style.css.map */