diff options
author | Matthew Lemon <y@yulqen.org> | 2024-03-23 12:40:40 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-03-23 12:40:40 +0000 |
commit | ec2db2223ba0663259593788ba9de8ad8e238702 (patch) | |
tree | 35bbbff21fc8fa3491d19199f850ef62a0c14ed3 /style.css | |
parent | 5539d3d0b3e919c1c1806317edbd6b17c6f3735b (diff) |
wip: reviews section
Diffstat (limited to '')
-rw-r--r-- | style.css | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -273,6 +273,30 @@ header { color: #657c76; } +.reviews_grid { + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 20px; + margin: 22px 10px 10px 0px; +} + +.reviews_img { + box-shadow: 2px 2px 2px lightgray; + border-radius: 5px; + margin-right: 20px; + max-width: 600px; + height: auto; +} + +.reviews_grid > div > q { + font-size: 1.2rem; + color: darkgray; + padding-right: 30px; + padding-top: 20px; + padding-bottom:100px + text-align: end; +} + .footer { margin-left: auto; margin-right: auto; |