ant-http/build/htdocs/dist/packages/default/Calculator/combined.css
2016-10-29 14:34:29 +02:00

143 lines
3.5 KiB
CSS

/*!
* OS.js - JavaScript Cloud/Web Desktop Platform
*
* Copyright (c) 2011-2015, Anders Evenrud <andersevenrud@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @author Anders Evenrud <andersevenrud@gmail.com>
* @licence Simplified BSD License
*/
/*.ApplicationCalculatorWindow {
}*/
.ApplicationCalculatorWindow gui-text {
display : block;
margin : 8px;
height : 50px;
}
.ApplicationCalculatorWindow gui-text > input {
font-size : 30px;
font-family : Monospace;
line-height : 50px;
text-align : right;
}
.ApplicationCalculatorWindow.noop {
opacity : .1;
}
.ApplicationCalculatorWindow.NaN {
-webkit-animation:CalculatorSuck 3s linear;
-moz-animation:CalculatorSuck 3s linear;
-ms-animation:CalculatorSuck 3s linear;
-o-animation:CalculatorSuck 3s linear;
animation:CalculatorSuck 3s linear;
}
@-webkit-keyframes CalculatorSuck {
100% {
-webkit-transform: scale(0) rotate(360deg);
transform: scale(0) rotate(360deg);
-webkit-opacity: 0;
}
50% {
-webkit-transform: scale(.5) rotate(180deg);
transform: scale(.5) rotate(180deg);
}
10% {
-webkit-transform: scale(1.5) rotate(0deg);
transform: scale(1.5) rotate(0deg);
}
0% {
-webkit-opacity: 1;
}
}
@-moz-keyframes CalculatorSuck {
100% {
-moz-transform: scale(0) rotate(360deg);
transform: scale(0) rotate(360deg);
-moz-opacity: 0;
}
50% {
-moz-transform: scale(.5) rotate(180deg);
transform: scale(.5) rotate(180deg);
}
10% {
-moz-transform: scale(1.5) rotate(0deg);
transform: scale(1.5) rotate(0deg);
}
0% {
-moz-opacity: 1;
}
}
@-o-keyframes CalculatorSuck {
100% {
-o-transform: scale(0) rotate(360deg);
transform: scale(0) rotate(360deg);
-o-opacity: 0;
}
50% {
-o-transform: scale(.5) rotate(180deg);
transform: scale(.5) rotate(180deg);
}
10% {
-o-transform: scale(1.5) rotate(0deg);
transform: scale(1.5) rotate(0deg);
}
0% {
-o-opacity: 1;
}
}
@keyframes CalculatorSuck {
100% {
transform: scale(0) rotate(360deg);
opacity: 0;
}
50% {
transform: scale(.5) rotate(180deg);
}
10% {
transform: scale(1.5) rotate(0deg);
}
0% {
opacity: 1;
}
}