diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-12-31 14:20:49 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-12-31 14:20:49 +0100 |
| commit | 02bbe5b0c85cab29cc072a68d191eb4d1e85e7d7 (patch) | |
| tree | aa51febe956159f0218ec09ec7fc57836acb0f2b | |
| parent | 55d6ead1b3cb89ae34dd0468c59f63970a06bcbd (diff) | |
| download | quatuorbellefeuille.com-02bbe5b0c85cab29cc072a68d191eb4d1e85e7d7.tar.xz | |
Allow <body> to overflow
| -rw-r--r-- | actualités.css | 1 | ||||
| -rw-r--r-- | commun.css | 3 | ||||
| -rw-r--r-- | gallerie.css | 1 | ||||
| -rw-r--r-- | programmes.css | 1 | ||||
| -rw-r--r-- | quatuor.css | 12 |
5 files changed, 6 insertions, 12 deletions
diff --git a/actualités.css b/actualités.css index b709a60..6fb468c 100644 --- a/actualités.css +++ b/actualités.css @@ -5,7 +5,6 @@ main { main > div { padding: 2%; - overflow: auto; } .events { @@ -1,5 +1,5 @@ body { - height: 100vh; + min-height: 100vh; display: grid; grid-template-columns: 7fr 1fr; grid-template-rows: auto 1fr auto; @@ -127,7 +127,6 @@ main { grid-row: 2; grid-column: 1; padding-left: 4%; - overflow: auto; } footer.social { diff --git a/gallerie.css b/gallerie.css index cdb0fae..f8f6369 100644 --- a/gallerie.css +++ b/gallerie.css @@ -1,5 +1,4 @@ main { - overflow: auto; padding-top: 2%; padding-bottom: 2%; padding-right: 2%; diff --git a/programmes.css b/programmes.css index ffd1317..9fc52d6 100644 --- a/programmes.css +++ b/programmes.css @@ -5,7 +5,6 @@ main { main > div { padding: 2%; - overflow: auto; } .programs { diff --git a/quatuor.css b/quatuor.css index 168caf5..f3d942e 100644 --- a/quatuor.css +++ b/quatuor.css @@ -13,13 +13,7 @@ main #photos { position: sticky; top: 0; - - /* ⚠ Keep this bigger than vertical displacement of lowest photo, - otherwise Firefox glitches: it shows a scrollbar for <main>, - yet refuses to scroll #photos; #bio scrolls into infinite - emptiness… */ - padding-top: 2em; - padding-bottom: 2em; + max-height: 80vh; } #photos > * { @@ -66,3 +60,7 @@ main #photos { #photos > *:nth-of-type(4) { top: 0.4em; } + +#bio > *:first-child { + margin-top: 0; +} |
