-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
98 lines (81 loc) · 1.62 KB
/
options.css
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Elements
*/
body {
width: 560px;
max-width: 100%;
padding: 12px;
background-color: var(--sl-background-color);
color: var(--sl-font-color);
}
@-moz-document url-prefix() {
@media (prefers-color-scheme: dark) {
body {
/* Match Firefox's specific extension settings background color */
background-color: #202023;
}
}
}
/*
* Section
*/
.section {
margin-bottom: 1rem;
}
.section__heading {
margin: 0.4rem 0;
font-size: 1.3rem;
}
.section__description {
margin-top: 0;
color: var(--sl-font-color-faded);
font-size: 0.9rem;
}
/*
* Provider Authorizations
*/
.provider-authorizations {
list-style-type: none;
padding-left: 0;
margin: 0;
}
.provider-authorization__user {
font-size: 0.9rem;
margin-bottom: 0.6rem;
}
.provider-authorization__button:not(.is-authorized) {
display: flex;
align-items: center;
line-height: 20px;
}
.provider-authorization__button:not(.is-authorized).is-provider-twitch:hover,
.provider-authorization__button:not(.is-authorized).is-provider-twitch:focus {
filter: brightness(110%);
}
.provider-authorization__button:not(.is-authorized).is-provider-twitch {
border-color: var(--sl-provider-twitch-foreground);
background-color: var(--sl-provider-twitch-background);
color: var(--sl-provider-twitch-foreground);
}
.provider-authorization__provider {
margin-right: 6px;
}
/*
* Color Scheme Setting
*/
.color-scheme-setting {
list-style-type: none;
padding-left: 0;
}
.color-scheme-setting label {
display: flex;
align-items: center;
cursor: pointer;
font-size: 0.9rem;
}
.color-scheme-setting input {
position: relative;
top: -1px;
margin: 0;
margin-right: 6px;
}