mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
14 lines
258 B
CSS
14 lines
258 B
CSS
.button {
|
|
background-color: green;
|
|
}
|
|
|
|
.button:highlighted {
|
|
animation-name: highlight;
|
|
animation-duration: 2s;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
@keyframes highlight {
|
|
from { background-color: yellow; }
|
|
to { background-color: red; }
|
|
} |