-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (40 loc) · 889 Bytes
/
Copy pathstyles.css
File metadata and controls
46 lines (40 loc) · 889 Bytes
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
.title, .sidebar-title, h1, h2, h3 {
font-weight:900;
color: #3d6da9;
font-family: Garamond;
}
.enlarge-image {
transition: transform .2s ease-out;
cursor: pointer;
}
.enlarge-image:hover {
transform: scale(1.6);
display: block;
background: #eee;
border: 2px solid #27466C;
position: relative;
float: left;
z-index: 999;
}
.enlarge-image:hover .inline-figure, .figure {
margin: 0rem 0rem 0rem 0rem;
padding: 0rem 0rem 0rem 0rem;
}
.table {
border-collapse: collapse;
width: 95%;
margin: 0 auto;
}
.table, .tbody, .th {
padding: 8px;
text-align: center;
border-bottom: 2px solid #ddd;
border-top: 2px solid #ddd;
}
body.quarto-dark img.img-fluid.figure-img {
filter: invert(1) hue-rotate(180deg);
mix-blend-mode: screen;
}
body.quarto-dark div.enlarge-image:hover {
background-color: var(--quarto-body-bg);
}