forked from ryepup/jquery.lcars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
65 lines (54 loc) · 1.55 KB
/
new.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>BTTM LCARS SYSTEMS</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="src/jquery.lcars.js"></script>
<script type="text/javascript">
$(function () {
$.lcars({
screen: 'panel',
title: 'Console 47',
subTitle: '',
colors: {
color1: 'blue',
color2: 'blue'
},
content: {
padding: '0 1em',
ele: '#content'
},
css: 'src/'
});
});
</script>
<style>
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
</style>
<noscript>
<h1>
<font color="red">Javascript is required to view this page!</font>
</h1>
</noscript>
</head>
<body>
<div id="content" style="text-align:center">
<div class="">
<div class="child">
<img src="graphics/UFP.bmp" alt="United Federation of Planets">
<p style="font-size:3em;">
<font color="#f90">THE LCARS COMPUTER NETWORK</font>
</p>
<p style="color:rgb(153, 153, 255);font-size:2em;">AUTHORIZED ACCESS ONLY</p>
<p style="color:rgb(153, 153, 255);font-size:2em;">PLEASE REPORT MALFUNCTIONS TO ENGINEERING STAFF ON DUTY</p>
</div>
</div>
</div>
</body>
</html>