Skip to content

Commit 460ca42

Browse files
committed
Remove Twitter Bootstrap CSS and add a standard normalize.
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
1 parent 61d7b87 commit 460ca42

4 files changed

Lines changed: 445 additions & 2102 deletions

File tree

_assets/stylesheets/_base.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
// Use border-box sizing for everything.
2+
*,
3+
*:before,
4+
*:after {
5+
-webkit-box-sizing: border-box;
6+
-moz-box-sizing: border-box;
7+
box-sizing: border-box;
8+
}
9+
110
body {
211
margin:0;
312
border:0;
@@ -7,6 +16,15 @@ body {
716
-webkit-font-smoothing:antialiased;
817
text-rendering:optimizelegibility;
918
font-size:17px;
19+
line-height: 1.428571429;
20+
}
21+
22+
img {
23+
vertical-align: middle;
24+
}
25+
26+
p {
27+
margin: 0 0 10px;
1028
}
1129

1230
.is-visible {
@@ -25,6 +43,7 @@ body {
2543

2644
h1, h2, h3, h4, h5 {
2745
color:#263c4c;
46+
line-height: 1.1;
2847
}
2948

3049
h1, h2 {

0 commit comments

Comments
 (0)