-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
77 lines (69 loc) · 2.71 KB
/
Copy pathresources.html
File metadata and controls
77 lines (69 loc) · 2.71 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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title> LPC | Info</title>
<link rel="stylesheet" href="css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale = 1, maximum-scale=1, user-scalable=no" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="manifest" href="/favicons/manifest.json">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicons/favicon.ico">
<meta name="msapplication-config" content="/favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<script src="js/classie.js"></script>
<script>
function init() {
window.addEventListener('scroll', function(e){
var distanceY = window.pageYOffset || document.documentElement.scrollTop,
shrinkOn = 300,
header = document.querySelector("header");
if (distanceY > shrinkOn) {
classie.add(header,"smaller");
} else {
if (classie.has(header,"smaller")) {
classie.remove(header,"smaller");
}
}
});
}
window.onload = init();
</script>
</head>
<body>
<header>
<div class="container clearfix">
<h1 id="logo"><a href="index.html">
<img style="margin-left:-25px; padding-top:15px; padding-bottom:40px; width:200px; height:150px;" src="images/logo.png">
</a></h1>
<nav>
<a href="about.html">About</a>
<a href="members.html">Members</a>
<a href="officers.html">Officers</a>
<a style="color: rgba(255,255,255,1);"href="resources.html">Resources</a>
<a href="contact.html"> Contact Us!</a>
</nav>
</div>
</header>
<main role="main">
<section class="sect-banner">
<ul class="kf-slider">
<li></li>
<li></li>
<li></li>
</ul>
<div class="v-center">
<a></img style="border:0px; position:absolute; top:93vh; left:2vh; width:7vh; height7vh;" src="images/resizedLogo.png"></a>
<br>
<p style="font-size:4.5vh; font-family:secFont; font-weight:500 margin-top:205px;">Coming Soon!</p>
<a href="index.html"><img style="border:0px; top:85vh; left:50vh; width:5vh; height5vh;" src="images/resizedLogo.png"></a>
</div>
</section>
<footer>
<p>Having issues? Contact <a style ="font-size:2vh; font-family:secFont;"href="https://github.com/pepe-roni" target="_blank">Derrick Ng</a></p>
</footer>
</main>
</body>
</html>