CTFd-theme-pixo
CTFd-theme-pixo copied to clipboard
Make it possible to remove flicker effect
The effect gets nauseating after a while and it should be possible to disable it.
So did you solve this problem?
I found a solution,in "pixo/static/css/main.min.css",
search "@keyframes flicker",
change "0%-100%" to "0%" and "100%", delete the middle,
and
change the value of the parameter "opacity" to ".5".
such as:

good luck.
and remember to clear your browser cache.
thanks for your contribution, I would love to merge your pull request addressing the issue.
If possible could you please create a pull request for the same?
The user should be able to turn it off in the UI for themselves, easily and fast. This is an accessibility nightmare. WCAG would like to know your location.
You can also add the following CSS to the Theme config in the admin section. That way you don't have to change the theme files.
main:before {
animation: none;
}