recleaned all of the code and formatting to be BEAUTIFUL
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
* Skeleton V1.0
|
||||
* Created by Dave Gamache
|
||||
* www.skeleton.gs
|
||||
* 4/30/2011
|
||||
* 5/15/2011
|
||||
*/
|
||||
|
||||
|
||||
@ -17,7 +17,8 @@
|
||||
#Images
|
||||
#Buttons
|
||||
#Tabs
|
||||
#Forms */
|
||||
#Forms
|
||||
#Misc */
|
||||
|
||||
|
||||
/* #Reset & Basics (Inspired by E. Meyers)
|
||||
@ -240,16 +241,6 @@
|
||||
clear: both; }
|
||||
ul.tabs {
|
||||
zoom: 1; }
|
||||
|
||||
/* Sample Markup
|
||||
<ul class="tabs">
|
||||
<li><a class="active" href="#info1"></a></li>
|
||||
<li><a href="#info2"></a></li>
|
||||
</ul>
|
||||
<ul class="tabs-content">
|
||||
<li class="active" id="info1"></li>
|
||||
<li id="info2"></li>
|
||||
</ul> */
|
||||
|
||||
|
||||
/* #Forms
|
||||
|
@ -2,22 +2,23 @@
|
||||
* Skeleton V1.0
|
||||
* Created by Dave Gamache
|
||||
* www.skeleton.gs
|
||||
* 4/30/2011
|
||||
* 5/15/2011
|
||||
*/
|
||||
|
||||
/* Table of Content
|
||||
==================================================
|
||||
#Site Styles
|
||||
#Page Styles
|
||||
#Media Queries */
|
||||
#Media Queries
|
||||
#Font-Face */
|
||||
|
||||
/* Site Styles
|
||||
/* #Site Styles
|
||||
================================================== */
|
||||
|
||||
/* Page Styles
|
||||
/* #Page Styles
|
||||
================================================== */
|
||||
|
||||
/* Media Queries
|
||||
/* #Media Queries
|
||||
================================================== */
|
||||
|
||||
/* iPad Portrait/Browser */
|
||||
@ -39,4 +40,23 @@
|
||||
@media only screen and (max-width: 767px) and (max-device-width: 1000px) {}
|
||||
|
||||
/* Mobile Landscape Only */
|
||||
@media only screen and (min-width: 480px) and (max-width: 767px) and (max-device-width: 1000px) {}
|
||||
@media only screen and (min-width: 480px) and (max-width: 767px) and (max-device-width: 1000px) {}
|
||||
|
||||
|
||||
/* #Font-Face
|
||||
================================================== */
|
||||
/* This is the proper syntax for an @font-face file
|
||||
Just create a "fonts" folder at the root,
|
||||
copy your FontName into code below and remove
|
||||
comment brackets */
|
||||
|
||||
/* @font-face {
|
||||
font-family: 'FontName';
|
||||
src: url('../fonts/FontName.eot');
|
||||
src: url('../fonts/FontName.eot?iefix') format('eot'),
|
||||
url('../fonts/FontName.woff') format('woff'),
|
||||
url('../fonts/FontName.ttf') format('truetype'),
|
||||
url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal; }
|
||||
*/
|
24
stylesheets/skeleton.css
vendored
24
stylesheets/skeleton.css
vendored
@ -2,17 +2,17 @@
|
||||
* Skeleton V1.0
|
||||
* Created by Dave Gamache
|
||||
* www.skeleton.gs
|
||||
* 4/30/2011
|
||||
* 5/15/2011
|
||||
*/
|
||||
|
||||
|
||||
/* Table of Content
|
||||
/* Table of Contents
|
||||
==================================================
|
||||
#Base 960 Grid
|
||||
#Mobile: iPad Portrait
|
||||
#Mobile: iPhone Portrait
|
||||
#Mobile: iPhone Landscape
|
||||
#Clearing
|
||||
#Tablet (Portrait)
|
||||
#Mobile (Portrait)
|
||||
#Mobile (Landscape)
|
||||
#Clearing */
|
||||
|
||||
|
||||
|
||||
@ -67,7 +67,7 @@
|
||||
|
||||
|
||||
|
||||
/* #Responsive: iPad Portrait
|
||||
/* #Tablet (Portrait)
|
||||
================================================== */
|
||||
|
||||
/* Note: Design for a width of 768px */
|
||||
@ -118,7 +118,7 @@
|
||||
}
|
||||
|
||||
|
||||
/* Mobile
|
||||
/* #Mobile (Portrait)
|
||||
================================================== */
|
||||
|
||||
/* Note: Design for a width of 320px */
|
||||
@ -166,7 +166,7 @@
|
||||
}
|
||||
|
||||
|
||||
/* Mobile Landscape
|
||||
/* #Mobile (Landscape)
|
||||
================================================== */
|
||||
|
||||
/* Note: Design for a width of 480px */
|
||||
@ -196,13 +196,14 @@
|
||||
}
|
||||
|
||||
|
||||
/* Clearing
|
||||
/* #Clearing
|
||||
================================================== */
|
||||
|
||||
/* Self Clearing Goodness */
|
||||
.container:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
||||
|
||||
/* Use clearfix class on parent to clear nested columns*/
|
||||
/* Use clearfix class on parent to clear nested columns,
|
||||
or wrap each row of columns in a <div class="row"> */
|
||||
.clearfix:before,
|
||||
.clearfix:after,
|
||||
.row:before,
|
||||
@ -220,6 +221,7 @@
|
||||
.clearfix {
|
||||
zoom: 1; }
|
||||
|
||||
/* You can also use a <br class="clear" /> to clear columns */
|
||||
.clear {
|
||||
clear: both;
|
||||
display: block;
|
||||
|
Reference in New Issue
Block a user