forked from sites/simonis.lol
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
eb7868e77e | |||
ecbe3c2b5c |
3
Dockerfile.dev
Normal file
3
Dockerfile.dev
Normal file
@ -0,0 +1,3 @@
|
||||
FROM nginx:latest
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
12
compose.yml
Normal file
12
compose.yml
Normal 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'
|
||||
|
@ -31,11 +31,23 @@
|
||||
}
|
||||
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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user