-
Notifications
You must be signed in to change notification settings - Fork 1
/
export.html
74 lines (67 loc) · 1.61 KB
/
export.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
<!--
* @license
* Copyright (c) 2012 Soichi Takamura (http://stakam.net/)
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
-->
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>goog.ui.List</title>
<link rel="stylesheet" href="/piglovesyou/goog/css/list.css" />
<style type="text/css">
body {
margin: 10%;
color: #4d4e6d;
}
h2 {
font-size: 1em;
font-weight: normal;
margin: 0 0 .83em;
}
.my-list {
width: 40%;
min-width: 220px;
display: inline-block;
margin-right: 20px;
vertical-align: top;
}
.goog-list {
height: 350px;
border: 2px #1e7cc1 solid;
padding: 6px;
-webkit-overflow-scrolling: touch;
}
.goog-list .goog-list-container > div {
line-height: 60px;
padding: 0 10px;
border-bottom: 6px white solid;
box-sizing: border-box;
background: #e9edf1;
color: #9c999f;
}
.goog-list .goog-list-container > div:last-child {
border-bottom: none;
}
.goog-list .goog-list-container > div:hover {
background: #c5d6ed;
}
</style>
</head>
<body>
<h1>goog.ui.List</h1>
<div class="goog-list">
<div class="goog-list-topmargin"></div>
<div class="goog-list-container"></div>
<div class="goog-list-bottommargin"></div>
</div>
<script src="export-min.js"></script>
<script>
example(document.querySelector('.goog-list'));
</script>
</body>
</html>