CSE_CST

css infosec.town

Jun 15th, 2024
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <style>
  2. body {
  3. background: linear-gradient(to right, red, blue, green, red);
  4. animation: flashing-background 3s infinite;
  5. }
  6.  
  7. @keyframes flashing-background {
  8. 0% {
  9. background-color: red;
  10. }
  11. 25% {
  12. background-color: blue;
  13. }
  14. 50% {
  15. background-color: green;
  16. }
  17. 75% {
  18. background-color: red;
  19. }
  20. 100% {
  21. background-color: red;
  22. }
  23. }
  24.  
  25. @keyframes flashing-font {
  26. 0% {
  27. color: red;
  28. }
  29. 50% {
  30. color: red;
  31. }
  32. 100% {
  33. color: red;
  34. }
  35. }
  36.  
  37. button {
  38. animation: flashing-buttons 3s infinite;
  39. }
  40.  
  41. @keyframes flashing-buttons {
  42. 0% {
  43. background-color: red;
  44. }
  45. 25% {
  46. background-color: blue;
  47. }
  48. 50% {
  49. background-color: yellow;
  50. }
  51. 75% {
  52. background-color: green;
  53. }
  54. 100% {
  55. background-color: red;
  56. }
  57. }
  58.  
  59. </style>
Advertisement
Add Comment
Please, Sign In to add comment