HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Button Styles</title>
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width;">
<link rel="stylesheet" href="./stylesheets/screen.css">
<link rel="stylesheet" href="./stylesheets/fonts.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<section class="blank wide flatby">
<div>
<h1><span>Flatby UI</span>: Something something, free ui kit.</h1>
<h2><a href="https://github.com/dennisschipper/Flatby">Get from GitHub</a>, <a href="https://codepen.io/dennisschipper/details/EFwah">Preview at codepen</a>, designed & developed by <a href="http://www.designfordetails.com/">Dennis Schipper</a>.</h2>
<hr>
</div>
</section>
<section class="blank">
<nav class="navigation">
<ul>
<li>
<a href="#" class="focus navigation-home">
<i class="icon-large icon-home"></i>
</a>
</li>
<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 class="lefty">
<a href="#" class="navigation-settings">
<i class="icon-large icon-cog "></i>
</a>
</li>
<li class="lefty">
<a href="#" class="navigation-user">
<i class="icon-large icon-user"></i>
</a>
</li>
</ul>
<br class="clear">
</nav>
</section>
<div class="container blank">
<nav class="breadcrumbs">
<ul>
<li>Your are at:</li>
<li>
<a href="#">Home</a> <i class="icon-large icon-angle-right"></i>
</li>
<li>
<a href="#">Settings</a> <i class="icon-large icon-angle-right"></i>
</li>
<li>
User Settings
</li>
</ul>
</nav>
</div>
<div class="container blank">
<ul class="dropdown">
<li>
<a href="#">Dropdown options for the nav bar</a>
</li>
<li>
<a href="#">Another option</a>
</li>
<li>
<a href="#">Third option</a>
</li>
<li>
<a href="#">The last option</a>
</li>
</ul>
</div>
<section class="blank">
<nav class="navigation tabs">
<ul>
<li>
<a href="#">
<i class="icon-large icon-home"></i>
</a>
</li>
<li>
<a href="#">First tab</a>
</li>
<li>
<a href="#" class="active">Active tab</a>
</li>
<li>
<a href="#">Another tab</a>
</li>
<li>
<a href="#">Another tab</a>
</li>
<li>
<a href="#">Another tab</a>
</li>
</ul>
<br class="clear">
</nav>
</section>
<section class="blank blurb">
<img src="http://lorempixel.com/1400/560/" alt="Image">
<div>
<h1>Flatby UI</h1>
<h2>The subtitle for the main text blurb</h2>
<hr>
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown. Doc, you gotta help me. you were the only one who knows how your time machine works.</p>
<a href="#" class="button button-cta">Call To Action! Buy our stuff!</a>
</div>
</section>
<section>
<div class="activity">
<h1 class="item-header">Recent Activity</h1>
<div class="activity-list-update">
<img src="http://lorempixel.com/50/50/" alt="Image">
<p><strong>Dennis The Dude</strong> updated his <a href="#">user profile</a>.</p>
<div class="clear"></div>
</div>
<div class="activity-list-update">
<img src="http://lorempixel.com/50/50/" alt="Image">
<p><strong>Abe Kobo</strong> uploaded a new file <a href="#">new-design.png</a></p>
<div class="clear"></div>
</div>
<div class="activity-list-update">
<img src="http://lorempixel.com/50/50/" alt="Image">
<p><strong>Abe Kobo</strong> uploaded a new file <a href="#">new-design.png</a></p>
<div class="clear"></div>
</div>
<a href="#" class="item-footer green">
See all activity
</a>
</div>
</section>
<section>
<div>
<a href="#" class="button">This is a button</a>
<a href="#" class="button button-submit">This is a save button</a>
<a href="#" class="button">Button with a counter <span class="notification">22</span></a>
<a href="#" class="button button-and-icon">
<div><i class="icon-large icon-cog"></i></div>Button with an icon
</a>
</div>
<hr>
<div>
<a href="#" class="button button-submit">Submit</a>
<a href="#" class="button button-cancel">Cancel</a>
<a href="#" class="button button-delete">Delete</a>
</div>
<hr>
<div>
<a href="#" class="button button-small">Smaller button</a>
</div>
<hr>
<div>
<a href="#" class="button button-buy">Buy button (full width for columns)</a>
</div>
</section>
<section class="blank items">
<div class="item">
<img src="http://lorempixel.com/400/300/" alt="Image">
<div class="item-info">
<h1>Item title</h1>
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some.</p>
<span class="price">£49.99</span>
<a href="#" class="button button-buy">Get it now</a>
</div>
</div>
</section>
<section class="blank">
<div class="item-featured">
<img src="http://lorempixel.com/500/300/" alt="Image">
<div class="item-info">
<h1>Item title</h1>
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some.</p>
<span class="price">£49.99</span>
<a href="#" class="button button-buy">Get it now</a>
</div>
<br class="clear">
</div>
</section>
<section class="blank slider">
<h1>Content slider</h1>
<h2>Lorel ipsum dolor sit amet lorel ipsum dolor.</h2>
<img src="http://lorempixel.com/1400/560/" alt="Image">
<div class="slider-controls">
<a href="#" class="slider-control-left">
<i class="icon-2x icon-angle-left"></i>
</a>
<a href="#" class="slider-control-right">
<i class="icon-2x icon-angle-right"></i>
</a>
</div>
</section>
<section class="blank">
<div class="progress-bar">
<div class="progress-bar-30">
Loading (30%)
</div>
</div>
</section>
<section class="blank">
<div class="progress-bar progress-bar-small">
<div class="progress-bar-30">
</div>
</div>
</section>
<section class="blank">
<div class="pricing">
</div>
</section>
<section class="blank">
<div class="progress-steps">
</div>
</section>
<section>
<h1>Simple Title</h1>
<h2>This is a simple subtitle</h2>
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown. Doc, you gotta help me. you were the only one who knows how your time machine works.</p>
<img src="http://lorempixel.com/1180/450/" alt="Image">
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown. Doc, you gotta help me. you were the only one who knows how your time machine works.</p>
<a href="#" class="button-read-more">Read more »</a>
</section>
<div class="container signup">
<form>
<h1>Sign up for Flatby</h1>
<hr>
<label>
<h2>Your email:</h2>
<input type="text" class="long">
</label>
<label>
<h2>Choose your password</h2>
<input type="password" class="long">
</label>
<label>
<h2>Repeat your password</h2>
<input type="password" class="long">
</label>
<button class="button-submit">Sign Up</button>
</form>
</div>
<div class="container login">
<form>
<h1>Log in baby</h1>
<hr>
<label>
<h2>Your username or email:</h2>
<input type="text" class="long">
</label>
<label>
<h2>And your password</h2>
<input type="password" class="long">
</label>
<button class="button-submit">Log in baby</button>
</form>
</div>
<div class="container comments">
<h1>Add a comment</h1>
<h2>You are logged in as <a href="#">Dennis</a></h2>
<div class="comment">
<h3>Posted by <a href="#">Dennis</a>, three days ago:</h3>
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown.</p>
</div>
<div class="comment">
<h3>Posted by <a href="#">Dennis</a>, three days ago:</h3>
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown.</p>
</div>
<div class="comment-submit">
<form>
<label>
<h2>Say it like you mean it:</h2>
<textarea class="long"></textarea>
</label>
<button class="button-submit">Say it like you mean it</button>
</form>
</div>
</div>
<div class="container blank">
<article>
<h1>Simple Title</h1>
<h2>This is a simple subtitle</h2>
<img src="http://lorempixel.com/500/250/" alt="Image">
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown. Doc, you gotta help me. you were the only one who knows how your time machine works.</p>
<a href="#" class="button-read-more">Read more »</a>
</article>
<article>
<h1>Simple Title</h1>
<h2>This is a simple subtitle</h2>
<img src="http://lorempixel.com/500/250/" alt="Image">
<p>What the hell is this? Get out of town, I didn't know you did anything creative. Ah, let me read some. Yeah, but you're uh, you're so, you're so thin. Hey Biff, check out this guy's life preserver, dork thinks he's gonna drown. Doc, you gotta help me. you were the only one who knows how your time machine works.</p>
<a href="#" class="button-read-more">Read more »</a>
</article>
<div class="clear"></div>
</div>
</body>
</html>
@import "compass/css3";
@import "compass/reset";
@import "compass/css3";
$text-shadow : 1px 1px 1px rgba(0, 0, 0, 0.2);
$main-background: #edeae9;
$dark-background: #444;
$primary-text-color: #707070;
$secondary-text-color: #838383;
// TO-DO
// Unifiy all the list/nav crap
// Proper color schemes
// Tooltips
body {
font-family: "Open Sans", helvetica, arial, sans-serif;
font-weight: 100;
background: $main-background;
color: $primary-text-color;
line-height: 1.75em;
}
h1, h2, h3 {
margin-bottom: 12px;
}
h1 {
font-size: 2.2em;
line-height: 1em;
}
h2 {
font-size: 1.5em;
}
a {
color: inherit;
}
p {
margin-bottom: 12px;
}
strong {// im not sure why this is #fff
font-weight: 500;
color: #fff;
}
.clear {
clear: both;
width: 1px;
height: 1px;
}
.lefty {
float: left;
}
img.lefty {
margin-right: 12px;
}
.righty {
float: right;
}
img.righty {
margin-left: 12px;
}
//
// Generic Structure Styles
//
section, article, .container {
@include box-sizing(border-box);
padding: 2em;
background: #fff;
border-radius: 4px;
position: relative;
article {
float: left;
width: 50%;
}
&.blank {
padding: 0;
background: none;
}
&.wide {
@include box-sizing(border-box);
max-width: 100%;
> div {
@include box-sizing(border-box);
width: 100%;
}
}
&.blurb {
text-align: center;
background: #252525;
background-image: linear-gradient(top, rgb(68,68,68) 0%, rgb(36,36,36) 100%);
background-image: -o-linear-gradient(top, rgb(68,68,68) 0%, rgb(36,36,36) 100%);
background-image: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(36,36,36) 100%);
background-image: -webkit-linear-gradient(top, rgb(68,68,68) 0%, rgb(36,36,36) 100%);
background-image: -ms-linear-gradient(top, rgb(68,68,68) 0%, rgb(36,36,36) 100%);
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgb(68,68,68)),
color-stop(1, rgb(36,36,36))
);
color: #f0f0f0;
> div {
padding: 3em 3em;
}
h1, h2, p {
text-shadow: $text-shadow;
}
h1 {
font-weight: 100;
font-size: 6em;
opacity: 1;
text-transform: uppercase;
letter-spacing: 0.2em;
}
h2 {
margin-bottom: 0.3em;
font-size: 1.2em;
text-transform: uppercase;
letter-spacing: 0.2em;
color: #949494;
}
p {
margin-bottom: 0;
font-size: 1em;
color: #949494;
}
}
img {
max-width: 100%;
}
p {
&.last-child {
}
}
}
body > section, body > header, body > footer, .container {
max-width: 1180px;
margin: 0 auto;
margin-bottom: 20px;
}
//
// Site Navigation (menu, breadcrumbs, tabs, dropdowns)
//
nav {
&.navigation {
background: $dark-background;
margin-top: 2em;
border-radius: 4px;
> ul {
list-style: none;
margin: 0;
padding: 0;
> li {
display: inline;
border: 0;
padding: 0;
&.lefty {
float: right;
}
> a {
color: #cecece;
display: block;
font-weight: 500;
text-shadow: none;
float: left;
background: inherit;
padding: 1em 1.5em;
text-decoration: none;
&:hover {
background: rgba(255, 255, 255, 0.2);
}
&.focus {
background: rgba(255, 255, 255, 0.2);
padding: 1em 1.8em;
}
&.navigation-home {
&:hover {
background: #00986a;
color: #fff;
}
}
&.navigation-settings {
&:hover {
background: #00986a;
color: #fff;
}
}
&.navigation-user {
&:hover {
background: #00986a;
color: #fff;
}
}
}
}
}
}
&.tabs {
background: none;
ul {
li {
a {
color: inherit;
border: 1px solid rgba(0, 0, 0, 0.0);
border-bottom: 1px solid #cecece;
&.active {
border: 1px solid #cecece;
border-bottom: 1px solid rgba(0, 0, 0, 0.0);
margin-right: -1px;
}
&:hover {
background: rgba(0, 0, 0, 0.1);
}
}
}
}
}
&.breadcrumbs {
padding-left: 1em;
font-size: 0.85em;
color: $secondary-text-color;
ul {
li {
display: inline;
&:last-child {
font-weight: 500;
color: $dark-background;
}
a {
display: inline;
float: none;
text-decoration: none;
color: inherit;
&:hover {
color: $dark-background;
}
}
i {
position: relative;
margin-left: 4px;
margin-right: 4px;
}
}
}
}
}
ul.dropdown {
display: inline-block;
border-radius: 4px;
background: $dark-background;
color: #fff;
min-width: 350px;
&:before {
content: ' ';
display: block;
background: none;
width: 1px;
height: 1px;
position: absolute;
left: 20px;
top: -10px;
border: 5px solid rgba(0, 0, 0, 0.0);
border-bottom: 5px solid $dark-background;
}
li {
a {
display: block;
padding: 0.75em 1em;
border-bottom: 1px solid #595959;
text-decoration: none;
color: #cecece;
&:hover {
background: rgba(0, 0, 0, 0.2);
}
}
&:last-child {
a {
border-bottom: 0;
}
}
}
}
//
// Buttons & Forms
//
.button, input[type="button"], button {
@include box-sizing(border-box);
background: $dark-background;
padding: 1em 3em;
margin: 0;
text-decoration: none;
color: #fff;
border: 0px;
font-size: 1em;
font-family: "Open Sans", helvetica, arial, sans-serif;
cursor: pointer;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
position: relative;
display: inline-block;
transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
&:hover {
background: #000;
}
&.button-and-icon {
padding-left: 6.5em;
div {
background: rgba(0, 0, 0, 0.2);
display: inline-block;
padding: 1em 1.4em;
position: absolute;
top: 0px;
left: 0px;
}
}
&.button-small {
padding: 0.5em 1.5em;
font-size: 0.8em;
font-weight: 500;
}
&.button-submit {
background: #00986a;
&:hover {
background: #000;
}
}
&.button-cancel {
background: #a1a1a1;
&:hover {
background: #000;
}
}
&.button-delete {
background: #d74518;
&:hover {
background: #000;
}
}
&.button-adjacent {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
&.button-cta {
display: inline-block;
font-size: 1.3em;
background: $dark-background;
margin-top: 1em;
padding: 1em 4em;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 0.2em;
&:hover {
background: #000;
}
}
&.button-buy {
display: inline-block;
width: 100%;
text-align: center;
font-weight: 500;
text-transform: uppercase;
margin-top: 1em;
&:hover {
background: #000;
}
}
.notification {
position: absolute;
right: 0px;
top: 0px;
font-size: 0.75em;
line-height: 1em;
background: #e27066;
display: block;
padding: 0.5em;
color: #fff;
}
}
label {
display: block;
margin-bottom: 1em;
h2 {
font-size: 1em;
margin: 0;
margin-bottom: 0.2em;
}
}
form {
h1 {
margin-left: 14px;
}
label {
margin-left: 14px;
}
}
input[type="text"], input[type="password"], textarea {
background: #f6f6f6;
border: 0;
font-family: "Open Sans", helvetica, arial, sans-serif;
padding: 1em 1.3em;
margin: 0;
margin-left: -14px;
font-weight: 100;
font-size: 1em;
&.long {
width: 350px;
}
&.button-adjacent {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
}
textarea {
width: 400px;
height: 180px;
&.long {
width: 600px;
}
}
hr {
width: 100%;
height: 1px;
background: #8d8d8d;
margin-top: 1em;
margin-bottom: 1em;
border: 0px;
opacity: 0.2;
}
//
// Generic site elements (items, featured items, sliders, )
//
.item {
@include box-sizing(border-box);
border-radius: 4px;
width: 33%;
background: #fff;
.item-info {
padding: 1em 2em;
padding-bottom: 2em;
}
h1 {
font-size: 1.5em;
font-weight: 500;
}
p {
font-size: 0.9em;
color: #7d7d7d;
}
img {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
}
.item-featured {
@include box-sizing(border-box);
border-radius: 4px;
background: #fff;
.item-info {
padding: 2em;
.button-buy {
width: auto;
margin-left: -10px;
}
}
img {
width: 50%;
float: left;
margin-right: 2em;
border-radius: 0px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
}
.price {
display: block;
font-size: 1.4em;
font-weight: 500;
}
.slider {
text-align: center;
position: relative;
height: 450px;
overflow: hidden;
img {
max-width: 100%;
width: 100%;
width: auto;
position: absolute;
left: 0px;
top: 0px;
z-index: 100;
}
* {
position: relative;
z-index: 101;
}
h1 {
font-weight: 500;
color: #fff;
font-size: 4em;
margin-top: 100px;
}
h2 {
color: #fff;
}
.slider-controls {
position: absolute;
top: 45%;
width: 100%;
z-index: 101;
a {
text-decoration: none;
position: absolute;
display: block;
width: 40px;
height: 40px;
background: rgba(0, 0, 0, 0.3);
text-align: center;
color: #fff;
i {
position: relative;
top: 4px;
opacity: 0.8;
}
&.slider-control-left {
left: 0px;
}
&.slider-control-right {
right: 0px;
}
}
}
}
.progress-bar {
@include box-sizing(border-box);
background: #cecece;
color: #fff;
font-weight: 500;
text-shadow: $text-shadow;
.progress-bar-30 {
background: #6ea164;
padding: 1em;
width: 30%;
}
&.progress-bar-small {
> div {
padding: 0.2em 1em;
}
}
}
.item-header {
color: #fff;
font-weight: 500;
display: block;
text-align: center;
background: $dark-background;
font-size: 1.3em;
padding: 1em;
letter-spacing: 2px;
margin: 0;
text-decoration: none;
}
.comments {
h1, h2 {// Going to have to switch this to something i can @extend
margin-left: 14px;
}
h1 {
margin-bottom: 0.1em;
}
h2 {
font-size: 1em;
}
form {
h2 {
margin-left: 0px;
}
textarea {
height: 80px;
}
}
.comment {
h3 {
font-weight: 500;
margin-bottom: 0;
}
p {
font-size: 0.9em;
}
padding: 1.5em;
border: 1px solid #e8e8e8;
margin-bottom: 1em;
}
}
.item-footer {
@extend h1;
@extend .item-header;
font-size: 1em;
&.green {
background: #00986a;
}
}
.activity {
@include box-sizing(border-box);
background: $dark-background;
width: 300px;
.activity-list-update {
padding: 6px;
color: #e0e0e0;
font-size: 0.9em;
border-top: 1px solid #5a5a5a;
line-height: 1.3em;
&:hover {
background: rgba(0, 0, 0, 0.1);
}
}
h1 {
}
p {
position: relative;
top: 1em;
}
h2 {
font-size: 1em;
font-weight: 500;
opacity: 0.5;
}
img {
float: left;
margin: 10px;
}
}
//
// Presentation styles for flatby
//
section.flatby {
@extend .blurb;
border-radius: 0px;
background: none;
background-repeat: no-repeat;
background-position: center 40px;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABrCAYAAACBtCeBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY1RTEyMEU1MENCNjExRTM5NkJEQTQxNTIxOEMzMkVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY1RTEyMEU2MENCNjExRTM5NkJEQTQxNTIxOEMzMkVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RjVFMTIwRTMwQ0I2MTFFMzk2QkRBNDE1MjE4QzMyRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RjVFMTIwRTQwQ0I2MTFFMzk2QkRBNDE1MjE4QzMyRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4+pJRhAAAGzklEQVR42uzdXUwcRRwA8NnZux4UodQqKRaSCoWoSKwKpWgbjKlpbTVWI33AWBLTB42ND348+MJDX3zw48U2QtI0tkl90EYLqf2ItX60lpqSihIsQSA1gFdrEQrh4772nFn2LleEu91jZ+Y/3PyTyXG7szO7+7vdmdnbW7TJpgYkeeSRVGT9PUTSuMwbgyVe70aS2kkaJanbSqPWNDpPVyB8Yo210z8laeOcbcDWNDrvopVXgTCMMpIukbTBRt4NVt4yBcIO47uE9sJOFFnLlCkQNhjpnILWyISClziGdCg4AzCkQsEZgiENCs4gDClQcIZhgEfBGYgBGgVnKMZclHIFIh4jEeUcFBSc4RjgULDCgIWCFQYsFKwwYKGIACkHjCEcBQvAOIfk+OJICApWGLBQsMKAhYIVBiwUrDBgoWCFAQsFKwxYKFhhwELBCgMWClYYsFCwwoCFghUGLBSsMGChYIUBCwUrDFgoHhkxtOV5CBeVI21lAdLy74pPj47dRNHRG8gY6kXRqXEIKE+S1MsSRBgGLr4PeR55gryuQ/juwpT5jX/8yBjsQ+Er35PXHmlQNAe/MRSCoZdXIW/dc+SIKEm7DGNoAIV+aEWR3g4RMMNOUOyCcMegpyXvUw3kqNjsWpnhK+dRsLUZNAqGiuF7pclVDPP8TMrL2vuBWT7Uhh5DxbDTTqTVFpFyaflQUTC0NsP30jvMMG5DIfVA7BJjSBjerbsX1Xg7QiH1eOrqwaFgKBj0FOJ5tI7rnvE+vk3EqSspCoYyzvBs3ok0XxbfASapj9YLaUSfODCkv+n+VtQI3PNgjaP80fExFLrwNYp0XTBH5fSTrlduQt5NO5CWl++o3tCZIyJR6D6vRbPPaYkfIfS5IMeQsx/luzoKd7ITI/3daPrD11H455PxSyT0lb6f+eRdc77to4TUS+sXGEXWvtcTQV4mqUbUGuGSSvtHRmAGBY/tX3g+gaHzaT4W9TOKGssgDvKqyLXB+avsHx3dl1NeOKTzaT4W9TOMN2IgK0iqFgpSYL/Zily76mo+p/UzjPUk5WPrHCbPQ2imJ93NByc02sjL97ys7Bx38wELbHW3DJErYdwYtp1XX3u/q/mc1s8woiQNU5BbJF0WCjI2Yh+kojrl6Nock1RUM6mfYXSSNGaessYDoUNCQQa6HI2ul724NykGne9k1O+kflZBDJrj3d7allOtwYjxmzCQwR5z5G37KCmtQNlvHUCemu3xo8W8FkbeZ732njnfyYhf0Fe88SD7vmtjy8m2WMtOUVZ/9HRV8Z6qsq90TSsUsVL0Sq/3sa3c6w1dPCPy0gmKRKP+gx1/PP/mqY5B8vY6jh0ldMLnXdd2kQx/i1ix8PnjjkbXrrSipD5ar0CM63SfWxjmGUu3QMw+YlvP0GjpnbnfPFCQvwNr2h18P6oBsiY+pN/L77pS6McTyOj7RSRG/Z7j7QMJkydjDxuO7/wElO28UYw/f0d62cNIy1vJfof0d6NQWwskDBoTeLKpgY5BgolTaUa6AF2Q98oGjr5v3lPFFJ6Un+wCpSCMELWIjdSn5i4oCoVeGAwc2scMhZZLyxdxZ2MSDPN0Fe/2EhkKEoKEMrP/bfM+Klc7DqQ8Wi5AjJBlcNs3hv+SRG+U1eeikJf6XZVrvyBd4tVc++etzShytcOVOxeDp48KG2+kwIhY+352PJV452LOvs8o0Co0z38WOLiztkQESizSvbc39NMJFL05JLprmwxjhBiE5wWBjpJ4eQT43e9pYcwLIgsK9EgHI96o/6+5n804Yi0IoqHPBIwFQRSKGIykIAqFP0ZKEIXCF8MWiELhh2EbRKHwwXAEolDYYzgGUShsMdICUSjsMNIGyWQUlhiLAslEFNYYiwbJJBQeGK6AZAIKLwzXQJYyCk8MV0GWIgpvDNdBlhKKCAwmIEsBRRQGMxCZUURiMAWREUU0BnMQmVAgYHABkQEFCgY3EMgokDC4gkBEgYbBHQQSCkQMISAQUKBiCAMRiQIZQyiICBToGMJBeKLIgAEChAeKLBhgQFiiyIQBCsQBit8Bhl8mDHAgdlA+bu95JhgxOlOVQ/McuNTzrEwYNJz8dwSukexHQ4W52frpxi0vFK/IafTp+KGED5YRiBi/Dt6aPLzt8Nkv/RPTEZkwQIOkQonF7vWluVvWFd5D/z7b5//rSGf/RLKzGGQM8CB2Uew2KdAxTBAkRywWJWK1S2HoG6pLAkIf/xEgKSuNjog0GDKBpIsiFYZsIDEU+lAtn411Dy3UfVZtCJtYbqVlc4cgaPZhOlMybpTMIImDW5xwBBkyb8x/AgwAIuAuklffvs8AAAAASUVORK5CYII=);
h1 {
font-size: 1.3em;
color: #727272;
text-shadow: none;
font-weight: 100;
margin-top: 140px;
text-transform: none;
letter-spacing: 0px;
span {
font-weight: 500;
}
}
h2 {
font-size: 0.9em;
letter-spacing: 0px;
font-weight: 500;
font-weight: 100;
text-shadow: none;
text-transform: none;
a {
font-weight: 500;
}
}
hr {
margin-top: 80px;
}
}
Also see: Tab Triggers