Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Michael Shick 2014-12-29 15:49:28 -05:00
commit c220b8598a
4 changed files with 65 additions and 44 deletions

View File

@ -6,7 +6,7 @@ Check out <http://getskeleton.com> for documentation and details.
## Getting started ## Getting started
There are a couple ways to download Skeleton: There are a couple ways to download Skeleton:
- [Download the zip](https://github.com/dhg/Skeleton/releases/download/v2.0.2/Skeleton-2.0.2.zip) - [Download the zip](https://github.com/dhg/Skeleton/releases/download/2.0.4/Skeleton-2.0.4.zip)
- Clone the repo: `git clone https://github.com/dhg/Skeleton.git` (Note: this is under active development, so if you're looking for stable and safe, use the zipped download) - Clone the repo: `git clone https://github.com/dhg/Skeleton.git` (Note: this is under active development, so if you're looking for stable and safe, use the zipped download)
@ -27,9 +27,9 @@ Skeleton/
### Why it's awesome ### Why it's awesome
Skeleton is lightweight and simple. It styles only raw HTML elements (with a few exceptions) and provides a responsive grid. Nothing more. Skeleton is lightweight and simple. It styles only raw HTML elements (with a few exceptions) and provides a responsive grid. Nothing more.
- Around 400 lines of CSS unminified and with comments - Around 400 lines of CSS unminified and with comments
- It's a starting point, not a UI framework - It's a starting point, not a UI framework
- No compiling or installing...just vanilla CSS - No compiling or installing...just vanilla CSS
@ -53,7 +53,7 @@ All parts of Skeleton are free to use and abuse under the [open-source MIT licen
The following are extensions to Skeleton built by the community. They are not officially supported, but all have been tested and are compatible with v2.0 (exact release noted): The following are extensions to Skeleton built by the community. They are not officially supported, but all have been tested and are compatible with v2.0 (exact release noted):
- [Skeleton on LESS](https://github.com/whatsnewsaes/Skeleton-less): Skeleton built with LESS for easier replacement of grid, color, and media queries. (Last update was to match v2.0.1) - [Skeleton on LESS](https://github.com/whatsnewsaes/Skeleton-less): Skeleton built with LESS for easier replacement of grid, color, and media queries. (Last update was to match v2.0.1)
- [Skeleton on SASS](https://github.com/whatsnewsaes/Skeleton-Sass): Skeleton built with SASS for easier replacement of grid, color, and media queries. (Last update was to match v2.0.1) - [Skeleton on Sass](https://github.com/whatsnewsaes/Skeleton-Sass): Skeleton built with Sass for easier replacement of grid, color, and media queries. (Last update was to match v2.0.1)
Have an extension you want to see here? Just shoot an email to hi@getskeleton.com with your extension! Have an extension you want to see here? Just shoot an email to hi@getskeleton.com with your extension!
@ -65,4 +65,4 @@ Skeleton was built using [Sublime Text 3](http://www.sublimetext.com/3) and desi
## Acknowledgement ## Acknowledgement
Skeleton was created by [Dave Gamache](https://twitter.com/dhg) for a better web. Skeleton was created by [Dave Gamache](https://twitter.com/dhg) for a better web.

21
bower.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "skeleton",
"version": "2.0.4",
"homepage": "http://getskeleton.com/",
"repository": {
"type": "git",
"url": "https://github.com/dhg/Skeleton"
},
"authors": [
"Dave Gamache <hello@davegamache.com> (http://davegamache.com/)"
],
"description": "Skeleton is a dead-simple, responsive boilerplate to kickstart any responsive project.",
"main": "css/skeleton.css",
"keywords": [
"css",
"skeleton",
"responsive",
"boilerplate"
],
"license": "MIT"
}

74
css/skeleton.css vendored
View File

@ -1,15 +1,15 @@
/* /*
* Skeleton V2.0.2 * Skeleton V2.0.4
* Copyright 2014, Dave Gamache * Copyright 2014, Dave Gamache
* www.getskeleton.com * www.getskeleton.com
* Free to use under the MIT license. * Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php * http://www.opensource.org/licenses/mit-license.php
* 12/15/2014 * 12/29/2014
*/ */
/* Table of contents /* Table of contents
- Grid - Grid
- Base Styles - Base Styles
- Typography - Typography
@ -29,16 +29,16 @@
/* Grid /* Grid
*/ */
.container { .container {
position: relative; position: relative;
width: 100%; width: 100%;
max-width: 960px; max-width: 960px;
margin: 0 auto; margin: 0 auto;
padding: 0 20px; padding: 0 20px;
box-sizing: border-box; } box-sizing: border-box; }
.column, .column,
.columns { .columns {
width: 100%; width: 100%;
float: left; float: left;
box-sizing: border-box; } box-sizing: border-box; }
/* For devices larger than 400px */ /* For devices larger than 400px */
@ -55,10 +55,10 @@
.column, .column,
.columns { .columns {
margin-left: 4%; } margin-left: 4%; }
.column:first-child, .column:first-child,
.columns:first-child { .columns:first-child {
margin-left: 0; } margin-left: 0; }
.one.column, .one.column,
.one.columns { width: 4.66666666667%; } .one.columns { width: 4.66666666667%; }
.two.columns { width: 13.3333333333%; } .two.columns { width: 13.3333333333%; }
@ -116,10 +116,10 @@
/* Base Styles /* Base Styles
*/ */
/* NOTE /* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */ are based on 10px sizing. So basically 1.5rem = 15px :) */
html { html {
font-size: 62.5%; } font-size: 62.5%; }
body { body {
font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */ font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
line-height: 1.6; line-height: 1.6;
@ -130,7 +130,7 @@ body {
/* Typography /* Typography
*/ */
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
margin-top: 0; margin-top: 0;
margin-bottom: 2rem; margin-bottom: 2rem;
font-weight: 300; } font-weight: 300; }
@ -157,13 +157,13 @@ p {
/* Links /* Links
*/ */
a { a {
color: #1EAEDB; } color: #1EAEDB; }
a:hover { a:hover {
color: #0FA0CE; } color: #0FA0CE; }
/* Buttons /* Buttons
*/ */
.button, .button,
button, button,
@ -179,7 +179,7 @@ input[type="button"] {
font-weight: 600; font-weight: 600;
line-height: 38px; line-height: 38px;
letter-spacing: .1rem; letter-spacing: .1rem;
text-transform: uppercase; text-transform: uppercase;
text-decoration: none; text-decoration: none;
white-space: nowrap; white-space: nowrap;
background-color: transparent; background-color: transparent;
@ -226,6 +226,7 @@ input[type="button"].button-primary:focus {
/* Forms /* Forms
*/ */
input[type="email"], input[type="email"],
input[type="number"],
input[type="search"], input[type="search"],
input[type="text"], input[type="text"],
input[type="tel"], input[type="tel"],
@ -240,8 +241,9 @@ select {
border-radius: 4px; border-radius: 4px;
box-shadow: none; box-shadow: none;
box-sizing: border-box; } box-sizing: border-box; }
/* Removes awkard default styles on some inputs for iOS */ /* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="email"],
input[type="number"],
input[type="search"], input[type="search"],
input[type="text"], input[type="text"],
input[type="tel"], input[type="tel"],
@ -256,6 +258,7 @@ textarea {
padding-top: 6px; padding-top: 6px;
padding-bottom: 6px; } padding-bottom: 6px; }
input[type="email"]:focus, input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus, input[type="search"]:focus,
input[type="text"]:focus, input[type="text"]:focus,
input[type="tel"]:focus, input[type="tel"]:focus,
@ -284,18 +287,18 @@ label > .label-body {
/* Lists /* Lists
*/ */
ul { ul {
list-style: circle inside; } list-style: circle inside; }
ol { ol {
list-style: decimal inside; } list-style: decimal inside; }
ol, ul { ol, ul {
padding-left: 0; padding-left: 0;
margin-top: 0; } margin-top: 0; }
ul ul, ul ul,
ul ol, ul ol,
ol ol, ol ol,
ol ul { ol ul {
margin: 1.5rem 0 1.5rem 3rem; margin: 1.5rem 0 1.5rem 3rem;
font-size: 90%; } font-size: 90%; }
li { li {
margin-bottom: 1rem; } margin-bottom: 1rem; }
@ -344,7 +347,6 @@ fieldset {
margin-bottom: 1.5rem; } margin-bottom: 1.5rem; }
pre, pre,
blockquote, blockquote,
form,
dl, dl,
figure, figure,
table, table,
@ -353,8 +355,6 @@ ul,
ol, ol,
form { form {
margin-bottom: 2.5rem; } margin-bottom: 2.5rem; }
p {
margin-top: 0; }
/* Utilities /* Utilities
@ -378,7 +378,7 @@ hr {
margin-bottom: 3.5rem; margin-bottom: 3.5rem;
border-width: 0; border-width: 0;
border-top: 1px solid #E1E1E1; } border-top: 1px solid #E1E1E1; }
/* Clearing /* Clearing
*/ */
@ -386,7 +386,7 @@ hr {
/* Self Clearing Goodness */ /* Self Clearing Goodness */
.container:after, .container:after,
.row:after, .row:after,
.u-cf { .u-cf {
content: ""; content: "";
display: table; display: table;
clear: both; } clear: both; }
@ -395,10 +395,10 @@ hr {
/* Media Queries /* Media Queries
*/ */
/* /*
Note: The best way to structure the use of media queries is to create the queries Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it on small devices, paste the mobile query code up in the buttons section and style it
there. there.
*/ */

View File

@ -15,7 +15,7 @@
<!-- FONT <!-- FONT
--> -->
<link href='//fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'> <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS <!-- CSS
--> -->
@ -24,7 +24,7 @@
<!-- Favicon <!-- Favicon
--> -->
<link rel="icon" type="image/png" href="images/favicon.png" /> <link rel="icon" type="image/png" href="images/favicon.png">
</head> </head>
<body> <body>