-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 2.81 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<title>Welcome to the ACM</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,600,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheets/style.css">
<script src="skrollr.min.js"></script>
</head>
<body>
<article id="console">
<div class="console-black">
<div class="hero-content" id="terminal-content">
<div class="terminal" data-0="opacity:1;" data-450="opacity:.001;">
<span class="terminal-line"></span>
<span class="terminal-line">$ cat > hello</span>
<span class="terminal-line"> print "Hello World!" </span>
<span class="terminal-line"> ask("What is your name?") </span>
<span class="terminal-line"></span>
<span class="terminal-line">$ ./hello </span>
<span class="terminal-line"> Hello World! </span>
<span class="terminal-line"> What is your name? ACM<span class="blink">|</span></span>
</div>
</div>
</div>
</article>
<article class="infoBlock blue">
<div class="hero-content">
<div style="text-align:center; height:150px; margin:175px 0;">
<h2>Next General Body Meeting</h2>
<p>Next General Body Meeting: <br> Wednesday, Feb 4, 2015 <br> @ 2pm in ECS 304</p>
<span>Can't make the meeting? No biggie. Feel free to stop <br>by our office (EN3 110) at anytime</span>
</div>
</div>
</article>
<article class="infoBlock purple" style="margin-top:0;">
<div class="hero-content">
<div class="facebook social-call">
<h2>Like us on Facebook</h2>
<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fcsulbacm&width=460&height=400&colorscheme=light&show_faces=false&border_color&stream=true&header=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:460px; height:400px; margin:0 auto; background:white;"></iframe>
</div>
<div class=" social-call">
<h2>Follow us on Github</h2>
<div class="github-card" data-github="csulbacm" data-width="400" data-height="150" data-theme="default"></div>
<script src="http://lab.lepture.com/github-cards/widget.js"></script>
<h2>Meet us in person</h2>
<p>Feel free to stop <br>by our office (EN3 110) at anytime</p>
</div>
</div>
</article>
<footer>© 2015 CSULB ACM</footer>
<script>
(function onLoad (argument) {
var $console = document.getElementById('console');
var $hero = document.getElementById('terminal-content');
var windowHeight = window.innerHeight;
var contentHeight = $hero.offsetHeight;
console.log(windowHeight , contentHeight);
$console.style.height = windowHeight + 'px';
$hero.style.marginTop = (windowHeight - contentHeight)/2 + 'px';
var s = skrollr.init();
}());
</script>
</body>
</html>