diff options
| author | Veikka Kähkönen <insiding@gmail.com> | 2017-11-30 00:55:12 +0200 |
|---|---|---|
| committer | Veikka Kähkönen <insiding@gmail.com> | 2017-11-30 00:55:12 +0200 |
| commit | 2cc4273ae746e68dee751471bcd0bf1c521850d0 (patch) | |
| tree | da8156d5ea7305b5ad50e89beab78418475d9988 /_sass/_info.scss | |
| parent | af0a31972792b9f8ee779ec5651a1d48ad8350ab (diff) | |
Add event list to index page
Diffstat (limited to '_sass/_info.scss')
| -rw-r--r-- | _sass/_info.scss | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/_sass/_info.scss b/_sass/_info.scss index 454fd51..84ef42e 100644 --- a/_sass/_info.scss +++ b/_sass/_info.scss @@ -1,3 +1,5 @@ +$info_item_separation: 0.9em; + .info_section { margin-bottom: 1.5em; } @@ -18,5 +20,30 @@ } .post_list__element { - margin-bottom: 0.4em; + margin-bottom: $info_item_separation; +} + +.post_list__excerpt { + margin-bottom: 0; +} + +.event_list { + list-style-type: none; + margin-left: 0; +} + +.event_list__row { + display: block; + width: 100%; +} + +.event_list .summary { + @extend h4; + @extend .event_list__row; + margin-bottom: 0; +} + +.event_list .description { + @extend .event_list__row; + margin-bottom: $info_item_separation; } |
