/
miks1naa
/
testcode
Обзор
Документация
Войти
/
miks1naa
/
testcode
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/App.module.scss
96 строк
2 KB
miksina
test
14 мар 2024, 16:17
14 мар 2024, 16:17
40218e1
Код
Авторство
О чём код?
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap"); .wrapper { width: 100%; height: 100%; display: flex; flex-direction: row; font-family: "Roboto"; } .title { font-size: 25px; font-weight: 500; text-align: center; margin-bottom: 20px; margin-top: 20px; } .left { width: 100%; height: 100%; padding: 50px 50px; } .right { width: 100%; height: 100%; padding: 50px 50px; } .form { display: flex; flex-direction: row; gap: 15px; width: 100%; margin-bottom: 20px; input { width: 100%; border: 1px solid #000; padding: 5px; } button { width: 100%; font-size: 14px; padding: 5px; background: grey; border: 1px solid #000; } } table { border-collapse: collapse; width: 100%; input[type="checkbox"] { width: 16px; -webkit-appearance: none; -moz-appearance: none; appearance: none; height: 16px; background-color: inherit; border: 1px solid #000; cursor: pointer; &:checked { background-color: #000; } } thead { tr { th { padding-bottom: 10px; border: 1px solid #000; text-align: center; padding: 10px 10px; button { position: relative; background: inherit; .deleteQuantity { position: absolute; top: -8px; right: -8px; } } } } } tbody { td { border: 1px solid #000; text-align: center; padding: 10px 10px; button { background: inherit; } input[type="text"] { background: inherit; font-size: 100%; text-align: center; width: 100%; } } } }