-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtesting.html
More file actions
68 lines (67 loc) · 2.12 KB
/
testing.html
File metadata and controls
68 lines (67 loc) · 2.12 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' name='viewport'>
<title>Navionics ChartViewer</title>
<link href='/favicon.ico' rel='Shortcut icon'>
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,700,400italic' type='text/css' rel='stylesheet'>
<link href='/styles/main.min.css?v=2.0.8-7' type='text/css' rel='stylesheet'>
<style>
* {
-moz-box-sizing: border-box; box-sizing: border-box;
}
html,
body {
margin: 0; padding: 0; width: 100%; height: 100%; font-family: "Roboto", "Arial", "sans-serif"; font-size: 13px; background-color: #003e7e;
}
#site-page {
height: 100%; margin: 0; padding: 0; position: relative;
}
#site-header1 {
position: absolute; left: 0; top: 0; right: 0; width: 100%; z-index: 9999;
border-bottom: 1px solid #ffffff;
}
#site-content-wrapper {
height: 100%; padding-top: 65px;
}
@media all and (min-width: 1280px) {
#site-content-wrapper {
padding-top: 65px;
}
}
#site-content {
height: 100%; margin: 0; padding: 0; position: relative; width: auto;
}
.site-preloader {
background: #ffffff;
background-size: cover;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 10000;
-moz-transition: opacity .2s ease;
-webkit-transition: opacity .2s ease;
transition: opacity .2s ease
}
.site-preloader.fadeOut {
opacity: 0;
}
</style>
</head>
<body data-root='/styles/images'>
<div id='site-page'>
<div id='site-header1'></div>
<div id='site-content-wrapper'>
<div class='site-adv' id='site-adv'></div>
<div id='site-content'>
<div class='site-preloader' id='site-preloader'></div>
</div>
</div>
<div id='site-footer'></div>
</div>
<script src='/js/dws.js?v=2.0.8-7'></script>
</body>
</html>