-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard-binary.css
57 lines (48 loc) · 1.27 KB
/
dashboard-binary.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
/* My custom dashboard for Bear Blog */
/* Dashboard styles */
:root {
--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--font-secondary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
#id_dashboard_styles{
height: 600px;
}
button {
padding: 4px 8px 4px 8px;
}
li {
list-style: circle;
font-size: 1.1em;
}
@media (prefers-color-scheme: light) {
:root {
--link-color: #04a5e5;
}
strong, b {
color: #000;
}
textarea,
input:not([type="submit"]),
.editable {
font-size: 1.1em;
}
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #313244;
--link-color: #74c7ec;
}
strong, b {
color: #000;
}
textarea,
input:not([type="submit"]),
.editable {
font-size: 1.1em;
background-color: #f1f3f5;
color: #232634;
}
}
/* Dashboard footer content button (add more as needed) */
<button onclick="event.preventDefault(); window.open('https://bearblog.dev/dashboard/')">ʕ•ᴥ•ʔ Dashboard</button>
<button onclick="event.preventDefault(); window.open('https://example.com')">Example website</button>