diff options
| author | Mark Otto <[email protected]> | 2012-12-10 09:57:23 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-10 09:57:23 -0800 |
| commit | ab5d7f863c2b2e7c6fc9ae48ddaea405aa153629 (patch) | |
| tree | d1204ef849393ae7234e918650758f88cbda5e2b | |
| parent | 9f29785783e58a7ffc6f8779c2ae55edebd54ba2 (diff) | |
| download | bootstrap-ab5d7f863c2b2e7c6fc9ae48ddaea405aa153629.tar.xz bootstrap-ab5d7f863c2b2e7c6fc9ae48ddaea405aa153629.zip | |
move reset after vars and mixins
| -rw-r--r-- | docs/assets/css/bootstrap.css | 64 | ||||
| -rw-r--r-- | less/bootstrap.less | 6 |
2 files changed, 35 insertions, 35 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 8ab3cefcf..53f3a8cb1 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -8,6 +8,38 @@ * Designed and built with all the love in the world @twitter by @mdo and @fat. */ +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + line-height: 0; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 30px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + article, aside, details, @@ -189,38 +221,6 @@ textarea { } } -.clearfix { - *zoom: 1; -} - -.clearfix:before, -.clearfix:after { - display: table; - line-height: 0; - content: ""; -} - -.clearfix:after { - clear: both; -} - -.hide-text { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.input-block-level { - display: block; - width: 100%; - min-height: 30px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; diff --git a/less/bootstrap.less b/less/bootstrap.less index bc6ea1931..122910afd 100644 --- a/less/bootstrap.less +++ b/less/bootstrap.less @@ -8,13 +8,13 @@ * Designed and built with all the love in the world @twitter by @mdo and @fat. */ -// CSS Reset -@import "reset.less"; - // Core variables and mixins @import "variables.less"; // Modify this for custom colors, font-sizes, etc @import "mixins.less"; +// CSS Reset +@import "reset.less"; + // Grid system and page structure @import "scaffolding.less"; @import "grid.less"; |
