aboutsummaryrefslogtreecommitdiff
path: root/static/pages/image-viewer/index.css
blob: a1a9b76cb359559ef384fb6d5e65f9e9b16131ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#container {
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	display: grid;
	gap: 10px;
	padding: 10px;
}

#container img {
	margin: auto;
	max-width: 700px;
	width: 100%;
	border-radius: var(--border-radius);
	box-shadow: #223223aa 1px 1px 4px;
}

#container img.hidden {
	filter: brightness(0) invert();
}