-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (172 loc) · 5.41 KB
/
Copy pathindex.html
File metadata and controls
190 lines (172 loc) · 5.41 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Programming in Science</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<!-- Custom Favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon-16x16.png"
/>
<link rel="manifest" href="assets/site.webmanifest" />
<link rel="mask-icon" href="assets/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<!-- Theme: Simple -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"
/>
<!-- Enable the Prism syntax highlight theme: tomorrow night -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/themes/prism-tomorrow.min.css"
/>
<!-- ===== DYI Styling by Mau ===== -->
<!-- TODO - Poggie to migrate styles to a separate css-->
<style>
/* IMAGE STYLES *************************************************/
/* Always center images */
img {
margin: 3rem auto;
display: flex;
}
/* Custom class for inline images */
.inline-img {
display: inline;
margin: auto;
}
/* image descriptions */
.img-info {
display: flex;
justify-content: center;
margin-top: -2rem !important;
margin-bottom: 3rem !important;
font-style: italic;
}
/* PRACTICE STYLES *************************************************/
/* custom sidebar styles to make shit standout */
.practice-link {
font-weight: bold;
font-style: italic;
color: #cc99cd;
}
/* make shit cuter on the practice question dropdowns */
code.language-python {
background-color: #333;
color: #eee;
padding: 0.2em 0.4em;
border-radius: 4px;
white-space: pre;
word-break: normal;
overflow-x: auto;
display: block;
}
/* CODEBOT STYLES *************************************************/
/* Codeboot button alignment */
.run-button-container {
text-align: right;
}
/* Codeboot button styles */
.codeboot-button {
background-color: #e4e4e4;
color: white;
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
display: inline-flex;
align-items: center;
height: 50px;
text-decoration: none;
background-image: url("Images/codeboot-button.png");
background-repeat: no-repeat;
background-size: 40px;
background-position: 10px center;
padding-left: 50px;
}
/* Codeboot button hover animation */
.codeboot-button:hover {
background-color: #a6a6a6;
}
.codeboot-button span {
display: inline;
margin-left: 10px;
font-size: 16px;
color: #3f6ab0;
}
</style>
<!-- MathJax to render math formulas-->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({ TeX: { equationNumbers: { autoNumber: "all" } } });
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
</script>
<script
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"
type="text/javascript"
></script>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: "420-SN1 Winter 2026",
repo: "https://github.com/John-Abbott-College/SN1-Notes",
loadSidebar: true,
loadNavbar: true,
subMaxLevel: 3,
auto2top: true,
latex: {
inlineMath: [
["$", "$"],
["\\(", "\\)"],
], // default
displayMath: [["$$", "$$"]], // default
},
};
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- docsify-themeable (latest v0.x.x) -->
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<!-- Search bar -->
<script src="https://unpkg.com/docsify/lib/plugins/search.js"></script>
<!-- Copy to clipboard button on code blocks -->
<script src="//unpkg.com/docsify-copy-code"></script>
<!-- docsify-pagination -->
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- enable prism syntax highlighting for python -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1.27.0/components/prism-json.min.js"></script>
<!-- Latex for docsify -->
<script src="//cdn.jsdelivr.net/npm/docsify-latex@0"></script>
</body>
</html>