diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-11-22 21:06:14 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-11-22 21:06:14 +0100 |
| commit | a57bdf1faa544a105c3d17f5ce345a4bb81bfe9d (patch) | |
| tree | 1f5d5dddda4327926a8689f2bd2fdfa2ec4ff1e2 /actualités.css | |
| parent | 2614b70552badbc7c23f09d750de8152b809c19d (diff) | |
| download | quatuorbellefeuille.com-a57bdf1faa544a105c3d17f5ce345a4bb81bfe9d.tar.xz | |
Make event details more robust
This is not going to cut it.
Diffstat (limited to 'actualités.css')
| -rw-r--r-- | actualités.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/actualités.css b/actualités.css index a5f686c..3cc5ff5 100644 --- a/actualités.css +++ b/actualités.css @@ -1,10 +1,14 @@ +main { + padding-left: 5%; +} + .events { display: grid; - width: 60vw; - grid-auto-rows: 14vw; + width: 58vw; + grid-auto-rows: 12vw; grid-template-columns: repeat(auto-fit, 14vw); grid-gap: 1em; - background-color: #ccc; + background-color: #dbb; } .event { @@ -58,4 +62,8 @@ position: fixed; top: 10em; left: 60vw; + max-width: 30%; + max-height: 50vh; + overflow: auto; + background-color: #d88; } |
