| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @media screen and (max-width: 400px){
- #app .card{
- padding: 5px;
- }
- .card-header{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- #app .input-group{
- border-bottom: 1px solid black;
- margin: 35px 0;
- max-width: 100%;
- }
- #app.dark .input-group{
- border-bottom: 1px solid white;
- }
- #app .title, #app .score{
- font-size: 14px;
- font-weight: 400;
- margin-left: 0;
- }
- #app h2{
- font-size: 22px;
- margin: 0;
- }
- #app h3{
- font-size: 16px;
- }
- #app legend{
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- color: black;
- border-top: 1px solid black;
- width: 100%;
- }
- #app fieldset *{
- width: 338px;
- }
- #app fieldset b{
- display: none;
- }
- #app.dark legend{
- border-top: 1px solid white;
- }
- #app.dark legend{
- color: white;
- }
- #app .cat-score{
- margin-left: 0;
- }
- .select-group .select-lg{
- width: 100%;
- }
- }
|