-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html.bak
More file actions
117 lines (102 loc) · 3.49 KB
/
Copy pathindex.html.bak
File metadata and controls
117 lines (102 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Programming in Sciences</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">
<!-- 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 ===== -->
<style>
/* 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;
}
<!-- ===== Codeboot button ===== -->
/* Always align the button to the right */
.run-button-container {
text-align: right;
}
.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 {
background-color: #A6A6A6;
}
.codeboot-button span {
display: inline; /* Show text */
margin-left: 10px; /* Space between image and text */
font-size: 16px;
color: #3F6AB0; /* Text color matching the button background */
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '420-SN1 Fall 2024',
repo: 'https://github.com/John-Abbott-College/SN1-Notes',
loadSidebar: true,
subMaxLevel: 3,
auto2top: true,
}
</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>
<!-- MathJax to render math formulas-->
<script type="text/javascript" id="MathJax-script" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.0/es5/tex-mml-chtml.js">
</script>
</body>
</html>