summaryrefslogtreecommitdiff
path: root/kvmd/web/css/stream.css
blob: 0312d4113dd43d15028a491dcacc689511937c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
img#stream-image {
	width: 640px;
	height: 480px;
	display: inline-block;
	border: var(--dark-border);
	background-color: var(--bg-color-stream-screen);
}

img.stream-image-active {
	cursor: crosshair;
	-webkit-filter: none;
	-moz-filter: none;
	filter: none;
}

img.stream-image-inactive {
	cursor: wait;
	-webkit-filter: grayscale(100%) brightness(75%);
	-moz-filter: grayscale(100%) brightness(75%);
	filter: grayscale(100%) brightness(75%);
}