style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. min-width: 800px;
  15. min-height: 1000px;
  16. position: relative;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. align-items: center;
  21. }
  22. .wrapper::after{
  23. content: "";
  24. position: absolute;
  25. background: url(auto.jpg);
  26. z-index: -1;
  27. width: 100%;
  28. height: 100%;
  29. opacity: 0.7;
  30. background-repeat: no-repeat no-repeat;
  31. background-position: center;
  32. }
  33. input{
  34. height: 25px;
  35. text-align: center;
  36. font-size: 20px;
  37. }
  38. select{
  39. height: 31px;
  40. font-size: 25px;
  41. }
  42. button{
  43. font-size: 20px;
  44. width: 100px;
  45. margin-left: 10px;
  46. height: 31px;
  47. }
  48. .cashbox{
  49. margin-top: 50px;
  50. background-color: blanchedalmond;
  51. }
  52. p{
  53. padding: 3px;
  54. font-size: 20px;
  55. background-color: honeydew;
  56. }
  57. .showcase{
  58. display: flex;
  59. }
  60. .wrapperBablo{
  61. display: flex;
  62. }
  63. #bablo{
  64. width: 210px;
  65. }
  66. .alarm{
  67. color: red;
  68. }