/* src/app/style/animation.scss */
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* src/app/style/button.scss */

/* src/app/style/desktop.scss */
.desktop {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 60px;
  overflow: hidden;
  background-color: var(--color-desktop);
}
.desktop .shortcut {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 60px;
  color: var(--color-shortcut);
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.desktop .shortcut.active .s-title {
  background-color: var(--color-shortcut-selected);
}
.desktop .shortcut * {
  pointer-events: none;
}
.desktop .shortcut img {
  height: 32px;
}
.desktop .shortcut .s-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 2px;
}
.desktop .shortcut:nth-child(1) {
  left: 60px;
  top: 60px;
}
.desktop .shortcut:nth-child(2) {
  left: 60px;
  top: 160px;
}

/* src/app/style/font.scss */
@font-face {
  font-family: "fa-solid";
  src: url(/static/font/fa-solid.woff2);
  font-display: swap;
}

/* src/app/style/form.scss */
.gf {
}

/* src/app/style/general.scss */
a {
  cursor: pointer;
  transition: 0.3s;
  text-decoration: underline;
  color: var(--color-txt1);
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--color-txt2);
  }
}
p {
  margin: 0 0 15px 0;
}
img {
  vertical-align: top;
}

/* src/app/style/helper.scss */

/* src/app/style/layout.scss */
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-anchor: none;
  overscroll-behavior: none;
  font-family:
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
html body * {
  box-sizing: border-box;
  outline: none;
  overflow-anchor: none;
  font-family:
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
html body #win {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
html body .splash {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 5px;
  background-color: black;
  color: #aaa;
  font-family: monospace;
  font-size: 16px;
  line-height: 22px;
  opacity: 0;
  pointer-events: none;
}
html body .splash.active {
  opacity: 1;
  pointer-events: inherit;
}

/* src/app/style/list.scss */

/* src/app/style/var.scss */
html {
  --color-desktop: #008080;
  --color-shortcut: #fff;
  --color-shortcut-selected: #040454;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
