Skip to content
4 changes: 2 additions & 2 deletions pyconbalkan/cfp/templates/cfp.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

{# Call For Proposals #}

<h1 class="title title--yellow mb-xs-20">Call For Proposals!</h1>
<hr class="line line--blue line--short line--spaced">
<h1 class="title title--yellow">Call For Proposals!</h1>
<hr class="line line--blue line--short line--spaced">

<form class="form" action="{% url 'cfp' %}" method="POST" enctype="multipart/form-data" novalidate>
<div class="form-group">
Expand Down
2 changes: 1 addition & 1 deletion pyconbalkan/conference/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2 class="card__name title--blue">
{% endfor %}
</div>
{% else %}
<h2 class="title title--white title--medium title--uppercase mt-xs-20">
<h2 class="title title--white title--medium title--uppercase mb-xs-20">
<span class="featured-letter featured-letter--blue">C</span>oming <span class="featured-letter featured-letter--yellow">S</span>oon
</h2>
{% endif %}
Expand Down
6 changes: 3 additions & 3 deletions pyconbalkan/contact/templates/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

{# Contact #}

<h1 class="title title--yellow mb-xs-40">Contact Us!</h1>
<hr class="line line--blue line--short line--spaced">
<h1 class="title title--yellow">Contact Us!</h1>
<hr class="line line--blue line--short line--spaced">

<form class="form" action="{% url 'contact' %}" method="POST" enctype="multipart/form-data" novalidate>
<div class="form-group">
Expand All @@ -14,7 +14,7 @@ <h1 class="title title--yellow mb-xs-40">Contact Us!</h1>
<input class="button button--blue button--push button--fullwidth " type="submit" value="Submit" />
</div>
</form>

{% if success %}
<div class="success-message">
{{ success }}
Expand Down
17 changes: 16 additions & 1 deletion pyconbalkan/core/static/css/components/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
8 changes: 6 additions & 2 deletions pyconbalkan/core/static/css/components/page.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
16 changes: 8 additions & 8 deletions pyconbalkan/core/static/css/components/title.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@
.title {
font-size: 4rem;
font-weight: 900;
margin-bottom: 40px;
}

@media (max-width: 767px) {

.title {
font-size: 3rem;
}
}

/* Modifiers */
Expand Down Expand Up @@ -38,10 +44,4 @@

.title--yellow {
color: #F3D66C;
}

@media (max-width: 1280px) {
.title--yellow {
margin: 0 0 20px 0;
}
}
}
8 changes: 4 additions & 4 deletions pyconbalkan/timetable/templates/timetable.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

{# Timetable #}

<h1 class="title title--yellow mb-xs-40">Timetable</h1>
<hr class="line line--blue line--short line--spaced">
<h1 class="title title--yellow">Timetable</h1>
<hr class="line line--blue line--short line--spaced">
<div class="rooms">
{% if rooms %}
<ul>
{% for room in rooms %}
<li class="button button--blue">{{ room.name }}</li>
<li class="button button--blue mb-xs-20">{{ room.name }}</li>
{% endfor %}
</ul>
{% endif %}
Expand All @@ -37,5 +37,5 @@ <h2 class="title title--white title--medium title--uppercase mt-xs-20">
</h2>
{% endif %}
</div>

{% endblock %}