-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgiscus_style.css
61 lines (48 loc) · 1.4 KB
/
giscus_style.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
/* Giscus styling start */
@import url("https://lambdaurora.dev/style.css");
:root {
--color-fg-default: var(--ls_theme_foreground);
--color-bg-primary: var(--ls_theme_background_highlight);
--color-bg-tertiary: var(--ls_theme_background_accentuated);
--color-bg-overlay: var(--ls_theme_background_popover);
--color-social-reaction-bg: var(--ls_theme_background_highlight);
--color-btn-primary-hover-bg: var(--ls_theme_background_accentuated);
--color-border-default: var(--ls_theme_border_color);
}
.btn {
border-color: transparent;
}
.btn-primary {
color: var(--ls_theme_on_primary);
background-color: var(--ls_theme_primary);
}
.btn-primary:hover {
color: var(--ls_theme_primary);
}
.btn-primary[disabled] {
color: rgba(0, 0, 0, .37);
background-color: rgba(0, 0, 0, .12);
cursor: default;
}
.has-reacted {
color: var(--ls_theme_secondary_darkened) !important;
background-color: var(--ls_theme_secondary_lightened) !important;
}
@media (prefers-color-scheme: dark) {
.btn-primary[disabled] {
color: rgba(255, 255, 255, .37);
background-color: rgba(255, 255, 255, .12);
}
.has-reacted {
color: var(--ls_theme_secondary_lightened) !important;
background-color: var(--ls_theme_secondary_darkened) !important;
}
}
.gsc-reactions-popover {
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2),
0 4px 5px 0 rgba(0, 0, 0, .14),
0 1px 10px 0 rgba(0, 0, 0, .12);
}
.mb-\[-1px\] {
margin-bottom: initial;
}