summaryrefslogtreecommitdiff
path: root/www/app/components/spinner
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-09-16 14:02:32 -0700
committerKali Kaneko (leap communications) <kali@leap.se>2016-09-22 11:40:11 -0400
commit073393af311d36c8ca7570ff0d3f0a3117c0b544 (patch)
treee59286ac350ba17110392f53b6e48bcedfd12ef1 /www/app/components/spinner
parentae5a20d059209f2027c05820dc3b4cfe7346c8a8 (diff)
[pkg] rename www to ui
Diffstat (limited to 'www/app/components/spinner')
-rw-r--r--www/app/components/spinner/index.js15
-rw-r--r--www/app/components/spinner/spinner.css42
2 files changed, 0 insertions, 57 deletions
diff --git a/www/app/components/spinner/index.js b/www/app/components/spinner/index.js
deleted file mode 100644
index ffc32850..00000000
--- a/www/app/components/spinner/index.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import React from 'react';
-import './spinner.css';
-
-class Spinner extends React.Component {
- render() {
- let props = {}
- return <div className="spinner">
- <div className="spin1"></div>
- <div className="spin2"></div>
- <div className="spin3"></div>
- </div>
- }
-}
-
-export default Spinner \ No newline at end of file
diff --git a/www/app/components/spinner/spinner.css b/www/app/components/spinner/spinner.css
deleted file mode 100644
index 5e8535c9..00000000
--- a/www/app/components/spinner/spinner.css
+++ /dev/null
@@ -1,42 +0,0 @@
-.spinner {
- height: 18px;
- display: inline-block;
-}
-
-.spinner > div {
- width: 18px;
- height: 18px;
- background-color: #000;
- vertical-align: middle;
- border-radius: 100%;
- display: inline-block;
- -webkit-animation: bouncedelay 1.5s infinite ease-in-out;
- animation: bouncedelay 1.5s infinite ease-in-out;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-.spinner .spin1 {
- -webkit-animation-delay: -.46s;
- animation-delay: -.46s;
-}
-.spinner .spin2 {
- -webkit-animation-delay: -.24s;
- animation-delay: -.24s;
-}
-
-@-webkit-keyframes bouncedelay {
- 0%, 80%, 100% {
- -webkit-transform: scale(0.5);
- } 40% {
- -webkit-transform: scale(0.9);
- }
-}
-
-@keyframes bouncedelay {
- 0%, 80%, 100% {
- transform: scale(0.5);
- } 40% {
- transform: scale(0.9);
- }
-}