archiv flashcards - odkazy na zadní straně karet
This commit is contained in:
parent
90648aedae
commit
3e79ad6d54
3 changed files with 35 additions and 8 deletions
|
@ -558,7 +558,7 @@ div.seznam_orgu {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.org_pole {
|
div.org_pole, div.rocnik_pole {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 30%;
|
width: 30%;
|
||||||
min-width: 300px;
|
min-width: 300px;
|
||||||
|
@ -576,16 +576,19 @@ div.org_email {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*otáčecí karty organizátorů*/
|
/*otáčecí karty (orgové, archiv) */
|
||||||
|
|
||||||
.flip-card {
|
.flip-card {
|
||||||
width: 200px;
|
|
||||||
height: 250px;
|
|
||||||
perspective: 1000px; /* Remove this if you don't want the 3D effect */
|
perspective: 1000px; /* Remove this if you don't want the 3D effect */
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#organizatori.flip-card {
|
||||||
|
width: 200px;
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
#archiv.flip-card {
|
#archiv.flip-card {
|
||||||
width: 210px;
|
width: 210px;
|
||||||
height: 298px;
|
height: 298px;
|
||||||
|
@ -637,6 +640,23 @@ div.flip-card-foto img {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* karty archiv */
|
||||||
|
|
||||||
|
div.popis_rocniku {
|
||||||
|
text-align: left;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div.popis_rocniku a{
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.popis_rocniku a:hover{
|
||||||
|
color: #6f2509;
|
||||||
|
}
|
||||||
|
|
||||||
/* graf na úvodní stránce */
|
/* graf na úvodní stránce */
|
||||||
|
|
||||||
a span.popup {
|
a span.popup {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
{% for rocnik, url_png in object_list.items %}
|
{% for rocnik, url_png in object_list.items %}
|
||||||
|
|
||||||
<div class="org_pole">
|
<div class="rocnik_pole">
|
||||||
|
|
||||||
<h3>
|
<h3>
|
||||||
<a href='{{ rocnik.verejne_url }}'>Ročník {{ rocnik }}</a>
|
<a href='{{ rocnik.verejne_url }}'>Ročník {{ rocnik }}</a>
|
||||||
|
@ -34,9 +34,16 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flip-card-back">
|
<div class="flip-card-back">
|
||||||
|
|
||||||
<div class="popis_rocniku">
|
<div class="popis_rocniku">
|
||||||
|
Jednotlivá čísla:
|
||||||
|
<ul>
|
||||||
|
{% for cislo in rocnik.cisla.all reversed %}
|
||||||
|
<li><a href='{{ cislo.verejne_url }}'>{{ cislo.poradi }}. číslo</a> {% if cislo.pdf %}(<a href='{{ cislo.pdf }}'>pdf</a>) {% endif %} <!-- FIXME: cislo.pdf-->
|
||||||
|
{% empty %}
|
||||||
|
---
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
<a href='{{ rocnik.verejne_url }}'>Výsledková listina</a> <!-- FIXME: url výsledkovky-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
{# karta organizátora - zepředu fotka, zezadu popis, u neaktivních data kdy organizovali #}
|
{# karta organizátora - zepředu fotka, zezadu popis, u neaktivních data kdy organizovali #}
|
||||||
|
|
||||||
<div class="flip-card">
|
<div class="flip-card" id="organizatori">
|
||||||
|
|
||||||
<div class="flip-card-inner">
|
<div class="flip-card-inner">
|
||||||
<div class="flip-card-front">
|
<div class="flip-card-front">
|
||||||
|
|
Loading…
Reference in a new issue