style.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. html{
  2. width: 100vw;
  3. height: 100vh;
  4. background-color: #E0E0E0;
  5. }
  6. body{
  7. width: 100%;
  8. height: 100%;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. }
  13. .wrapper{
  14. margin-top: 150px;
  15. min-width: 800px;
  16. min-height: 1000px;
  17. position: relative;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. .wrapper::after{
  24. content: "";
  25. position: absolute;
  26. background: url(auto.jpg);
  27. z-index: -1;
  28. width: 100%;
  29. height: 100%;
  30. opacity: 0.6;
  31. background-repeat: no-repeat no-repeat;
  32. background-position: center;
  33. }
  34. input{
  35. height: 25px;
  36. text-align: center;
  37. font-size: 20px;
  38. }
  39. select{
  40. height: 31px;
  41. font-size: 25px;
  42. }
  43. button{
  44. font-size: 20px;
  45. width: 100px;
  46. margin-left: 10px;
  47. height: 31px;
  48. }
  49. .cashbox{
  50. margin-top: 50px;
  51. background-color: blanchedalmond;
  52. }
  53. p{
  54. padding: 3px;
  55. font-size: 20px;
  56. background-color: honeydew;
  57. }
  58. p.info{
  59. padding: 0;
  60. margin: 0;
  61. }
  62. .showcase{
  63. display: flex;
  64. }
  65. .wrapperBablo{
  66. display: flex;
  67. }
  68. #bablo{
  69. width: 210px;
  70. }
  71. .alarm{
  72. color: red;
  73. }
  74. .wrapperShowCase{
  75. width: 800px;
  76. height: 200px;
  77. background-color: #E0E0E0;
  78. margin-top: -390px;
  79. margin-bottom: 150px;
  80. display: flex;
  81. justify-content: space-between;
  82. }
  83. .showCaseBlock{
  84. width:200px;
  85. height: 200px;
  86. }
  87. .img{
  88. width:200px;
  89. height: 200px;
  90. }