1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- html{
- width: 100vw;
- height: 100vh;
- background-color: #E0E0E0;
- }
- body{
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .wrapper{
- margin-top: 150px;
- 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.6;
- 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;
- }
- p.info{
- padding: 0;
- margin: 0;
- }
- .showcase{
- display: flex;
- }
- .wrapperBablo{
- display: flex;
- }
- #bablo{
- width: 210px;
- }
- .alarm{
- color: red;
- }
- .wrapperShowCase{
- width: 800px;
- height: 200px;
- background-color: #E0E0E0;
- margin-top: -390px;
- margin-bottom: 150px;
- display: flex;
- justify-content: space-between;
- }
- .showCaseBlock{
- width:200px;
- height: 200px;
- }
- .img{
- width:200px;
- height: 200px;
-
- }
|