-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.web.html
47 lines (45 loc) · 1.61 KB
/
index.web.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Wunderlike</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.css" rel="stylesheet" />
<style media="screen">
html, body {
font: 14px "Open Sans", Verdana, Arial, sans-serif;
background-color: #f2f2f2;
}
#__wrapper__ {
height: 100%;
display: flex;
}
</style>
<script>
var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(" OPR/") >= 0,
isIE = /*@cc_on!@*/false || !!document.documentMode,
isChrome = !!window.chrome && !!window.chrome.webstore;
window.__BrowserDetection = {
// Opera 8.0+
isOpera: isOpera,
// Firefox 1.0+
isFirefox: typeof InstallTrigger !== "undefined",
// At least Safari 3+: "[object HTMLElementConstructor]"
isSafari: Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor") > 0,
// Internet Explorer 6-11
isIE: isIE,
// Edge 20+
isEdge: !isIE && !!window.StyleMedia,
// Chrome 1+
isChrome: isChrome,
// Blink engine detection
isBlink: (isChrome || isOpera) && !!window.CSS,
};
</script>
</head>
<body>
<div id="__wrapper__"></div>
</body>
</html>