forked from eri-b/aol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspreadsheets.html
83 lines (49 loc) · 1.3 KB
/
spreadsheets.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
<!doctype html>
<html lang="en">
<head>
<!--
:)
unfounded labs . com
-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spreadsheet Website</title>
<link rel="shortcut icon" href="">
<style>
body, html {
overflow:hidden ;
height:100%;
margin:0; padding:0;
}
#main{
height:100%;
display:block;
width:100%;
position:absolute;
top:0;
left:0;
}
#mobile{
height:100%;
display:block;
width:100%;
position:absolute;
top:0;
left:0;
}
#unfl{position:absolute; bottom:5px; right:5px;color:steelblue; transition:.3s; text-decoration:none; display:inline-block; padding:2px;}
#unfl:hover{color:black;}
/* Mobile */
@media only screen and (min-width: 0px) and (max-width:480px) {
/*#main{display:none;}*/
}
@media (min-width: 481px) {
#mobile{display:none;}
}
</style>
</head>
<body>
<iframe id="main" frameborder='0' src="https://docs.google.com/spreadsheets/d/e/2PACX-1vT11x30fFY3uzkUK70MjWGYxYzZev6EXbc0SDMTKCCyMdMOfnfUyVhQSi1mcjRBEA7GmeiT9LLVJjhW/pubhtml?widget=true&headers=false"></iframe>
<!-- <iframe id="mobile" frameborder='0' src='https://docs.google.com/spreadsheet/pub?key=0AuCsyEUIoKE1dHVPWXRzYjU5dlh2X0kyanE2QzE1Wnc&single=true&gid=1&range=B7%3AL9999&output=html&chrome=false&gridlines=false'></iframe> -->
</body>
</html>