Compare commits

..

1 Commits
main ... main

Author SHA1 Message Date
3588e86e27 Update src/index.html 2025-02-17 11:23:15 +00:00
3 changed files with 81 additions and 70 deletions

View File

@ -1,3 +0,0 @@
FROM nginx:latest
CMD ["nginx", "-g", "daemon off;"]

View File

@ -1,12 +0,0 @@
services:
app:
container_name: simonis.lol
build:
context: .
dockerfile: Dockerfile.dev
restart: none
ports:
- '8080:80'
volumes:
- './src:/usr/share/nginx/html'

View File

@ -1,59 +1,85 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>⚠️</title> <title>⚠️</title>
<style> <style>
html, body { html, body {
height: 100%; height: 100%;
} overflow: hidden;
body { }
background-color: #fff; body {
background: radial-gradient(circle at center, #fff 0%, #f8f8f8 75%, #ebebeb 100%); background-color: #fff;
color: #222; background: radial-gradient(circle at center, #fff 0%, #f8f8f8 75%, #ebebeb 100%);
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; color: #222;
font-size: 1rem; font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
line-height: 1.5; font-size: 1rem;
margin: 0; line-height: 1.5;
display: flex; margin: 0;
justify-content: center; display: flex;
align-items: center; justify-content: flex-start;
} align-items: center;
main { height: 100vh;
padding: 1rem; position: relative;
text-align: center; padding-left: 10vw;
} }
h1 { main {
font-size: 2.5rem; padding: 1rem;
line-height: 1.1; text-align: center;
margin: 0; position: absolute;
} animation: moveText 5s infinite linear alternate;
h1::after { }
content: ""; h1 {
display: block; font-size: 2.5rem;
height: 0.5rem; line-height: 1.1;
margin-top: 1rem; margin: 0;
background: repeating-linear-gradient( position: relative;
45deg, display: inline-block;
#ff8c00, /* Orange */ animation: shakeText 0.2s infinite alternate ease-in-out;
#ff8c00 1rem, }
#222 1rem, .crazy-underline {
#222 2rem position: absolute;
); width: 100%;
background-size: 300% 100%; /* Makes animation smooth */ height: 0.5rem;
animation: moveStripes 3s linear infinite; background: repeating-linear-gradient(45deg, #ffe800, #ffe800 0.5rem, #222 0.5rem, #222 1.0rem);
} animation: moveUnderline 3s infinite linear, spinUnderline 1s infinite linear;
}
@keyframes moveStripes { @keyframes moveText {
0% { background-position: 0 0; } 0% { top: 10%; left: 5%; }
100% { background-position: -4rem 0; } /* Moves further to ensure smooth loop */ 25% { top: 80%; left: 15%; }
} 50% { top: 30%; left: 50%; }
</style> 75% { top: 90%; left: 30%; }
</head> 100% { top: 10%; left: 5%; }
<body> }
<main>
<h1>Our website is under construction.</h1> @keyframes shakeText {
</main> 0% { transform: translateX(0) rotate(0deg); }
</body> 25% { transform: translateX(-3px) rotate(-2deg); }
50% { transform: translateX(3px) rotate(2deg); }
75% { transform: translateX(-2px) rotate(-1deg); }
100% { transform: translateX(2px) rotate(1deg); }
}
@keyframes moveUnderline {
0% { top: 0%; left: 5%; }
25% { top: 80%; left: 10%; }
50% { top: 30%; left: 45%; }
75% { top: 90%; left: 25%; }
100% { top: 10%; left: 5%; }
}
@keyframes spinUnderline {
0% { transform: rotate(0deg); }
100% { transform: rotate(720deg); }
}
</style>
</head>
<body>
<main>
<h1>Our website is under construction.</h1>
<div class="crazy-underline"></div>
</main>
</body>
</html> </html>