aboutsummaryrefslogtreecommitdiff
path: root/styles/selection.css
blob: 6bcbd8817548222b22491a4e148b34f18b2039f4 (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
.selection {
	--selection-color: var(--gruble);
	--corner-size: 12px;
	filter: drop-shadow(0px 0px 10px var(--selection-color));
}

.selection .bar.top,
.selection .bar.bottom {
	height: 2px;

	left: var(--corner-size);
	right: var(--corner-size);
}

.selection .bar.left,
.selection .bar.right {
	width: 2px;

	top: var(--corner-size);
	bottom: var(--corner-size);
}

.selection .bar {
	background-color: var(--selection-color);
}

.selection .corner {
	fill: var(--selection-color);
}