aboutsummaryrefslogtreecommitdiff
path: root/src/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css
index c3e9ac7..ffd7dda 100644
--- a/src/index.css
+++ b/src/index.css
@@ -75,3 +75,16 @@ body {
background-color: transparent;
}
}
+.animate-flash-green {
+ animation-name: flash-green;
+ animation-duration: 700ms;
+ animation-timing-function: ease-in;
+}
+@keyframes flash-green {
+ from {
+ color: lawngreen;
+ }
+ to {
+ color: inherit;
+ }
+}