12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- html{
- width: 100vw;
- height: 100vh;
- background-color: #E0E0E0;
- }
- body{
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .wrapper{
- min-width: 800px;
- min-height: 1000px;
- position: relative;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-
- }
- .wrapper::after{
- content: "";
- position: absolute;
- background: url(auto.jpg);
- z-index: -1;
- width: 100%;
- height: 100%;
- opacity: 0.7;
- background-repeat: no-repeat no-repeat;
- background-position: center;
- }
- input{
- height: 25px;
- text-align: center;
- font-size: 20px;
- }
- select{
- height: 31px;
- font-size: 25px;
- }
- button{
- font-size: 20px;
- width: 100px;
- margin-left: 10px;
- height: 31px;
- }
- .cashbox{
- margin-top: 50px;
- background-color: blanchedalmond;
- }
- p{
- padding: 3px;
- font-size: 20px;
- background-color: honeydew;
- }
- .showcase{
-
- display: flex;
- }
- .wrapperBablo{
- display: flex;
- }
- #bablo{
- width: 210px;
- }
- .alarm{
- color: red;
- }
|