Learning_GTK4_tree/testsuite/reftests/label-text-shadow-changes-m...

20 lines
348 B
CSS
Raw Normal View History

2023-12-12 11:36:42 +01:00
@import "reset-to-defaults.css";
@keyframes foo {
0% { text-shadow: 20px 20px tomato; }
100% { text-shadow: 20px 20px tomato; }
}
label {
font-size: 40px;
animation-name: foo;
animation-duration: 100s;
animation-timing-function: linear;
animation-delay: 1ms;
}
.reference {
animation: initial;
text-shadow: 20px 20px tomato;
}