Skip to content

Instantly share code, notes, and snippets.

@fernandogelin
Last active July 3, 2018 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandogelin/a9005aa8b4c5290e998a1d005f74a3db to your computer and use it in GitHub Desktop.
Save fernandogelin/a9005aa8b4c5290e998a1d005f74a3db to your computer and use it in GitHub Desktop.
HGMD Explorer web page
<!DOCTYPE html>
<html>
<head>
<style>
@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);
h1 {
font-size: 3rem;
}
h2 {
color: gray;
}
.hgmd-images {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
align-content: space-around;
}
.hgmd-images img {
box-shadow: 1px 1px 5px lightgray;
height: 25vh;
}
.hgmd-heading {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin-bottom: 2rem;
font-family: 'Rubik', sans-serif;
}
.hgmd-images a {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin-bottom: 2rem;
font-family: 'Rubik', sans-serif;
}
figcaption {
margin-top: 1rem;
font-size: 2rem;
font-weight: bold;
}
</style>
</head>
<body>
<div class="hgmd-heading">
<h1>HGMD Explorer</h1>
<h2>Explore the Human Gene Mutation Database by genes, mutations or diseases. Select a dashboard below.</h2>
</div>
<div class="hgmd-images">
<a href="https://tableau.brown.edu/#/site/brn/views/HGMDExplorer_0/GeneReport">
<img src="gene.png">
<figcaption>Gene Report</figcaption>
</a>
<a href="https://tableau.brown.edu/#/site/brn/views/HGMDExplorer_0/MutationSearch">
<img src="mutation.png">
<figcaption>Mutation Report</figcaption>
</a>
<a href="https://tableau.brown.edu/#/site/brn/views/HGMDExplorer_0/DiseaseReport">
<img src="disease.png">
<figcaption>Disease Report</figcaption>
</a>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment