How to add CSS

Hey @Trent_Crawford , are you referring to this CSS from the Full Screen Loop Indicator?

@keyframes performance-looping {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: #4a271b;
  }
}

.performance.looping {
  /* change the duration here if you'd like the animation to be slower */
  animation: performance-looping 0.3s alternate linear infinite;
}

If so, it needs to be pasted inside the styles.css file. The scripts.js file is for javascript code. If you need more clarification, feel free to reply.

2 Likes