roboguy / lcars

CSS Framework to style web pages like the fictional Star Trek computer operating system.

Home Page:http://garrett-.github.io/lcars/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LCARS

Creator Note I no longer have the time to work on this. If anyone would like to take over, please let me know and I'll transfer ownership to you.

LCARS (Library Computer Access Retrieval System)

I'm recreating a LCARS website system that I created many years ago. It was a very large jQuery plugin. I think I'm just going to create a CSS system. Something much like that of Bootstrap, Foundation, Topcoat, Brick, or Pure.

I'm not exactly sure what tech I'll be building this off of. Right now I'm looking hard at Stylus with Nib, Jeet, Rupture, and Typographic.

Buttons

Finished the inital button classes. Example mark up

<a href="#" class="lcars-button radius">Rounded Button</a>
<a href="#" class="lcars-button right">Right Side Rounded Button</a>
<a href="#" class="lcars-button left">Left Side Rounded Button</a>

<a href="#" class="lcars-button radius">
  Button
  <span class="lcars-button-addition">B1</span>
</a>

<a href="#" class="lcars-button radius">
  <span class="lcars-button-addition">B1</span>
  Button
</a>

Grid System

Every CSS framework needs to have its own grid system. I've based mine off of fractions.

<div class="lcars-row">
  <div class="lcars-column u-1-3"> 1/3 page width </div>
  <div class="lcars-column u-1-3"> 1/3 page width </div>
  <div class="lcars-column u-1-3"> 1/3 page width </div>
</div>

<div class="lcars-row">
  <div class="lcars-column u-1-3"> 1/3 page width </div>
  <div class="lcars-column u-2-3"> 2/3 page width </div>
</div>

This grid goes up to 12 as the highest denominator, no numerator goes beyond its denominator.

This means there are a lot of way to get the same sizes. Example; these are all the same.

<div class="lcars-row">
  <div class="lcars-column u-1-2"> 1/2 page width </div>
  <div class="lcars-column u-2-4"> 2/4 (1/2) page width </div>
  <div class="lcars-column u-3-6"> 3/6 (1/2) page width </div>
  <div class="lcars-column u-4-8"> 4/8 (1/2) page width </div>
  <div class="lcars-column u-5-10"> 5/10 (1/2) page width </div>
  <div class="lcars-column u-6-12"> 6/12 (1/2) page width </div>
</div>

Grid prefix's and suffix's can be used to create spacing before and after a grid column.

<div class="lcars-row">
  <div class="lcars-column u-1-3 prefix-1-3"> 1/3 page width with 1/3 prefix margin</div>
  <div class="lcars-column u-1-3"> 1/3 page width </div>
</div>

<div class="lcars-row">
  <div class="lcars-column u-1-3"> 1/3 page width </div>
  <div class="lcars-column u-1-3 suffix-1-3"> 1/3 page width with 1/3 suffix margin</div>
</div>

Menus

To give you page that classic LCARS look you'll want to add vertical menus.

<ul class="lcars-menu">
  <li><a href="#">Menu Item 1</a></li>
  <li><a href="#">Menu Item 2</a></li>
  <li><a href="#">Menu Item 3</a></li>
  <li><a href="#">Menu Item 4</a></li>
  <li><a href="#">Menu Item 5</a></li>
</ul>

The defining style for a LCARS interface is the rounded elbows that connect horizontal dividers and the vertical menus.

LCARS Elbow

You can create these using the lcars-elbow class. You define the width of these elbows by adding them onto a column.

<div class="lcars-row">
  <div class="lcars-column u-1-8 lcars-elbow left bottom">
    Top Left elbow
  </div>
  <div class="lcars-column u-7-8 lcars-divider">
    Dashed divider lines
  </div>
</div>

Here is a demo showing how to use all these things together.

About

CSS Framework to style web pages like the fictional Star Trek computer operating system.

http://garrett-.github.io/lcars/

License:MIT License


Languages

Language:CSS 95.9%Language:HTML 3.2%Language:JavaScript 0.9%