forked from js2264/OHCA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OHCA.scss
153 lines (123 loc) · 4.28 KB
/
OHCA.scss
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*-- scss:defaults --*/
$primary: #008CBA !default;
/*-- scss:rules --*/
.sidebar-title {
// color: #480F1F;
}
img.quarto-cover-image {
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
/* Central column page ------------------------------------------------------ */
@media (min-width: 992px){
body.floating .page-columns {
display: grid;
gap: 0;
// grid-template-columns: [screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc( 1000px - 3em )) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end];
grid-template-columns: [screen-start] 0em [screen-start-inset] 0fr [page-start] minmax(300px, 25%) [body-start-outset] 0em [body-start] 1.5em [body-content-start] minmax(500px, 50%) [body-content-end] 1.5em [body-end] 0em [body-end-outset] minmax(50px, 15%) [page-end-inset] minmax(25px, 50px) [page-end] 0fr [screen-end-inset] 0em [screen-end];
grid-template-columns: [screen-start] 0em [screen-start-inset] 0em [page-start] minmax(300px, 25%) [body-start-outset] 0em [body-start] 3.5em [body-content-start] minmax(500px, 50%) [body-content-end] 1.5em [body-end] 0em [body-end-outset] minmax(50px, 15%) [page-end-inset] minmax(25px, 50px) [page-end] 0fr [screen-end-inset] 0em [screen-end];
}}
main {
margin-top: 0em;
}
div.sidebar.sidebar-navigation.rollup.quarto-sidebar-toggle-contents, nav.sidebar.sidebar-navigation:not(.rollup) {
background-color: #f1f1f1;
}
/* Left navbar ------------------------------------------------------ */
div.sidebar-item-container .active, div.sidebar-item-container .show>.nav-link, div.sidebar-item-container .sidebar-link>code {
// color: #480f1f;
font-weight: 800;
}
.text-start {
text-align: left !important;
font-weight: 800;
}
#quarto-sidebar {
transition: width .15s ease-in;
padding: 14px 10%;
}
/* right navbar ------------------------------------------------------ */
.sidebar nav[role=doc-toc] ul>li>a.active, .sidebar nav[role=doc-toc] ul>li>ul>li>a.active {
// border-left: 4px solid #480f1f;
border-left: 4px solid;
// color: #480f1f !important;
font-weight: 800;
}
#toc-title+ ul > li > .nav-link {
font-weight: 800;
}
/* Headings ------------------------------------------------------ */
h2 {
margin-top: 3rem;
margin-bottom: 1rem;
font-size: 1.5rem;
}
h3 { margin-top: 1.5em; font-size: 1.2rem; }
h4 { margin-top: 1.5em; font-size: 1.1rem; }
h5 { margin-top: 1.5em; font-size: 1rem; }
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
line-height: 2;
font-weight: 700;
}
.quarto-section-identifier {
color: #6C6C6C;
font-weight: normal;
}
/* Underlining links ------------------------------------ */
.citation a, .footnote-ref {
text-decoration: underline;
}
/* Put a border around session info print ------------------------------------------------ */
#session-info code, p+ pre code {
// border: 1px solid black
}
/* Code colors ------------------------------------------------------------------------- */
// Text color of `backticked` words
code {
color: #008CBA;
}
// Border of `backticked` words
li code , .anchored code , p code , .flex-fill code {
// border: 1px solid #008CBA;
}
kbd, samp {
// border: 1px solid;
}
// background color of chunks of code *WITH A SPECIFIED LANGUAGE*
div.sourceCode {
// background-color: rgba(0, 170, 227, 0.025);
background-color: #f1f1f1;
border: none;
}
pre.sourceCode {
border: none;
font-size: .875em;
overflow: visible !important;
}
pre code {
background-color: transparent;
font-size: inherit;
color: inherit;
word-break: normal;
// border: 1px solid rgb(0 0 0 / 65%);
}
.cell-output-stdout code , .code-with-filename code , .cell-output-stderr code {
background-image: linear-gradient(160deg,#f8f8f8 0,#f1f1f1 100%);
}
/* Printing ------------------------------------------------ */
@media print {
:root {
font-size: 11pt;
}
#quarto-sidebar, #TOC, .nav-page {
display: none;
}
.page-columns .content {
grid-column-start: page-start;
}
.fixed-top {
position: relative;
}
.panel-caption, .figure-caption, figcaption {
color: #666;
}
}