-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rhinovirus Viewer 🦏🦠</title>
<link rel="icon" href="assets/220px-Rhinovirus_isosurface.png" type="image/png">
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
}
h1 {
font-size: 6em; /* Increased size to be at least 2x bigger */
color: #ffffff;
margin-bottom: 20px;
}
.ribbon {
display: flex;
justify-content: center;
background-color: #1f1f1f;
width: 100%;
padding: 10px 0;
margin-bottom: 40px; /* Add more space below the ribbon */
}
.ribbon a {
color: #bb86fc;
text-decoration: none;
margin: 0 20px;
font-size: 1.2em;
}
.ribbon a:hover {
text-decoration: underline;
}
.content a {
font-size: 1.5em;
color: #bb86fc;
text-decoration: none;
margin-top: 20px;
}
.content a:hover {
text-decoration: underline;
}
.virus-image {
margin: 20px 0;
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<h1>Rhinovirus Viewer 🦏🦠</h1>
<img src="assets/220px-Rhinovirus_isosurface.png" alt="Rhinovirus" class="virus-image">
<div class="ribbon">
<a href="report.html">Report</a>
<a href="https://jbrowse.org/jb2/docs/" target="_blank">JBrowse Documentation</a>
<a href="https://github.com/atamadon/atamadon.github.io/blob/main/README.md" target="_blank">Tutorial</a>
<a href="https://en.wikipedia.org/wiki/Rhinovirus" target="_blank">Virus</a>
<a href="https://github.com/atamadon/atamadon.github.io" target="_blank">GitHub Repository</a>
</div>
<div class="content">
<a href="https://atamadon.github.io/jbrowse2" target="_blank">Go to JBrowse2 Instance</a>
</div>
</body>
</html>