website index
This commit is contained in:
parent
34b508478c
commit
8a8b36d725
1 changed files with 105 additions and 0 deletions
105
index.html
Normal file
105
index.html
Normal file
|
@ -0,0 +1,105 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Welcome to Shiny Server!</title>
|
||||
<style type="text/css">
|
||||
body, html {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
background-color: #F5F5F5;
|
||||
color: #114;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
#titleBar {
|
||||
height: 80px;
|
||||
background-color: #3475b4;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #3475b3;
|
||||
-moz-box-shadow: 0px 0px 10px 3px #BBC;
|
||||
-webkit-box-shadow: 0px 0px 10px 3px #BBC;
|
||||
box-shadow: 0px 0px 10px 3px #BBC;
|
||||
}
|
||||
#titleBar #container {
|
||||
margin-top: 14px;
|
||||
}
|
||||
#titleBar h1 {
|
||||
margin: 0 auto .5em auto;
|
||||
padding: .2em;
|
||||
color: #EEE;
|
||||
text-align: center;
|
||||
}
|
||||
#intro {
|
||||
background-color: #DDD;
|
||||
margin: 1em 1em 0 1em;
|
||||
padding: .75em;
|
||||
text-align: center;
|
||||
border: 1px solid #CCC;
|
||||
font-size: 18px;
|
||||
}
|
||||
#intro p {
|
||||
margin: .3em 0 .3em 0;
|
||||
}
|
||||
#outer-content {
|
||||
max-width: 910px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#content {
|
||||
margin: 1em auto 1em auto;
|
||||
float: left;
|
||||
}
|
||||
#main{
|
||||
margin-right: 350px;
|
||||
float: left;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
#shiny{
|
||||
float: left;
|
||||
width: 305px;
|
||||
margin-left: -330px;
|
||||
padding-left: 20px;
|
||||
border-left: 1px solid #AAA;
|
||||
}
|
||||
#shiny iframe {
|
||||
margin-top: 30px;
|
||||
}
|
||||
.caption{
|
||||
font-size: 13px;
|
||||
}
|
||||
code {
|
||||
background-color: #E5E5E5;
|
||||
border: 1px solid #AAA;
|
||||
-webkit-border-radius: 3px;
|
||||
-khtml-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
padding: 0 .5em 0 .5em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="titleBar">
|
||||
<div id="container">
|
||||
<h1>M. Tuberculosis interactive tools</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div id="outer-content">
|
||||
<div id="intro">
|
||||
<p>Write some intro text here</p>
|
||||
</div>
|
||||
<div id="content">
|
||||
<div id="main">
|
||||
<a href = "drug-target/"><h2>Drug/Gene Target explorer</h2></a>
|
||||
<a href="ml/"><h2>ML/AI model explorer</h2></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue