From d172bbea2a1f2b7723a88d89d3c41ffc7009ce7b Mon Sep 17 00:00:00 2001 From: BuildTools Date: Thu, 29 Apr 2021 17:12:25 -0400 Subject: [PATCH] thumbnail tooltips --- index.html | 11 +++++++++++ js/main.js | 9 +++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b576142..beca869 100644 --- a/index.html +++ b/index.html @@ -15,6 +15,17 @@ html margin-left: auto; margin-right: auto; } +.thumb +{ + position: absolute; + display: inline-block; + visibility: hidden; + width: 100px; +} +td:hover .thumb +{ + visibility: visible; +}