summaryrefslogtreecommitdiff
path: root/static/css/intel.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/intel.css')
-rw-r--r--static/css/intel.css110
1 files changed, 110 insertions, 0 deletions
diff --git a/static/css/intel.css b/static/css/intel.css
index 6915f8adac..2596d1e1bf 100644
--- a/static/css/intel.css
+++ b/static/css/intel.css
@@ -2880,5 +2880,115 @@ a.forgot-pass {
color: #fff!important
}
+.animate-enter {
+ -webkit-animation: enter 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ animation: enter 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ display: block;
+ position: relative;
+}
+
+@-webkit-keyframes enter {
+ from {
+ opacity: 0;
+ height: 0px;
+ }
+ 20% {
+ opacity: .5;
+ }
+ 40% {
+ opacity: .15;
+ color: red;
+ }
+ 60% {
+ opacity: .75;
+ }
+ 80% {
+ opacity: .3;
+ }
+ to {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
+@keyframes enter {
+ from {
+ opacity: 0;
+ height: 0px;
+ }
+ 20% {
+ opacity: .5;
+ }
+ 40% {
+ opacity: .15;
+ color: red;
+ }
+ 60% {
+ opacity: .75;
+ }
+ 80% {
+ opacity: .3;
+ }
+ to {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
+.animate-leave {
+ -webkit-animation: leave 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ animation: leave 600ms cubic-bezier(0.390, 0.575, 0.565, 1.000);
+ display: block;
+ position: relative;
+}
+
+@-webkit-keyframes leave {
+ to {
+ opacity: 0;
+ height: 0px;
+ }
+ 80% {
+ opacity: .25;
+ }
+ 60% {
+ opacity: .10;
+ color: red;
+ }
+ 40% {
+ opacity: .5;
+ }
+ 20% {
+ opacity: .30;
+ }
+ from {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
+@keyframes leave {
+ to {
+ opacity: 0;
+ height: 0px;
+ }
+ 80% {
+ opacity: .25;
+ }
+ 60% {
+ opacity: .10;
+ color: red;
+ }
+ 40% {
+ opacity: .5;
+ }
+ 20% {
+ opacity: .30;
+ }
+ from {
+ opacity: 1;
+ height: 30px;
+ }
+}
+
/*# sourceMappingURL=../maps/styles/auth-a200a050c1.css.map */ \ No newline at end of file