aboutsummaryrefslogtreecommitdiff
path: root/src/styles/Page.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/Page.css')
-rw-r--r--src/styles/Page.css17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/styles/Page.css b/src/styles/Page.css
index 2a8f877..59aea44 100644
--- a/src/styles/Page.css
+++ b/src/styles/Page.css
@@ -25,3 +25,20 @@ h2.header-text {
margin: 10px 20px 10px 20px;
}
}
+
+@keyframes astroFadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+ @keyframes astroFadeOut {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+ } \ No newline at end of file