summaryrefslogtreecommitdiff
path: root/docs/src/components/RightSidebar/ThemeToggleButton.css
blob: d8cd7c2ac82cc33f7ea248acc970d5f8fd1fdd3f (plain) (blame)
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
30
31
32
33
34
35
36
37
38
.theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.25em;
	padding: 0.33em 0.67em;
	border-radius: 99em;
	background-color: var(--theme-code-inline-bg);
}

.theme-toggle > label:focus-within {
	outline: 2px solid transparent;
	box-shadow: 0 0 0 0.08em var(--theme-accent), 0 0 0 0.12em white;
}

.theme-toggle > label {
	color: var(--theme-code-inline-text);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	cursor: pointer;
}

.theme-toggle .checked {
	color: var(--theme-accent);
	opacity: 1;
}

input[name='theme-toggle'] {
	position: absolute;
	opacity: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}