blob: c3b23f3f691943478d329b53034a077c432c44cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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%;
}
|