From fa4ec3fa53a5c85cb1cf20a99338c7acebe5a9d3 Mon Sep 17 00:00:00 2001 From: maksim Date: Tue, 1 Jul 2025 18:27:12 +0300 Subject: [PATCH] =?UTF-8?q?Task:6935=20|=20=D0=9F=D1=80=D0=B0=D0=B2=D0=BA?= =?UTF-8?q?=D0=B8=20=D0=BF=D0=BB=D0=B0=D0=BD=D1=88=D0=B5=D1=82=D0=BD=D1=8B?= =?UTF-8?q?=D1=85=20=D1=81=D1=82=D0=B8=D0=BB=D0=B5=D0=B9=20=D0=B2=20=D0=B1?= =?UTF-8?q?=D0=BB=D0=BE=D0=B3=D0=B5=20=D0=B8=20=D0=BE=20=D0=BD=D0=B0=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../blog/assets/css/gp-style-tablet.css | 12 ++++++++++++ .../themes/cosmopet/static/css/about-page.css | 18 +++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) 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; + } +}