forked from kshitij10496/Read-Later
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
87 lines (74 loc) · 2.52 KB
/
settings.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
75
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<head>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<title>ReadLater</title>
<style>
body{
font-family: Roboto, sans-serif;
color: #111111;
}
table{
width: 1100px;
}
th{
font-size: 200%;
border-top:2px solid #999;
border-bottom:2px solid #999;
}
th, td{
padding: 7px 7px 7px 7px;
}
tr:hover{
background-color: #c3e6e5
}
</style>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="#!" class="brand-logo center"><i class="material-icons">cloud</i>Read Later</a>
</div>
</nav>
<span style="display:block; height: 30px;"></span>
<div >
<table id="links" align="center" class="mdl-data-table mdl-js-data-table mdl-data-table--selectable mdl-shadow--2dp">
<thead>
<tr>
<th></th>
<th class="mdl-data-table__cell--non-numeric">Title</th>
<th class="mdl-data-table__cell--non-numeric">URL</th>
<th>Date</th>
<th>Time</th>
<th></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script type="text/javascript" src="settings.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</div>
<footer class="page-footer" >
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Read-Later</h5>
<p class="grey-text text-lighten-4">A Chrome Extension to bookmark a page and, more importantly, read it later</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2016 Copyright Text
</div>
</div>
</footer>
</body>
</html>