forked from ryepup/jquery.lcars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.html
56 lines (47 loc) · 2.17 KB
/
css.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
<!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>jQuery LCARS Framework</title>
<link rel="stylesheet/less" href="demo.less" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="http://lesscss.googlecode.com/files/less-1.0.18.min.js"></script>
<script type="text/javascript" src="src/jquery.lcars.js"></script>
<script type="text/javascript">
$(function(){
$.lcars({
screen: 'full', // Screen Types = Full, Panel, Split
colors: { // defind your colors
color1: 'orange',
color2: 'pink'
},
content: {
padding: '0 1em', // padding: top, right, bottom, left
ele: '#content' // define the element for your main content area
},
css: 'src/'
});
});
</script>
<noscript><h1><font color="red">Javascript is required to view this page!</font></h1></noscript>
</head>
<body>
<ul id="side-panel">
<li><a href="index.html">Index</a></li>
<li><a href="buttons.html">Buttons</a></li>
<li><a href="debug.html">Debugger</a></li>
<li><a href="mobile.html">Mobile</a></li>
</ul>
<div id="content">
<h1>The LCARS Stylesheet</h1>
<p>Not only does this system come with a nice javascript file but it has a simple no destructive stylesheet. Within' the stylesheet there is a simple table for LCARS colors.</p>
<img src="graphics/lcars_colors.gif" alt="LCARS colors" />
<br />
As well as the stylesheet will import the LCARS font for you. As well as set all of the H* tags to there right sizes. It will also set link color. Styling for the content, top-content, side-panel, title, and sub-title.
All of the button styling is in there as well. Some input styling is in there too.
<br />
If there is any styling you don't like you can overwrite it with your own stylesheet.
<p>If you need this explained on a deeper level please feel free to PM me on <a href="http://www.trekbss.com" target="_blank">trekbss.com</a> username Garrett00</p>
</div>
</body>
</html>