12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- :root {
- block-size: border-box;
- font-size: 16px;
- line-height: 20px;
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
- }
- button {
- width: 100%;
- font-size: 2em;
- }
- input,
- button,
- select {
- width: 100%;
- font-size: 2em;
- }
- table {
- border: 1px;
- border-collapse: collapse;
- }
- td,
- th {
- border: 1px solid black;
- padding: 2px 5px;
- }
- .container {
- max-width: 1200px;
- padding: 0 10px;
- margin: 0 auto;
- }
- .products {
- margin-top: 10px;
- display: flex;
- justify-content: center;
- font-size: 20px;
- }
- .wrapper {
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- }
|