-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathheader.html
More file actions
55 lines (50 loc) · 1.6 KB
/
header.html
File metadata and controls
55 lines (50 loc) · 1.6 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
<h1>Tidier Course</h1>
<a href="index.html"><img src="https://raw.githubusercontent.com/TidierOrg/.github/main/profile/TidierOrg_logo.png" align="left" style="padding-right:10px;" width="150"/></a>
<button onclick="window.location='index.html'">Home</button>
<button onclick="window.location='why-julia.html'">Why Julia</button>
<button onclick="window.location='what-is-tidier-jl.html'">What is Tidier.jl</button>
<button onclick="window.location='scalars-and-vectors.html'">Scalars and vectors</button>
<button onclick="window.location='reading-files.html'">Reading data from files</button>
<button onclick="window.location='verbs-of-data-science.html'">Verbs of data science</button>
<button onclick="window.location='grouping-and-combining-verbs.html'">Grouping and combining verbs</button>
<button onclick="window.location='recoding-data.html'">Recoding data</button>
<style>
pluto-cell {
display: flex;
flex-direction: column;
}
pluto-cell pluto-output {
order: 1;
}
pluto-cell pluto-runarea {
bottom: -17px;
}
button {
border: 1px solid white;
color: #fff;
background-color: #333;
font-family: "Alegreya Sans", "Trebuchet MS", sans-serif;
margin: 5px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background-color: #555;
}
@media (prefers-color-scheme: light) {
button {
border: 1px solid #333;
color: #333;
background-color: #ccc;
font-family: "Alegreya Sans", "Trebuchet MS", sans-serif;
margin: 5px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background-color: #eee;
}
}
</style>