We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948ff44 commit 5c8fe9bCopy full SHA for 5c8fe9b
css/secrets.css
@@ -9,21 +9,18 @@ svg {
9
margin: 8px;
10
}
11
12
-.cell:hover, .cell:visited, .cell:focus {
13
- animation: spinFlowers 5s ease-in-out infinite normal forwards;
+.cell {
14
padding: 0;
15
margin: 0;
16
-}
17
+ -webkit-transform: rotate(0deg);
+ transform: rotate(0deg);
18
+ -webkit-transition: -webkit-transform 5s;
19
+ transition: transform 5s;
20
+
21
+}
22
+.cell:hover {
23
+ transform: rotate(90deg);
24
+ -webkit-transform: rotate(90deg);
25
-@keyframes spinFlowers {
- 0% {
- transform:rotate(0deg);
- }
- 50% {
- transform:rotate(90deg);
26
- 100% {
27
28
29
0 commit comments