12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .main-wrapper {
- max-width: 500px;
- margin: 20px auto;
- padding: 20px;
- background-color: white;
- border-radius: 5px;
- box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
- }
- div {
- display: flex;
- justify-content: space-between;
- padding-top: 7.5px;
- }
- textarea,
- input[type="text"],
- input[type="tel"],
- input[type="range"],
- input[type="email"]{
- width: 323px;
- }
- h2 {
- text-align: center;
- margin-bottom: 20px;
- }
- .choices {
- width: 329px;
- justify-content: space-between;
- }
- .choice {
- vertical-align: middle;
- }
- .show_price {
- position: absolute;
- transform: translate(-50%, -100%);
- margin: 0;
- border-width: 1px;
- border-style: solid;
- border-color: black;
- border-radius: 5px;
- background: white;
- padding: 2.5px;
- }
- .price-wrapper {
- position: relative;
- }
- .price-wrapper > div {
- width: calc(100% - 16px);
- position: absolute;
- margin-left: 8px;
- }
|