aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Graph.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/Graph.css')
-rw-r--r--src/pages/Graph.css33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/pages/Graph.css b/src/pages/Graph.css
deleted file mode 100644
index 8cb98ee..0000000
--- a/src/pages/Graph.css
+++ /dev/null
@@ -1,33 +0,0 @@
-.Title {
- font-size: 2em;
- margin-top: 24px;
-}
-
-.ToTheMoon {
- -webkit-animation-duration: 0.5s;
- animation-duration: 0.5s;
- -webkit-animation-delay: 1.5s;
- animation-delay: 1.5s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
-}
-
-@-webkit-keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
-}
-
-@keyframes fadeIn {
- 0% {
- opacity: 0;
- }
- 100% {
- opacity: 1;
- }
-}