/*
April Fools' 2024

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

#logo-icon {
  animation: rotate 5s linear infinite;
}
*/

/*
Valentine 2024, 2025

:root {
  --fix-oi-green-light: 255, 192, 203;
  --fix-oi-green-light-50: 255, 192, 203;
  --fix-oi-green-light-25: 255, 192, 203;

  --fix-oi-yellow-light: 255, 192, 203;
  --fix-oi-yellow-light-50: 255, 192, 203;
  --fix-oi-yellow-light-25: 255, 192, 203;
}

#submission-grid, #journal-grid, .data-grid {
  > .ac:before, > .pass:before {
    content: "❤ ";
  }

  > .wa:before, > .tle:before, > .re:before, > .ce:before, > .sk:before, > .fail:before {
    content: "💔 ";
    filter: grayscale(1);
  }
}
*/