-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (96 loc) · 3.35 KB
/
index.html
File metadata and controls
115 lines (96 loc) · 3.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" content="7;URL=http://technology.finra.org/opensource.html">
<meta charset="UTF-8">
<title>FINRA Open Source Projects</title>
<meta name="description" content="Our site has moved to a new address. Please note the change of address." >
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700' rel='stylesheet' type='text/css'>
<style>
body{
font-family: 'Noto Sans', Arial, serif;
font-weight: 400;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
line-height: 1.618em;
background: #464646 url('assets/opensource-photo-2.jpg') center center no-repeat fixed;
background-size: cover;
}
h2{
font-family: 'Noto Sans', Arial, serif;
font-weight: 700;
font-size:40px;
line-height: 1.618em;
}
section{
max-width:800px;
margin:8% auto 1em auto;
background-color:#222;
opacity: 0.8;
filter: alpha(opacity=80); /* For IE8 and earlier */
color:#fff;
padding:1em 5%;
}
a{
color: #00CC66;
}
a:focus{
outline:none;
outline-offset:inherit;
}
@media (max-device-width: 1027px) {
body{
text-align:center;
font-size:larger;
}
section{
max-width: 90%;
}
}
@media (max-device-width: 640px) {
section{
max-width: 97%;
}
}
</style>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o), m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-47319751-2', 'finraos.github.io');
ga('send', 'pageview');
</script>
<!-- ENABLE EVENTS -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push([ '_setAccount', 'UA-47319751-2' ]);
_gaq.push([ '_trackPageview' ]);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<section>
<h2>Our Site has moved!</h2>
<h3>The new web address for this page is <a href="http://technology.finra.org/opensource.html">http://technology.finra.org/opensource.html</a></h3>
<h3>...You will be transferred to the new site in a moment...</h3>
<p>If you have waited more than a few seconds and you are still seeing this message, please click on the link above! Thank you.</p>
</section>
</body>
</html>