diff options
| author | Fuwn <[email protected]> | 2023-11-19 04:09:19 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-19 04:09:19 +0000 |
| commit | 808bfa8361a74c71662f589674271f612b132ed7 (patch) | |
| tree | 30dc7e7213eaa806bc255880204b561708839c5a /src/app.css | |
| parent | Use encodeURIComponent to encode language for URI (diff) | |
| parent | feat(css): update sizing (diff) | |
| download | archived-frontend-next-808bfa8361a74c71662f589674271f612b132ed7.tar.xz archived-frontend-next-808bfa8361a74c71662f589674271f612b132ed7.zip | |
Merge branch 'main' into main
Diffstat (limited to 'src/app.css')
| -rw-r--r-- | src/app.css | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/src/app.css b/src/app.css index 62d6d2e..09ce467 100644 --- a/src/app.css +++ b/src/app.css @@ -26,23 +26,16 @@ html { overflow: scroll; overflow-x: hidden; } + body { - max-width: 58em; + max-width: 65.5%; } img { border-radius: 5px; } -.highlight-image img { - height: 20em; - transition: 0.25s; -} -.highlight-image img:hover { - height: 22.5em; - opacity: 0.75; -} -.highlight-image a:hover { +.highlighted-image a:hover { border-bottom: none; } @@ -58,15 +51,18 @@ img { #image-rack-item { display: inline; - padding: 10px; + padding: 0.75%; } + #image-rack-item a:hover { border-bottom: none; } + #image-rack-item img { width: 20%; transition: 0.25s; } + #image-rack-item img:hover { opacity: 0.75; width: 25%; |