w3
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 25s

This commit is contained in:
2026-01-21 23:30:43 -05:00
parent 0863e932d5
commit 0ce859a50e
7 changed files with 315 additions and 0 deletions

View File

@@ -67,3 +67,39 @@ blockquote {
padding-left: 2em;
margin-left: 0px;
}
@keyframes irritating {
0% {
border-left: 50px solid orange;
border-right: 50px solid salmon;
padding: 0px;
background-position-x: 0px;
}
50% {
border-left: 10px solid orange;
border-right: 10px solid salmon;
padding-left: 40px;
padding-right: 40px;
background-position-x: 50%;
}
100% {
border-left: 50px solid orange;
border-right: 50px solid salmon;
padding: 0px;
background-position-x: 100%;
}
}
.annoy {
animation-name: irritating;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
color: white;
background-color: rgba(0, 0, 0, 0.5);
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(45deg, red, orange, yellow, green, blue, purple, red, orange, yellow, green, blue, purple);
background-size: 200%;
}