style.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @media screen and (max-width: 400px){
  2. #app .card{
  3. padding: 5px;
  4. }
  5. .card-header{
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. }
  10. #app .input-group{
  11. border-bottom: 1px solid black;
  12. margin: 35px 0;
  13. max-width: 100%;
  14. }
  15. #app.dark .input-group{
  16. border-bottom: 1px solid white;
  17. }
  18. #app .title, #app .score{
  19. font-size: 14px;
  20. font-weight: 400;
  21. margin-left: 0;
  22. }
  23. #app h2{
  24. font-size: 22px;
  25. margin: 0;
  26. }
  27. #app h3{
  28. font-size: 16px;
  29. }
  30. #app legend{
  31. display: flex;
  32. flex-direction: column;
  33. align-items: flex-start;
  34. color: black;
  35. border-top: 1px solid black;
  36. width: 100%;
  37. }
  38. #app fieldset *{
  39. width: 338px;
  40. }
  41. #app fieldset b{
  42. display: none;
  43. }
  44. #app.dark legend{
  45. border-top: 1px solid white;
  46. }
  47. #app.dark legend{
  48. color: white;
  49. }
  50. #app .cat-score{
  51. margin-left: 0;
  52. }
  53. .select-group .select-lg{
  54. width: 100%;
  55. }
  56. }