/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

@keyframes subBytes {
	0%, 50%, 100% {
		opacity: 100%;
	}
	25%, 75% {
		opacity: 0%;
	}
}

table.animate-subBytes > tbody > tr > td > span {
	animation: subBytes 2s ease-in-out 1 forwards;
}
