diff --git a/index.css b/index.css index 1482443..b74040e 100644 --- a/index.css +++ b/index.css @@ -145,6 +145,7 @@ body { background-color: #2b2f35; padding: 5px; margin-bottom: 20px; + cursor: pointer; } .page .file-list .item-list .entry .thumbnail { width: 200px; @@ -175,6 +176,9 @@ body { color: white; margin-left: auto; } +.page .file-list .item-list .entry:hover { + scale: 1.05; +} dialog { background-color: #2b2f35; diff --git a/index.html b/index.html index 13ae421..318cc4d 100644 --- a/index.html +++ b/index.html @@ -56,6 +56,7 @@

Select your inventory .JSON file

+ Disclaimer: All values are estimates. Inventory browser created by Armored Dragon
diff --git a/index.scss b/index.scss index 4b93549..1856ff0 100644 --- a/index.scss +++ b/index.scss @@ -173,6 +173,7 @@ body { background-color: $n-secondary; padding: 5px; margin-bottom: 20px; + cursor: pointer; .thumbnail { width: 200px; @@ -209,6 +210,10 @@ body { } } } + + .entry:hover { + scale: 1.05; + } } } }