order.css 927 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .main-wrapper {
  2. max-width: 500px;
  3. margin: 20px auto;
  4. padding: 20px;
  5. background-color: white;
  6. border-radius: 5px;
  7. box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  8. }
  9. div {
  10. display: flex;
  11. justify-content: space-between;
  12. padding-top: 7.5px;
  13. }
  14. textarea,
  15. input[type="text"],
  16. input[type="tel"],
  17. input[type="range"],
  18. input[type="email"]{
  19. width: 323px;
  20. }
  21. h2 {
  22. text-align: center;
  23. margin-bottom: 20px;
  24. }
  25. .choices {
  26. width: 329px;
  27. justify-content: space-between;
  28. }
  29. .choice {
  30. vertical-align: middle;
  31. }
  32. .show_price {
  33. position: absolute;
  34. transform: translate(-50%, -100%);
  35. margin: 0;
  36. border-width: 1px;
  37. border-style: solid;
  38. border-color: black;
  39. border-radius: 5px;
  40. background: white;
  41. padding: 2.5px;
  42. }
  43. .price-wrapper {
  44. position: relative;
  45. }
  46. .price-wrapper > div {
  47. width: calc(100% - 16px);
  48. position: absolute;
  49. margin-left: 8px;
  50. }