diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-04 20:55:30 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-05-04 20:55:30 +0200 |
commit | 4678c2c72c0ab0814d6f1f3b5289d89f83b6f154 (patch) | |
tree | cb7eac02269a293fed9db2b856ceb8513fa043cc | |
parent | 31c399a8495a37a88d9b60d0438b589f273d8138 (diff) |
css: actually use boxheight and imgheight
-rw-r--r-- | share/css/main.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/css/main.css b/share/css/main.css index ca5e293..d3795ee 100644 --- a/share/css/main.css +++ b/share/css/main.css @@ -10,8 +10,8 @@ div.image-container { text-align: center; font-size: 80%; float: left; - width: 275.0px; - height: 275.0px; + width: /* $boxwidth */; + height: /* $boxheight */; } div.image-container a { @@ -19,8 +19,8 @@ div.image-container a { } div.image-container img { - max-width: 250px; - max-height: 250px; + max-width: /* $imgwidth */; + max-height: /* $imgheight */; } div.image-page { |