From c68b01cbb295251c7f48a8cf00fc87e70d2a919b Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:15:20 +0100 Subject: [PATCH] icon rows have equal widths and max height and now 10px border radius --- index.html | 4 +++- style.css | 15 ++++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index d605a45..8fa4d36 100644 --- a/index.html +++ b/index.html @@ -41,14 +41,16 @@ ├─Sandspiel
└─Sandboxels

- +
+ +

Minecraft 1.5.2

Minecraft 1.8.8 u27

webEPK


diff --git a/style.css b/style.css index 86359ee..7eb6502 100644 --- a/style.css +++ b/style.css @@ -117,17 +117,30 @@ h3 { } /* Bar styling */ +table { + table-layout: fixed; + width: 100%; +} + +td { + padding: 0px; +} + td p { text-align: center; + font-size: 15px; } td img{ + height: 100px; display: block; margin-left: auto; margin-right: auto; transform: scale(0.9, 0.9); - border-radius: 5px; + border-radius: 10px; transition: all 0.2s ease-in-out 100ms; + position: relative; } + td img:hover { transform: scale(1, 1); }