-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (86 loc) · 3.08 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
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
<!doctype html>
<html>
<head>
<title>BluAdmin Panel  </title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="bluowl.css">
<script type='text/javascript' src='http://code.jquery.com/jquery-1.6.js'></script>
<script type='text/javascript'>
$(window).load(function(){
$('div.menu-button').click(function() {
$(this).toggleClass('menu-button-active');
$('div.content').toggleClass('content-active');
});
});
</script>
<script type='text/javascript'>
$(function()
{
var ticker = function()
{
setTimeout(function(){
$('#ticker li:first').animate( {marginTop: '-100px'}, 300, function()
{
$(this).detach().appendTo('ul#ticker').removeAttr('style');
});
ticker();
}, 4000);
};
ticker();
});
</script>
</head>
<body>
<!--<div id="cutout">
<div id="logo"></div>
</div>
-->
<div id="top-container">
<div id="menu-panel"></div>
<div class="menu-button"></div>
<div class="content">
<div id="logo-container">
<div id="logo"></div>
<div id="text-logo"></div>
</div>
<div id="saying-container">
<a>WE MAKE AWESOME
<ul id="ticker">
<li><a>WEBSITES</a></li>
<li><a>GAMES</a></li>
<li><a>BRANDS</a></li>
<li><a>LOGOS</a></li>
<li><a>VIDEOS</a></li>
</ul>
</div>
<!--
<div id="saying-container">
<div id="text-logo"></div>
<div id="description">
<p>Few have gone in search of the source of pure awesome. Some believe it's a myth, no more tangible than that sports car you'll never be able to afford. Some strive for awesome, chasing after it like the unrelinquishing childhood dream to be an astronaut someday. And more still believe awesome to be unobtainable, like the woman on the train with the purple peacoat. The one that got away. But here at BluOwl we don't go looking for awesome...</p>
<h1>We make awesome happen every day.</h1>
</div>
</div>
</div>
-->
<div class="footer">
<div class="footer-text">
<p><i>Made with love by <u><a href="http://www.refractix.com">@Refractix</a></u>.</i> | © 2012 BluOwl Studios. All Rights Reserved.</p>
</div>
<div class="footer-icons">
<a href="http://www.youtube.com/user/BluOwlStudios"></a><a href="http://www.vimeo.com/bluowl"></a><a href="https://www.facebook.com/bluowlstudios"></a><a href="https://twitter.com/bluowlstudios"></a><a href="https://github.com/BluOwl"></a><a href="http://www.flickr.com/photos/bluowl"></a>
</div>
</div>
</div>
</div>
<!--
<div id="logo-container">
<div id="logo"></div>
</div>
<div id="description">
<p>Few have gone in search of the source of pure awesome. Some believe it's a myth, no more tangible than that sports car you'll never be able to afford. Some strive for awesome, chasing after it like the unrelinquishing childhood dream to be an astronaut someday. And more still believe awesome to be unobtainable, like the woman on the train with the purple peacoat. The one that got away. But here at BluOwl we don't go looking for awesome...</p>
<h1>We make awesome happen every day.</h1>
</div>
-->
</body>
</html>