-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverride.css
More file actions
63 lines (48 loc) · 1.2 KB
/
Copy pathoverride.css
File metadata and controls
63 lines (48 loc) · 1.2 KB
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
/* Set my own typography */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
/* Set my own colors */
--background-color: #f2f2f1;
--primary-color: #516db0;
--text-color: #404040;
--links-colors: #2c2857;
--sidebar-width: 12rem; /* side bar width */
--sidebar-background-color: #ffffff !important;
/*--decorator-border: 2px solid #ffffff; /* change color and thickness of timeline */
}
.pagedjs_pagebox {
background-color: var(--background-color);
color: var(--text-color);
}
.pagedjs_pages {
background-color: var(--background-color);
color: var(--primary-color);
}
.aside {
padding: 0.1in var(--sidebar-horizontal-padding);
}
h1, h2, h3, h4, h5, h6 {
color: var(--primary-color) !important;
}
.fa {
color: var(--primary-color) !important;
}
.decorator::after{
background-color: var(--primary-color); /* change color timeline dots */
}
a {
color: var(--links-colors)
}
body {
font-family: "Atkinson Hyperlegible", sans-serif;
color: var(--text-color);
}
.avatar {
border-radius: 50%;
}
#aside {
background-color: #fff;
}
@media print {
body {-webkit-print-color-adjust: exact;}
}