From 75e3f0c0e48cb153da88e206015bda909595e92e Mon Sep 17 00:00:00 2001 From: halitguvenilir Date: Mon, 25 Jun 2018 22:33:33 +0300 Subject: [PATCH 01/10] Button mobile problem fixed --- .../core/static/css/components/button.css | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pyconbalkan/core/static/css/components/button.css b/pyconbalkan/core/static/css/components/button.css index 0a82b09f..2789e6a3 100644 --- a/pyconbalkan/core/static/css/components/button.css +++ b/pyconbalkan/core/static/css/components/button.css @@ -13,7 +13,22 @@ background-color: transparent; color: white; text-decoration: none; - cursor: pointer; + cursor: pointer; + text-align: center; +} + +@media (max-width: 1280px) { + .button { + width: auto; + } +} + +@media (max-width: 767px) { + + .button { + width: 100%; + padding: 0 20px; + } } .button:hover { From 193f06da2f3734dd480486aee41c99cd1ebabb60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:48:40 +0300 Subject: [PATCH 02/10] Page content class mobile problem fixed --- pyconbalkan/core/static/css/components/page.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyconbalkan/core/static/css/components/page.css b/pyconbalkan/core/static/css/components/page.css index 827fbccb..6b1d52df 100644 --- a/pyconbalkan/core/static/css/components/page.css +++ b/pyconbalkan/core/static/css/components/page.css @@ -8,9 +8,12 @@ @media (max-width: 1280px) { .page__content { - width: 50%; + display: flex; + flex-direction: column; + width: calc(100% - 80px); height: auto; padding: 40px 0; - margin: 0 auto; + margin-left: 40px; + margin-right: 40px; } } From 569a40f522545fb538e0d81ca75e2d28b95173da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:52:41 +0300 Subject: [PATCH 03/10] Page content class mobile center problem fixed --- pyconbalkan/core/static/css/components/page.css | 1 + 1 file changed, 1 insertion(+) diff --git a/pyconbalkan/core/static/css/components/page.css b/pyconbalkan/core/static/css/components/page.css index 6b1d52df..90030d3e 100644 --- a/pyconbalkan/core/static/css/components/page.css +++ b/pyconbalkan/core/static/css/components/page.css @@ -10,6 +10,7 @@ .page__content { display: flex; flex-direction: column; + align-items: center; width: calc(100% - 80px); height: auto; padding: 40px 0; From f6603c4c76d294838085411a0fa7938864b9d117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:53:15 +0300 Subject: [PATCH 04/10] Title margin and margin bottom problem fixed --- pyconbalkan/core/static/css/components/title.css | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/pyconbalkan/core/static/css/components/title.css b/pyconbalkan/core/static/css/components/title.css index d34fa612..6e5cc675 100644 --- a/pyconbalkan/core/static/css/components/title.css +++ b/pyconbalkan/core/static/css/components/title.css @@ -6,7 +6,6 @@ .title { font-size: 4rem; font-weight: 900; - margin-bottom: 40px; } /* Modifiers */ @@ -38,10 +37,4 @@ .title--yellow { color: #F3D66C; -} - -@media (max-width: 1280px) { - .title--yellow { - margin: 0 0 20px 0; - } -} +} \ No newline at end of file From 9a02cb11559bc53d44a277d8afe481d9acbf465b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:53:42 +0300 Subject: [PATCH 05/10] Bottom spacing problem fixed --- pyconbalkan/timetable/templates/timetable.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyconbalkan/timetable/templates/timetable.html b/pyconbalkan/timetable/templates/timetable.html index a2636a21..ffdf4a51 100644 --- a/pyconbalkan/timetable/templates/timetable.html +++ b/pyconbalkan/timetable/templates/timetable.html @@ -4,8 +4,8 @@ {# Timetable #} -

Timetable

-
+

Timetable

+
{% if rooms %}
    @@ -37,5 +37,5 @@

    {% endif %}
- + {% endblock %} From ba30110e3a069e8bf60cbd3feeb1795c1fc7934f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:55:44 +0300 Subject: [PATCH 06/10] Mobile title font size problem fixed --- pyconbalkan/core/static/css/components/title.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyconbalkan/core/static/css/components/title.css b/pyconbalkan/core/static/css/components/title.css index 6e5cc675..76535029 100644 --- a/pyconbalkan/core/static/css/components/title.css +++ b/pyconbalkan/core/static/css/components/title.css @@ -8,6 +8,13 @@ font-weight: 900; } +@media (max-width: 767px) { + + .title { + font-size: 3rem; + } +} + /* Modifiers */ .title--bigmargintop { From 164a6d4d35f271b47e5e137c61c3ea3fdbcff96d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:56:09 +0300 Subject: [PATCH 07/10] Timetable buttom bottom spacing problem fixed --- pyconbalkan/timetable/templates/timetable.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyconbalkan/timetable/templates/timetable.html b/pyconbalkan/timetable/templates/timetable.html index ffdf4a51..ec9c4e9a 100644 --- a/pyconbalkan/timetable/templates/timetable.html +++ b/pyconbalkan/timetable/templates/timetable.html @@ -10,7 +10,7 @@

Timetable

{% if rooms %}
    {% for room in rooms %} -
  • {{ room.name }}
  • +
  • {{ room.name }}
  • {% endfor %}
{% endif %} From 0ec6656c080a5770544605ebda97c5dd133bd7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 22:58:06 +0300 Subject: [PATCH 08/10] Comingsoon write bottom spacing problem fixed --- pyconbalkan/conference/templates/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyconbalkan/conference/templates/home.html b/pyconbalkan/conference/templates/home.html index 4b57e5cb..67b70865 100644 --- a/pyconbalkan/conference/templates/home.html +++ b/pyconbalkan/conference/templates/home.html @@ -59,7 +59,7 @@

{% endfor %} {% else %} -

+

Coming Soon

{% endif %} From fe973f824dd12bc04517ec4a32e92d3d850c8b38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 23:07:02 +0300 Subject: [PATCH 09/10] Contact page title bottom spacing problem fixed --- pyconbalkan/contact/templates/contact.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyconbalkan/contact/templates/contact.html b/pyconbalkan/contact/templates/contact.html index 2afee2bd..502f1289 100644 --- a/pyconbalkan/contact/templates/contact.html +++ b/pyconbalkan/contact/templates/contact.html @@ -4,8 +4,8 @@ {# Contact #} -

Contact Us!

-
+

Contact Us!

+
@@ -14,7 +14,7 @@

Contact Us!

- + {% if success %}
{{ success }} From 07ba292b7801d98c9cf0ddf48ed4e42f3951fb28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halit=20Gu=CC=88venilir?= Date: Mon, 25 Jun 2018 23:07:48 +0300 Subject: [PATCH 10/10] CFP page title bottom spacing problem fixed --- pyconbalkan/cfp/templates/cfp.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyconbalkan/cfp/templates/cfp.html b/pyconbalkan/cfp/templates/cfp.html index a161fc2c..5993815f 100644 --- a/pyconbalkan/cfp/templates/cfp.html +++ b/pyconbalkan/cfp/templates/cfp.html @@ -4,8 +4,8 @@ {# Call For Proposals #} -

Call For Proposals!

-
+

Call For Proposals!

+