diff options
| author | Ed Tanous <ed.tanous@intel.com> | 2017-06-26 11:08:40 -0700 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2017-06-26 11:08:40 -0700 |
| commit | 7b4e3dae0477703143b8cb28b3a6abc9d4d0d83b (patch) | |
| tree | ac89c4cb8ce43d534144f772c6b3620ffc3aa94c /static/css | |
| parent | 4d92cbfe32ef6ee24547401cc06994baa84a24aa (diff) | |
| download | bmcweb-7b4e3dae0477703143b8cb28b3a6abc9d4d0d83b.tar.gz bmcweb-7b4e3dae0477703143b8cb28b3a6abc9d4d0d83b.zip | |
Make dbus connections allow multiple connections
Fix static dependencies
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/intel.css | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/static/css/intel.css b/static/css/intel.css index 6915f8a..2596d1e 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 |

