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!
+
-
+
{% if success %}
{{ success }}
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 {
diff --git a/pyconbalkan/core/static/css/components/page.css b/pyconbalkan/core/static/css/components/page.css
index 827fbccb..90030d3e 100644
--- a/pyconbalkan/core/static/css/components/page.css
+++ b/pyconbalkan/core/static/css/components/page.css
@@ -8,9 +8,13 @@
@media (max-width: 1280px) {
.page__content {
- width: 50%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ width: calc(100% - 80px);
height: auto;
padding: 40px 0;
- margin: 0 auto;
+ margin-left: 40px;
+ margin-right: 40px;
}
}
diff --git a/pyconbalkan/core/static/css/components/title.css b/pyconbalkan/core/static/css/components/title.css
index d34fa612..76535029 100644
--- a/pyconbalkan/core/static/css/components/title.css
+++ b/pyconbalkan/core/static/css/components/title.css
@@ -6,7 +6,13 @@
.title {
font-size: 4rem;
font-weight: 900;
- margin-bottom: 40px;
+}
+
+@media (max-width: 767px) {
+
+ .title {
+ font-size: 3rem;
+ }
}
/* Modifiers */
@@ -38,10 +44,4 @@
.title--yellow {
color: #F3D66C;
-}
-
-@media (max-width: 1280px) {
- .title--yellow {
- margin: 0 0 20px 0;
- }
-}
+}
\ No newline at end of file
diff --git a/pyconbalkan/timetable/templates/timetable.html b/pyconbalkan/timetable/templates/timetable.html
index a2636a21..ec9c4e9a 100644
--- a/pyconbalkan/timetable/templates/timetable.html
+++ b/pyconbalkan/timetable/templates/timetable.html
@@ -4,13 +4,13 @@
{# Timetable #}
-
Timetable
-
+
Timetable
+
{% if rooms %}
{% for room in rooms %}
- - {{ room.name }}
+ - {{ room.name }}
{% endfor %}
{% endif %}
@@ -37,5 +37,5 @@
{% endif %}
-
+
{% endblock %}