/* Twitter Animation Loading Scrren */ .twitter-loading-bg { background: #1DA1F2; background: linear-gradient(-45deg, #1DA1F2, #1A8CD8, #1DA1F2, #1A8CD8); background-size: 400% 400%; animation: gradientBG 15s ease infinite; } @keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .twitter-logo-animate { animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } @keyframes fadeIn { 0%,100% { opacity: 0; } 50% { opacity: 1; } }