diff options
| author | marcellus <msimon_fr@hotmail.com> | 2024-06-11 00:11:19 +0200 |
|---|---|---|
| committer | marcellus <msimon_fr@hotmail.com> | 2024-06-11 00:11:19 +0200 |
| commit | ef46352e68c56bc3b714674073dadd6fc59a1559 (patch) | |
| tree | 107ab0a2ad079b548a4062653fbaef1a255e4c57 /style.css | |
| parent | 966a0e5ded35251ed592cd0b8fbbb172de85a9ce (diff) | |
fix: working clickable
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -117,10 +117,11 @@ div.zikos:nth-child(even) .desc{ margin-bottom: auto; } -.date{ + +.date-cont{ display: flex; - flex-direction: row; - justify-content: space-between; + flex-direction: column; + /*justify-content: space-between;*/ padding-left: 10px; padding-right: 10px; margin-bottom: 10px; @@ -131,6 +132,12 @@ div.zikos:nth-child(even) .desc{ color: white; } +.date{ + display: flex; + flex-direction: row; + justify-content: space-between; +} + .date hr{ transform: rotate(90deg); width: 2em; @@ -144,6 +151,17 @@ div.zikos:nth-child(even) .desc{ align-items: center; } +.date-cont img{ + display: none; + max-height: 50vh; + margin: auto; + margin-bottom: 20px; +} + +.date-cont.toggle img{ + display: block; +} + .date-desc { text-align: left; } |
