This commit is contained in:
Stephen
2014-09-30 15:57:20 -04:00
10 changed files with 99 additions and 5 deletions

View File

@@ -1,7 +1,6 @@
// ============================================================================
// Imports
// ============================================================================
/* ==========================================================================
Imports
========================================================================== */
@import
'settings'

View File

@@ -1,3 +1,6 @@
/* ==========================================================================
Base
========================================================================== */
*, *:before, *:after {
box-sizing: inherit;
}

View File

@@ -0,0 +1,3 @@
/* ==========================================================================
Fonts
========================================================================== */

View File

@@ -0,0 +1,22 @@
/* ==========================================================================
Forms
========================================================================== */
.input {
width: 100%;
display: block;
border: none;
outline: none;
color: $black;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.select {
}
.checkbox {
}

View File

@@ -1,3 +1,6 @@
/* ==========================================================================
Grid
========================================================================== */
.grid {
position: relative;
margin-left: -$margin-20;

View File

@@ -1,3 +1,6 @@
/* ==========================================================================
Headings
========================================================================== */
h1, .h1, .alpha{
font-size: $heading-1;
line-height: $heading-line-height;

View File

@@ -1,3 +1,6 @@
/* ==========================================================================
Helpers
========================================================================== */
.clearfix:before,
.clearfix:after {
content: " ";

View File

@@ -1,3 +1,6 @@
/* ==========================================================================
Trumps
========================================================================== */
.left {
float: left !important;
}
@@ -27,3 +30,52 @@
visibility: hidden !important;
opacity: 0 !important;
}
/* Accessibility
========================================================================== */
/*
* Hide visually and from screen readers: h5bp.com/u
*/
.hidden {
display: none !important;
visibility: hidden;
}
/*
* Hide only visually, but have it available for screen readers: h5bp.com/v
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/*
* Extends the .visuallyhidden class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden;
}

View File

@@ -1,3 +1,6 @@
/* ==========================================================================
Functions
========================================================================== */
@function em($px, $base: $font-size) {
@return ($px / $base) * 1em;
}

View File

@@ -0,0 +1,3 @@
/* ==========================================================================
Mixins
========================================================================== */