blob: 22ac11ca7ff88c96058f889daf5fcee93e60f07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@import "reset-to-defaults.css";
@keyframes foo {
0% { box-shadow: 20px 20px tomato; }
100% { box-shadow: 20px 20px tomato; }
}
label {
font-size: 40px;
animation-name: foo;
animation-duration: 100s;
animation-timing-function: linear;
animation-delay: 1ms;
}
.reference {
animation: initial;
box-shadow: 20px 20px tomato;
}
|