add fancy ahh animation
This commit is contained in:
		| @ -1,6 +1,6 @@ | ||||
| <!doctype html> | ||||
| <html lang="en"> | ||||
|   <head> | ||||
| <head> | ||||
|   <meta charset="utf-8"> | ||||
|   <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
|   <title>⚠️</title> | ||||
| @ -31,17 +31,29 @@ | ||||
|     } | ||||
|     h1::after { | ||||
|       content: ""; | ||||
|         background-color: #ffe800; | ||||
|         background: repeating-linear-gradient(45deg, #ffe800, #ffe800 0.5rem, #222 0.5rem, #222 1.0rem); | ||||
|       display: block; | ||||
|       height: 0.5rem; | ||||
|       margin-top: 1rem; | ||||
|       background: repeating-linear-gradient( | ||||
|         45deg, | ||||
|         #ff8c00, /* Orange */ | ||||
|         #ff8c00 1rem, | ||||
|         #222 1rem, | ||||
|         #222 2rem | ||||
|       ); | ||||
|       background-size: 300% 100%; /* Makes animation smooth */ | ||||
|       animation: moveStripes 3s linear infinite; | ||||
|     } | ||||
|  | ||||
|     @keyframes moveStripes { | ||||
|       0% { background-position: 0 0; } | ||||
|       100% { background-position: -4rem 0; } /* Moves further to ensure smooth loop */ | ||||
|     } | ||||
|   </style> | ||||
|   </head> | ||||
|   <body> | ||||
| </head> | ||||
| <body> | ||||
|   <main> | ||||
|     <h1>Our website is under construction.</h1> | ||||
|   </main> | ||||
|   </body> | ||||
| </body> | ||||
| </html> | ||||
|  | ||||
		Reference in New Issue
	
	Block a user