summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_mixins.scss
diff options
context:
space:
mode:
authorGabriel Albo <gabriel@albo.com.br>2016-03-01 15:17:54 -0300
committerGabriel Albo <gabriel@albo.com.br>2016-03-01 15:17:54 -0300
commita8de59132163718fcb1fba47b5e396dcac7355b6 (patch)
tree10dd83024c44bee8527c33f29916fb5d511d45c0 /web-ui/app/scss/_mixins.scss
parent5261ed0307c5032004f2b9d3926ca19832ed28bf (diff)
Adding new svg and dummy animation
Issue #238
Diffstat (limited to 'web-ui/app/scss/_mixins.scss')
-rw-r--r--web-ui/app/scss/_mixins.scss31
1 files changed, 31 insertions, 0 deletions
diff --git a/web-ui/app/scss/_mixins.scss b/web-ui/app/scss/_mixins.scss
index a623366d..c4cc234b 100644
--- a/web-ui/app/scss/_mixins.scss
+++ b/web-ui/app/scss/_mixins.scss
@@ -308,4 +308,35 @@
}
}
+@mixin logo {
+ @keyframes hideshow {
+ 0% { fill: #2ba6cb; }
+ 25% { opacity: 1; }
+ 100% { opacity: 0; }
+}
+
+.logo-part {
+ animation: hideshow 0.6s ease infinite;
+ opacity: 1;
+
+ &:nth-child(2) {
+ opacity: 0;
+ animation-delay: 0.1s;
+ }
+
+ &:nth-child(3) {
+ animation-delay: 0.2s;
+ }
+ &:nth-child(4) {
+ animation-delay: 0.3s;
+ }
+ &:nth-child(5) {
+ animation-delay: 0.4s;
+ }
+ &:nth-child(6) {
+ animation-delay: 0.5s;
+ }
+}
+}
+
@include tt-hint;