HTML Theme by Dany Duchaine

Example code

<ul class="simple-slider">
    <li><img src="img/slider/1.png" alt="" /></li>
    <li><img src="img/slider/2.png" alt="" /></li>
</ul>

<div class="container slider-pager">
    <div class="slider-pagers"></div>
</div>

Jquery Tabs

There, now he's trapped in a book I wrote: a crummy world of plot holes and spelling errors! They're like sex, except I'm having them! OK, this has gotta stop. I'm going to remind Fry of his humanity the way only a woman can.

For the last time, I don't like lilacs! Your 'first' wife was the one who liked lilacs! I usually try to keep my sadness pent up inside where it can fester quietly as a mental illness. Who said that? SURE you can die! You want to die?!

Hey, you add a one and two zeros to that or we walk! They're like sex, except I'm having them! Hey! I'm a porno-dealing monster, what do I care what you think? I'll tell them you went down prying the wedding ring off his cold, dead finger. Now what? You don't know how to do any of those.

Ugh, it's filthy! Why not create a National Endowment for Strip Clubs while we're at it? I can explain. It's very valuable. Hey, tell me something. You've got all this money. How come you always dress like you're doing your laundry? Maybe I love you so much I love you no matter who you are pretending to be.

Okay, I like a challenge. I feel like I was mauled by Jesus. Oh, how awful. Did he at least die painlessly? …To shreds, you say. Well, how is his wife holding up? …To shreds, you say. You're going to do his laundry? No, she'll probably make me do it. For the last time, I don't like lilacs! Your 'first' wife was the one who liked lilacs!

Whoa a real live robot; or is that some kind of cheesy New Year's costume? Alright, let's mafia things up a bit. Joey, burn down the ship. Clamps, burn down the crew. You can crush me but you can't crush my spirit!

Ah, computer dating. It's like pimping, but you rarely have to use the phrase "upside your head." That's right, baby. I ain't your loverboy Flexo, the guy you love so much. You even love anyone pretending to be him! No, she'll probably make me do it.

I daresay that Fry has discovered the smelliest object in the known universe! Who said that? SURE you can die! You want to die?! You know, I was God once. Fry! Quit doing the right thing, you jerk!


Example code

<ul class="tabs">
  <li class="active"><a href="#home">Home</a></li>
  <li><a href="#profile">Profile</a></li>
  <li><a href="#messages">Messages</a></li>
  <li><a href="#settings">Settings</a></li>
</ul>

<div class="pill-content">
  <div class="active" id="home">...</div>
  <div id="profile">...</div>
  <div id="messages">...</div>
  <div id="settings">...</div>
</div>
                    

Blockquote

All these primary impulses, not easily described in words, are the springs of man's actions.

20px Rounded buttons


Example code

<a class="small-btn blue rounded-1" href="#">
...
 </a>
                    

5px Rounded buttons


Example code

<a class="small-btn red rounded-2" href="#">
...
 </a>
                    

Alerts

One-line messages for highlighting the failure, possible failure, or success of an action. Particularly useful for forms.


×

Holy guacamole! Best check yo self, you’re not looking too good.

×

Oh snap! Change this and that and try again.

×

Well done! You successfully read this alert message.

×

Heads up! This is an alert that needs your attention, but it’s not a huge priority just yet.

Example code

<div class="alert-message block-message warning">
  <a class="close" href="#">×</a>
  <p><strong>Holy guacamole! This is a warning!</strong> Best check yo self, you’re not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</p>

  <div class="alert-actions">
    <a class="btn small" href="#">Take this action</a> <a class="btn small" href="#">Or do this</a>
  </div>
</div>
                    

Exemple of an UL list


Exemple of an OL list


  1. List element one
  2. List element two
  3. List element three
  4. List element four
  5. List element five

Label anything

Ever needed one of those fancy New! or Important flags when writing code? Well, now you have them. Here's what's included by default:

Label Result
<span class="label">Default</span> Default
<span class="label success">New</span> New
<span class="label warning">Warning</span> Warning
<span class="label important">Important</span> Important
<span class="label notice">Notice</span> Notice


Condensed table

For tables that require more data in tighter spaces, use the condensed flavor that cuts padding in half. It can also be used in conjunction with borders and zebra-stripes, just like the default table styles.



# First Name Last Name Language
1 Some One English
2 Joe Sixpack English
3 Stu Dent Code

Example code

<table>
  ...
</table>


Bordered table

Make your tables look just a wee bit sleeker by rounding their corners and adding borders on all sides.



# First Name Last Name Language
1 Some One English
2 Joe Sixpack English
3 Stu Dent Code

Example code

<table class="bordered-table">
  ...
</table>


Zebra-striped

Get a little fancy with your tables by adding zebra-striping—just add the .zebra-striped class.



# First Name Last Name Language
1 Some One English
2 Joe Sixpack English
3 Stu Dent Code
span 4 columns
span 2 columns span 2 columns

Example code

<table class="zebra-striped">

  ...
</table>

Note: Zebra-striping is a progressive enhancement not available for older browsers like IE8 and below.


Forms Elements

All forms are given default styles to present them in a readable and scalable way. Styles are provided for text inputs, select lists, textareas, radio buttons and checkboxes, and buttons.


Some value here
Small snippet of help text
Success!
Ruh roh!
@
Here's some help text
Note: Labels surround all the options for much larger click areas and a more usable form.
to All times are shown as Pacific Standard Time (GMT -08:00).
Block of help text to describe the field above if need be.

Breadcrumbs

Breadcrumb navigation is used as a way to show users where they are within an app or a site, but not for primary navigation.

Example code

<ul class="breadcrumb">

  <li><a href="#">Home</a> <span class="divider">/</span></li>
  <li><a href="#">Middle page</a> <span class="divider">/</span></li>

  <li><a href="#">Another one</a> <span class="divider">/</span></li>
  <li class="active">You are here</li>
</ul>