reponsive.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. @media screen and (max-width: 935px) {
  2. .container {
  3. padding-left: 3%;
  4. padding-right: 3%;
  5. }
  6. .decoration {
  7. display: none;
  8. }
  9. }
  10. @media screen and (max-width: 840px) {
  11. header {
  12. height: 420px;
  13. }
  14. header .logo {
  15. transform: scale(0.7);
  16. margin: 0;
  17. }
  18. header .container {
  19. padding: 0 3%;
  20. max-width: 100%;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. header .profile {
  27. font-size: 14px;
  28. margin-top: 0;
  29. }
  30. header .profile .profile__info {
  31. display: block;
  32. text-align: center;
  33. }
  34. header .profile .profile__info .profile__username {
  35. margin-right: 0;
  36. margin-bottom: 17px;
  37. }
  38. header .profile__stats, header .profile__date-select {
  39. display: flex;
  40. justify-content: space-between;
  41. width: 90%;
  42. margin: 0 auto;
  43. margin-top: 20px;
  44. }
  45. header .profile__date-select {
  46. display: block;
  47. }
  48. header .profile__date-select .profile__date-select__input {
  49. margin: 7px 0;
  50. width: 100%;
  51. display: block;
  52. }
  53. header .profile__date-select .profile__date-select__input input {
  54. margin-left: 0;
  55. width: 100%;
  56. }
  57. header .profile .profile__stats > p {
  58. margin-right: 0;
  59. }
  60. main {
  61. margin-top: 420px;
  62. font-size: 12px;
  63. }
  64. }
  65. @media screen and (max-width: 630px) {
  66. .material-icons {
  67. font-size: 17px!important;
  68. }
  69. .content.display_grid .container {
  70. width: auto;
  71. justify-content: center;
  72. }
  73. .content.display_list .content__item {
  74. height: auto;
  75. }
  76. .content.display_list .content__item-img {
  77. display: inline-block;
  78. min-width: 120px;
  79. min-height: 120px;
  80. margin-right: 20px;
  81. }
  82. .content.display_list .content__item-info {
  83. display: inline-block;
  84. }
  85. .content.display_list .content__item-info__data {
  86. width: 100%;
  87. margin: 0;
  88. }
  89. .content.display_list .content__item-info .content__item-info__data p {
  90. font-size: 12px;
  91. }
  92. .content.display_list .content__item-info .content__item-info__data p:first-child {
  93. margin: 3px 0 5px 0;
  94. font-size: 12px;
  95. }
  96. }