summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-05-04 20:55:30 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2024-05-04 20:55:30 +0200
commit4678c2c72c0ab0814d6f1f3b5289d89f83b6f154 (patch)
treecb7eac02269a293fed9db2b856ceb8513fa043cc
parent31c399a8495a37a88d9b60d0438b589f273d8138 (diff)
css: actually use boxheight and imgheight
-rw-r--r--share/css/main.css8
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 {