aboutsummaryrefslogtreecommitdiff
path: root/library.css
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-07-09 15:11:26 -0400
committerB. Stack <bgstack15@gmail.com>2024-07-09 15:11:26 -0400
commit516263ea51350514571deafc70b14f9f19d760d8 (patch)
tree9da665d2e3eee383335c5f2ecc82dd649824ed66 /library.css
downloadlibrary-info-516263ea51350514571deafc70b14f9f19d760d8.tar.gz
library-info-516263ea51350514571deafc70b14f9f19d760d8.tar.bz2
library-info-516263ea51350514571deafc70b14f9f19d760d8.zip
initial commit
Diffstat (limited to 'library.css')
-rw-r--r--library.css29
1 files changed, 29 insertions, 0 deletions
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%;
+}
bgstack15