Compare commits

...

2 Commits
main ... main

Author SHA1 Message Date
eb7868e77e
add dev dockerfile 2025-02-21 11:24:46 +01:00
ecbe3c2b5c
add fancy ahh animation 2025-02-17 12:36:55 +01:00
3 changed files with 71 additions and 44 deletions

3
Dockerfile.dev Normal file
View File

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

12
compose.yml Normal file
View File

@ -0,0 +1,12 @@
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,6 +1,6 @@
<!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>
@ -31,17 +31,29 @@
} }
h1::after { h1::after {
content: ""; content: "";
background-color: #ffe800;
background: repeating-linear-gradient(45deg, #ffe800, #ffe800 0.5rem, #222 0.5rem, #222 1.0rem);
display: block; display: block;
height: 0.5rem; height: 0.5rem;
margin-top: 1rem; 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> </style>
</head> </head>
<body> <body>
<main> <main>
<h1>Our website is under construction.</h1> <h1>Our website is under construction.</h1>
</main> </main>
</body> </body>
</html> </html>