-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (67 loc) · 2.75 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
73
74
<html>
<head>
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-red.min.css" />
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<!-- Wide card with share menu button -->
<style>
.demo-card-wide.mdl-card {
width: 350px;
height: 100px;
margin-left: 1030px;
margin-top: 75px;
position: absolute;
}
.demo-card-wide > .mdl-card__title {
color: #fff;
height: 176px;
background: url('http://icons.iconarchive.com/icons/graphicloads/medical-health/256/dna-icon.png') center / cover;
}
.demo-card-wide > .mdl-card__menu {
color: #fff;
}
</style>
<!-- Always shows a header, even in smaller screens. -->
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Home</span>
<div class="mdl-layout-spacer"></div>
</div>
</header>
<div class="demo-drawer mdl-layout__drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50">
<span class="mdl-layout-title"><h6>Genomics Database</h6></span>
<nav class="demo-navigation mdl-navigation mdl-color--blue-grey-800">
<a class="mdl-navigation__link" href="http://157.27.254.179/PgDb/index.html">Home</a>
<a class="mdl-navigation__link" href="http://157.27.254.179/PgDb/search.php">Search</a>
<a class="mdl-navigation__link" href="http://157.27.254.179/PgDb/updates.html">Update</a>
<a class="mdl-navigation__link" href="http://157.27.254.179/PgDb/faq.html">FAQ</a>
<a class="mdl-navigation__link" href="http://157.27.254.179/PgDb/about.html">About</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
content here
</div>
</main>
</div>
<div class="demo-card-wide mdl-card mdl-shadow--2dp" margin-top="2px">
<div class="mdl-card__title">
<h2 class="mdl-card__title-text">PG updates</h2>
</div>
<div class="mdl-card__supporting-text">
V 1.0 of DB in material design has been dropped!
</div>
<div class="mdl-card__actions mdl-card--border">
<a href="http://157.27.254.179/PgDb/updates.html" class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect">
More info
</a>
</div>
<!-- <div class="mdl-card__menu">
<button class="mdl-button mdl-button--icon mdl-js-button mdl-js-ripple-effect">
<i class="material-icons">share</i>
</button>
</div> -->
</div>
</html>