more beautiful examples index.html & fixes

This commit is contained in:
2023-02-23 20:47:20 +01:00
parent a1f5da363f
commit 50a83798d1
7 changed files with 122 additions and 32 deletions

View File

@@ -119,8 +119,29 @@ body {
}
/* This div will have crazy cool style, as this should represent that you can use (almost) all the CSS you want.*/
.create .crazy-styled {
.create .special-style {
background-color: aqua;
border-radius: 50px;
font-family: cursive;
padding: 5%;
animation-name: background;
animation-duration: 5s;
animation-iteration-count: 500;
}
@keyframes background {
0% {
background-color: aqua;
border-radius: 50px;
}
50% {
background-color: rgba(0, 255, 255, 0.2);
border-radius: 200px;
}
100% {
background-color: aqua;
border-radius: 50px;
}
}
.centered {