diff --git a/wp-content/themes/cosmopet/modules/blog/assets/css/gp-style-tablet.css b/wp-content/themes/cosmopet/modules/blog/assets/css/gp-style-tablet.css index 5220caa..3372ef3 100644 --- a/wp-content/themes/cosmopet/modules/blog/assets/css/gp-style-tablet.css +++ b/wp-content/themes/cosmopet/modules/blog/assets/css/gp-style-tablet.css @@ -1 +1,13 @@ /* Стили для планшетов */ +@media (min-width:769px) and (max-width:1200px) { + .anons-best__card-wrap { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr))!important; + gap: 24px; + } + .anons-article__card-wrap { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr))!important; + gap: 40px 25px; + } +} \ No newline at end of file diff --git a/wp-content/themes/cosmopet/static/css/about-page.css b/wp-content/themes/cosmopet/static/css/about-page.css index f036250..fc094af 100644 --- a/wp-content/themes/cosmopet/static/css/about-page.css +++ b/wp-content/themes/cosmopet/static/css/about-page.css @@ -909,4 +909,20 @@ .advantage_item .description{ margin-top: 0; -} \ No newline at end of file +} + +@media (min-width:769px) and (max-width:1200px) { + .protein::before { + position: absolute; + content: ''; + width: 86%; + height: 132%; + left: 30px; + top: -7%; + background-image: url(../img/protein_ellipse.png); + background-size: contain; + background-repeat: no-repeat; + z-index: -1; + animation: rotateAnimation 10s infinite; + } +}