diff options
| author | Elias Haugsbakk <[email protected]> | 2026-07-06 21:12:40 +0200 |
|---|---|---|
| committer | Elias Haugsbakk <[email protected]> | 2026-07-06 21:12:40 +0200 |
| commit | 463c202d80f57efb8e46bab4ee4ad7038444b25d (patch) | |
| tree | 1b1675a02f57ad720a0ffbab5e99d80e2763d8f4 /clams-server/src/main/resources/public/css/home.css | |
| parent | 05f77926b147fe3a849eb1dbeeed2afcf97ad866 (diff) | |
implement post searching
Diffstat (limited to 'clams-server/src/main/resources/public/css/home.css')
| -rw-r--r-- | clams-server/src/main/resources/public/css/home.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/clams-server/src/main/resources/public/css/home.css b/clams-server/src/main/resources/public/css/home.css index 2cf0bd8..742ed38 100644 --- a/clams-server/src/main/resources/public/css/home.css +++ b/clams-server/src/main/resources/public/css/home.css @@ -1,3 +1,13 @@ +.content-grid { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 60px; + margin-top: 30px; +} + +.left-column { text-align: right; } +.right-column { text-align: left; } + .profile-img { border: 3px solid var(--text-color); border-radius: 20px; @@ -16,7 +26,13 @@ word-wrap: break-word; } -@media (max-width: 600px) { +@media (max-width: 768px) { + .content-grid { + grid-template-columns: 1fr; + gap: 40px; + } + .left-column, .right-column { text-align: center; } + .profile-img { margin: 0 auto 20px auto; } |
