responsive fixes
This commit is contained in:
parent
82d400ffcd
commit
e3992f00a6
@ -3,14 +3,16 @@
|
|||||||
|
|
||||||
<li class="textbox margin-16-bottom">
|
<li class="textbox margin-16-bottom">
|
||||||
<a href="/rf2020/events/{{ event.ref }}.html">{{ event.title_ }}</a>
|
<a href="/rf2020/events/{{ event.ref }}.html">{{ event.title_ }}</a>
|
||||||
<span>→</span>
|
<span class="hide-mobile">
|
||||||
{% for eventParticipantId in event.participants %}
|
<span>→</span>
|
||||||
{% for participant in site.data.rf2020.participants %}
|
{% for eventParticipantId in event.participants %}
|
||||||
{% if participant.id == eventParticipantId %}
|
{% for participant in site.data.rf2020.participants %}
|
||||||
<a href="/rf2020/participants/{{ participant.ref }}.html">{{ participant.fullname }}</a>
|
{% if participant.id == eventParticipantId %}
|
||||||
{% endif %}
|
<a href="/rf2020/participants/{{ participant.ref }}.html">{{ participant.fullname }}</a>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
</span>
|
||||||
|
|
||||||
{% if event.format %}
|
{% if event.format %}
|
||||||
<span>[{{ event.format }}]</span>
|
<span>[{{ event.format }}]</span>
|
||||||
|
@ -31,7 +31,7 @@ lang: en
|
|||||||
{{ page.description | markdownify }}
|
{{ page.description | markdownify }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-row flex-justify-space-between">
|
<div class="flex flex-row flex-justify-space-between flex-wrap-m details">
|
||||||
<div class="post-content inline-block">
|
<div class="post-content inline-block">
|
||||||
<h3>
|
<h3>
|
||||||
In this {{ page.format }}:
|
In this {{ page.format }}:
|
||||||
@ -39,9 +39,7 @@ lang: en
|
|||||||
{% for id in page.participants %}
|
{% for id in page.participants %}
|
||||||
{% for participant in site.data.rf2020.participants %}
|
{% for participant in site.data.rf2020.participants %}
|
||||||
{% if participant.id == id %}
|
{% if participant.id == id %}
|
||||||
|
<a class="block with-url-arrow" href="/rf2020/participants/{{ participant.ref }}.html">{{ participant.fullname }}</a>
|
||||||
<a class="block with-url-arrow" href="/rf2020/participants/{{ participant.ref }}.html">{{ participant.fullname }}</a>
|
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -21,5 +21,11 @@
|
|||||||
h3 {
|
h3 {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.details {
|
||||||
|
div::last-of-type {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
li {
|
li {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: $size-64;
|
margin-right: $size-64;
|
||||||
|
|
||||||
|
@include touch {
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
|
@ -29,4 +29,14 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.flex-wrap {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.flex-wrap-m {
|
||||||
|
@include touch {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -56,3 +56,9 @@
|
|||||||
@content;
|
@content;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hide-mobile {
|
||||||
|
@include touch {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user