-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·93 lines (93 loc) · 2.27 KB
/
index.html
File metadata and controls
executable file
·93 lines (93 loc) · 2.27 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
<html>
<head>
<title>MathsNZ - Supporting teachers and students in NZ and other places with maths & stuff.</title>
<script src="./jquery.js"></script>
<script src="./jsindex.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Muli' rel='stylesheet' type='text/css'>
<link href='./style.css' rel='stylesheet' type='text/css'>
<link rel="icon" href="https://www.mathsnz.com/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="https://www.mathsnz.com/favicon.ico" type="image/x-icon"/>
<meta name="description" content="Archived: MathsNZ is a website that supports teachers and students in NZ and other places with maths & stuff by providing heaps of resources, almost all of which are free.">
<script>
$(function(){
$("#sites").load("sites.html");
$("#header").load("header-home.html");
$("#footer").load("footer.html");
});
</script>
<style>
#nav {
text-align: right;
left: auto;
top:15px;
right:0px;
}
#header {
height:400px;
max-height: 400px !important;
}
body{
padding-top: 425px;
}
#smalllogo{
display: none;
}
#header table {
position:absolute;
bottom:80px;
left:50%;
margin-left:-280px;
width:560px;
max-width: 100%;
}
#header table tr{
border:none;
}
#header table td{
color:#fff;
font-size:30px;
line-height: normal;
}
.big {
font-size:200%;
font-weight: bold;
}
#header table td img {
height:207px;
width:153px;
max-width: 306px;
max-height:410px;
}
.sections div {
width:32%;
}
@media all and (max-width: 660px) {
#header table td img {
height:104px;
width: 78px;
}
#header table td{
font-size: 15px;
}
#header table {
width:280px;
margin-left:-140px;
}
.sections div {
width:100%;
}
}
</style>
</head>
<body onload='init();'>
<div id=content>
This is the old MathsNZ Site. This is no longer being maintained, but <a href='./resources/'>historical resources</a> have been left here for those still using them.
The new site to support NZGrapher is avaiable at <a href='https://info.grapher.nz/'>info.grapher.nz</a><br>
<br>
</div>
<div id="sites"></div>
<div id="header"></div>
<div id="footer"></div>
</body>
</html>