-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (68 loc) · 1.53 KB
/
styles.css
File metadata and controls
78 lines (68 loc) · 1.53 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
:root {
--epi-red: #c01f41;
--epi-lt-grey: #f0f0f0;
--epi-body-font-family: proxima-nova, "Proxima Nova", "Source Sans Pro", sans-serif;
}
body {
font-family: var(--epi-body-font-family);
}
.custom-tooltip {
--bs-tooltip-bg: var(--bs-primary);
}
.box-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn {
border-radius: 4px;
margin-bottom: 1em;
}
.btn.btn-quarto, div.cell-output-display .btn-quarto {
--bs-btn-color: #fff;
--bs-btn-bg: var(--epi-red);
--bs-btn-border-color: var(--epi-red);
--bs-btn-hover-color: var(--epi-red);
/* original button colors */
/* --bs-btn-bg: rgba(var(--bs-link-color-rgb));
--bs-btn-border-color: rgba(var(--bs-link-color-rgb));
--bs-btn-hover-color: rgba(#1f4eb6); */
--bs-btn-hover-bg: #fff;
}
/* overriding original styles */
a,
.nav-link {
color: var(--epi-red);
}
.nav-link:hover {
color: var(--epi-red);
text-decoration: underline;
}
div.callout-note.callout {
border-left-color: var(--epi-red);
}
div.callout-note.callout-style-default>.callout-header {
background-color: var(--epi-lt-grey)
}
/* hiding the icon bc it is a blue img */
div.callout-icon-container {
display: none;
}
/*
.btn.btn-quarto {
background: #a3243b;
border: none;
padding: 24px 40px;
color: white;
font-weight: 500;
font-size: 18px;
cursor: pointer;
border-radius: 4px;
width: 100%;
margin: 16px 0;
}
.btn.btn-quarto {
background-color: #f2545c;
}
*/