Commit 133beb8c authored by Claude Meny's avatar Claude Meny

Update CONTRIBUTING.md

parent b5d32ea5
Pipeline #16046 canceled with stage
## Git ## Git
### tests divers 3D animations ### tests divers 3D animations
<html> <html>
<head>
<style>
div { div {
width: 100px; width: 100px;
height: 100px; height: 100px;
background-color: red; background: red;
animation-name: example; transition: width 2s, height 4s;
animation-duration: 4s;
} }
@keyframes example { div:hover {
from {background-color: red;} width: 300px;
to {background-color: yellow;} height: 300px;
} }
</html> </style>
</head>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment