diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-10-21 22:19:07 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2020-10-21 23:19:11 +0200 |
| commit | faecfa554e8ac349706b97e5a438052832157c51 (patch) | |
| tree | dc1e4340664be915e6854c4e71546f9ca791bf6f /événements.css | |
| parent | 71c87cac822918c823f4e1ee06ad252ceef6bc28 (diff) | |
| download | quatuorbellefeuille.com-faecfa554e8ac349706b97e5a438052832157c51.tar.xz | |
add event grid
Diffstat (limited to 'événements.css')
| -rw-r--r-- | événements.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/événements.css b/événements.css new file mode 100644 index 0000000..e76a531 --- /dev/null +++ b/événements.css @@ -0,0 +1,17 @@ +.events { + display: grid; + width: 60%; + grid-auto-rows: 14vw; + grid-template-columns: repeat(auto-fit, 14vw); + grid-gap: 1em; + margin-left: auto; + margin-right: 0; + background-color: #ccc; +} + +.event { + display: flex; + align-items: center; + justify-content: center; + background-color: #fff; +} |
