Velká revize stylů (a některých JS) #44

Merged
zelvuska merged 50 commits from static-files-upgrade into master 2024-10-22 20:00:12 +02:00
2 changed files with 33 additions and 29 deletions
Showing only changes of commit 10c252cd16 - Show all commits

View file

@ -200,6 +200,21 @@ p.license-mobile {
display: none; display: none;
margin-bottom: 0px; margin-bottom: 0px;
} }
@media (max-width: 650px) {
#footer {
display: none;
}
p.license-mobile {
position: relative;
display: block;
font-size: 90%;
background-color: var(--hlavni-oranzova);
padding: 5%;
text-align: justify;
}
}
/****************/ /****************/
@ -508,15 +523,6 @@ div.zadani_termin .datum {
margin-top: 8px; /* mezera mezi hlavním menu a submenu */ margin-top: 8px; /* mezera mezi hlavním menu a submenu */
} }
a.ref-org-foto {
pointer-events: none;
}
table#reseni.form td, table#reseni.form tr {
display: inline-grid;
max-width: 300px;
}
/* titulni stranka */ /* titulni stranka */
.titulnistrana { .titulnistrana {
@ -670,26 +676,6 @@ div.zadani_termin .datum {
display: block; display: block;
} }
/*patička mobil*/
#footer {
display: none;
}
p.license-mobile {
position: relative;
display: block;
font-size: 90%;
background-color: var(--hlavni-oranzova);
padding: 5%;
text-align: justify;
}
table.form td, table.form tr {
display: inherit;
}
/* titulni stranka */ /* titulni stranka */
.titulnistrana { .titulnistrana {

View file

@ -120,6 +120,10 @@ div.flip-card-foto, div.flip-card-foto img {
background-color: white; background-color: white;
} }
@media(max-width: 800px) {
a.ref-org-foto { pointer-events: none; }
}
/* karty archiv */ /* karty archiv */
div.popis_rocniku { div.popis_rocniku {
@ -331,6 +335,20 @@ table#reseni.form td, table#reseni.form tr {
display: inline-table; display: inline-table;
} }
@media (max-width: 650px) {
table.form td, table.form tr {
display: inherit;
}
}
@media(max-width: 800px) {
table#reseni.form td, table#reseni.form tr {
display: inline-grid;
max-width: 300px;
}
}
.field-with-comment{ .field-with-comment{
position:relative; position:relative;
} }