-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport.html
More file actions
77 lines (72 loc) · 1.32 KB
/
Copy pathexport.html
File metadata and controls
77 lines (72 loc) · 1.32 KB
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
<!DOCTYPE HTML>
<html>
<head>
<title>kwitty tweets backup</title>
<script src="js/export.js"></script>
<style type="text/css">
body {
font-family: Verdana, sans-serif, Arial;
font-weight: normal;
font-size: 11px;
padding: 0;
margin: 0;
}
table {
text-align: left;
background-color: #fafafa;
border: 0px;
border-collapse: collapse;
border-spacing: 0px;
white-space: pre;
width: 100%;
table-layout: fixed;
word-wrap: break-word;
}
table th {
border-bottom: 1px #6699CC solid;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 0px;
}
table td {
border-bottom: 1px #6699CC dotted;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 0px;
}
a:link {
text-decoration: none;
color: #06B
}
a:visited {
text-decoration: none;
color: #06B
}
a:hover {
text-decoration: underline;
color: #06B
}
a:active {
text-decoration: none;
color: #06B
}
</style>
</head>
<body>
<div>
<table>
<thead>
<tr>
<th width="160">ID</th>
<th>Tweet</th>
<th width="160">Date</th>
<th width="100">Via</th>
</tr>
</thead>
<tbody id="tweets"></tbody>
</table>
</div>
</body>
</html>