/*
 * theme-virusad.css — virus.ad's layer on top of the vendored terminal theme.
 * Never edit theme-terminal.css; put local changes here so upstream stays a
 * drop-in replace. See SOURCE.md.
 */
@import url("./theme-terminal.css");

/* Blinking cursor beside the navbar logo. Upstream notes this is redundant with
   their terminal-style mark but reads well with a different logo — which is our
   case, since we ship an original virus.ad mark. */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
#navbar-logo::after {
  content: "█";
  color: #33ff66;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  font-size: 0.8em;
}
