2014-10-02 00:23:34 +00:00
|
|
|
@import "reset-to-defaults.css";
|
|
|
|
|
|
|
|
@keyframes foo {
|
|
|
|
0% { text-shadow: 20px 20px tomato; }
|
|
|
|
100% { text-shadow: 20px 20px tomato; }
|
|
|
|
}
|
|
|
|
|
2015-10-27 22:56:05 +00:00
|
|
|
label {
|
2014-10-02 00:23:34 +00:00
|
|
|
font-size: 40px;
|
|
|
|
animation-name: foo;
|
|
|
|
animation-duration: 100s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-delay: 1ms;
|
|
|
|
}
|
|
|
|
|
2015-06-11 03:21:57 +00:00
|
|
|
.reference {
|
2014-10-02 00:23:34 +00:00
|
|
|
animation: initial;
|
|
|
|
text-shadow: 20px 20px tomato;
|
|
|
|
}
|