Как я могу добиться ввода флажок или переключатель, как это? - PullRequest
0 голосов
/ 16 апреля 2020

Я хочу добиться переключателя или флажка следующим образом:

enter image description here

это было на сайте здесь

в приведенной выше ссылке, если вы выбираете Cheese Pizza Add> Medium>, там вы можете найти нужные мне кнопки ввода.

Мой код:

<div class="boxes_area">
                <div class="main_content">
                    Extra Cheese
                </div>
                <div class="right_side">
                    <div class="right_half_icon_one">
                    </div>
                </div>
                <div class="left_side">
                    <div class="left_half_icon_one">
                    </div>
                </div>
                <div class="full_side">
                    <div class="full_circle">
                    </div>
                </div>
            </div>

С css i Достигнуто:

.right_side {
            border: 1px solid;
            border-radius: 50%;
            padding: 5px;
        }

        .modal .modal-header {
            border-bottom: 1px solid;
        }
        .modal .modal-footer {
            border-top: 1px solid;
        }
        .right_half_icon_one img {
            width: 35px;
        }
        .left_half_icon_one img {
            width: 35px;
        }
        .boxes_area {
            margin-top: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }
        .full_circle img {
            width: 35px;
        }
        .right_half_icon_one {
            width: 35px;
            height: 35px;
            background: #212a5e;
            border-radius: 100%;
            position: relative;
        }
        .right_half_icon_one::before{
            position: absolute;
            top: -1px;
            content: '';
            left: 18px;
            width: 18px;
            height: 37px;
            background: white;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }
        .left_side {
            border: 1px solid;
            padding: 5px;
            border-radius: 100%;
        }
        .left_half_icon_one {
            width: 35px;
            height: 35px;
            background: #212a5e;
            border-radius: 100%;
            position: relative;
        }
        .left_half_icon_one::before{
            position: absolute;
            top: -1px;
            content: '';
            right: 18px;
            width: 18px;
            height: 37px;
            background: white;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }
        .full_side {
            border: 1px solid;
            padding: 5px;
            border-radius: 100%;
        }
        .full_circle {
            width: 35px;
            height: 35px;
            background: #212a5e;
            border-radius: 50%;
        }

но я хочу тех, у кого есть элементы ввода и радио-поля.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...