From a6004febdc8e2d815741ff20bd2b56244d180637 Mon Sep 17 00:00:00 2001 From: stepanzh Date: Thu, 15 Feb 2024 16:56:00 +0300 Subject: [PATCH] feat: update styles of recipes page Closes #47 --- static/css/examples.css | 36 ++++++------------------------------ templates/examples.html | 39 ++++++++++++++++++++++----------------- 2 files changed, 28 insertions(+), 47 deletions(-) diff --git a/static/css/examples.css b/static/css/examples.css index a28c51b..92df317 100644 --- a/static/css/examples.css +++ b/static/css/examples.css @@ -1,34 +1,10 @@ -#examples -{ +.recipes-list { display: grid; - row-gap: 16px; + grid-template-columns: 1fr 1fr; + gap: 12px; + margin-top: 12px; } -section -{ - display: grid; - row-gap: 8px; -} - -section:last-child -{ - margin-bottom: 0; -} - -section * -{ - margin: 0; - padding: 0; -} - -#shell -{ - max-width: 600px; - margin: 16px auto; -} - -@media only screen and (max-width: 600px){ - #shell { - margin: 16px; - } +@media only screen and (max-width: 700px){ + .recipes-list { grid-template-columns: 1fr; } } \ No newline at end of file diff --git a/templates/examples.html b/templates/examples.html index c2705d4..88cf70c 100644 --- a/templates/examples.html +++ b/templates/examples.html @@ -7,26 +7,31 @@ {% block pagecss %}{% endblock %} {% block page_content %} -

Примеры рецептов {{ longdash }} Пропорцио

-

Выберите пример (рецепт) из списка, загрузите на компьютер или телефон и импортируйте в Пропорцио.

-
+
+

Примеры рецептов

+

Здесь идеи применения Пропорцио, которые пришли нам в голову.

+

Вы можете просмотреть рецепт и сохранить файл для импорта в Пропорцио.

+
+ +
{% for example in recipe_examples %} -
-

{{ example.title }}

- {% if not example.credits.is_empty %} -

- Источник: - {% if example.credits.author %} - {{ example.credits.author }}{% if example.credits.recipe_url %}, ссылка{% endif %}. - {% else %} - ссылка. - {% endif %} -

+
+

{{ example.title }}

+ {% if not example.credits.is_empty %} +

+ Источник: + {% if example.credits.author %} + {{ example.credits.author }}{% if example.credits.recipe_url %}, ссылка{% endif %}. + {% else %} + ссылка. {% endif %} -

{{ example.ingredients_as_string }}.

-
Скачать
-
+

+ {% endif %} +

{{ example.ingredients_as_string }}.

+
Скачать
+
{% endfor %}
+ {% endblock %}