diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-02-04 00:09:03 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-02-04 00:12:44 -0500 |
| commit | 27153476429c4a85630dedcf940a50089ea02151 (patch) | |
| tree | 0ff21d13a79c5b73dad90caa9bbfe161cd132b07 /src/styles | |
| parent | 4c84e203859be34da582f51371adc6eeb370b518 (diff) | |
| download | personal-website-27153476429c4a85630dedcf940a50089ea02151.tar.gz personal-website-27153476429c4a85630dedcf940a50089ea02151.tar.bz2 personal-website-27153476429c4a85630dedcf940a50089ea02151.zip | |
Made card more consistent; Guestbook submits; Web analytics
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/cards.css | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/styles/cards.css b/src/styles/cards.css index 192335d..67a618c 100644 --- a/src/styles/cards.css +++ b/src/styles/cards.css @@ -1,9 +1,18 @@ -h1 { +.card h1 { margin-top: 2px; margin-bottom: 2px; } -article { +.card h2 { + margin-top: 2px; +} + +.card p { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.card { background-color: #3B513B; padding: 1.2em; border-radius: 20px; @@ -11,7 +20,7 @@ article { margin: 0.5em; } -main { +.grid { display: grid; grid-template-columns: repeat(2, 1fr); } |
