From 516263ea51350514571deafc70b14f9f19d760d8 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 9 Jul 2024 15:11:26 -0400 Subject: initial commit --- library.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 library.css (limited to 'library.css') diff --git a/library.css b/library.css new file mode 100644 index 0000000..c3b23f3 --- /dev/null +++ b/library.css @@ -0,0 +1,29 @@ +/* + * File: library.css + * Author: bgstack15 + * Startdate: 2024-07-06-7 15:44 + * SPDX-License-Identifier: GPL-3.0-only + * Title: CSS for library_info html output + * Project: library_info + * Purpose: css + * History: + * Usage: + * Reference: + * Improve: + * Dependencies: + */ +img.thumb { + max-width: 60px; + max-height: 60px; + transition: 0.5s; +} + +img.thumb:hover { + max-width: 300px; + max-height: 300px; + transition: 0.3s; +} + +span.eighty { + font-size: 80%; +} -- cgit