Skip to content

Commit

Permalink
Remove Twitter Bootstrap CSS and add a standard normalize.
Browse files Browse the repository at this point in the history
Twitter Bootstrap was only being used as a css normalize. No need to carry all this css baggage.

Copied the few "non-normalize" parts of _bootstrap.scss into _base.scss
  • Loading branch information
willkoehler committed Aug 18, 2014
1 parent 61d7b87 commit 460ca42
Show file tree
Hide file tree
Showing 4 changed files with 445 additions and 2,102 deletions.
19 changes: 19 additions & 0 deletions _assets/stylesheets/_base.scss
@@ -1,3 +1,12 @@
// Use border-box sizing for everything.
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

body {
margin:0;
border:0;
Expand All @@ -7,6 +16,15 @@ body {
-webkit-font-smoothing:antialiased;
text-rendering:optimizelegibility;
font-size:17px;
line-height: 1.428571429;
}

img {
vertical-align: middle;
}

p {
margin: 0 0 10px;
}

.is-visible {
Expand All @@ -25,6 +43,7 @@ body {

h1, h2, h3, h4, h5 {
color:#263c4c;
line-height: 1.1;
}

h1, h2 {
Expand Down

0 comments on commit 460ca42

Please sign in to comment.