Page 268 - MDP2022-3
P. 268

}
                   @media all  and (max-width:  768px){
                         position:  absolute;
                         height: 85%;
                         align-self:  flex-end;
                         justify-content:flex-start;
                         img{
                                width: 90%;
                         }
                         h2{
                                margin-top: 5%;
                         }
                   }
            `;
            const  QuestionWrap  =  styled.div`
                   width:  fit-content;
                   text-align:  center;
                   display:  flex;
                   flex-direction: column;
                   align-items:  center;
                   @media all  and (min-width:  769px){
                         &{
                                position: fixed;
                                top:  57%;
                         }
                   }
                   @media all  and (max-width:  768px){
                         margin-top:  5%;
                   }
            `;
            const  QuestionUnit  =  styled.div`
                   border-radius:  10px  10px 10px  10px;
                   float:  left;
                   width:  20vw;
                   margin:  5px;
                   border: 2px  solid  green;
                   cursor:  url('../../../public/img/cursor_click.png') 0  2,  auto;
                   font-size:  20px;
                   background-color:  beige;


                   input[type='radio']{
                         display: none;
                   }
                   p:hover{
                         background-color: burlywood;
   263   264   265   266   267   268   269   270   271   272   273