This project is not maintained (as you might notice). Bootstrap and HTML5 Boilerplate have moved on considerably from where this stopped tracking them. It is simply left here for what it's worth.
All the credit goes to the Twitter Bootstrap and HTML5 Boilerplate guys and gals as well as @visionmedia for nib.
If you haven't already, go read about Twitter Bootstrap and HTML5 Boilerplate.
This project only uses the css portion of HTML5 Boilerplate. Since both Twitter Bootstrap 2.0 and HTML5 Boilerplate include/are based on normalize.css, there is a lot of overlap, but Bootstrap does not include everything. I have included here only the parts of HTML5 Boilerplate that I saw were missing in Bootstrap.
This project also now includes a customized version of nib so all the goodness of nib is automatically available for your custom styles. The reason it is a customized version is to bring its output more in line with Twitter Bootstrap's output. Everything still works the same, only some of the vendor
mixins now only output for the vendors that have actually implemented those prefixed styles.
Below used to be a list of everything you should see if you do a diff on the outputted bootstrap.css and the official version. Since updating to use nib
, this is not entirely accurate, but it will give you an idea of the differences. Most of the changes in the css make no semantic difference, although some do.
- Stylus stacks multiple selectors instead of placing them on one line:
- Instead of
audio, canvas, video
on one line, you get them on three lines.
- Instead of
- Stylus minimizes the length of colors, so it outputs #333 instead of #333333.
- Stylus only has 2 decimal precision so where the official css has 0.075, Stylus outputs 0.07 and for 0.025, stylus outputs 0.03 (why it rounds up in one place and not in another is a mystery to me). It also adds an extraneous 0 when only one decimal place is need (0.2 is output as 0.20).
- Stylus adds quotations marks around
url
, sobackground-image: url(../img/glyphicons-halflings.png)
becomesbackground-image: url("../img/glyphicons-halflings.png")
- Stylus removes spaces between values in
rgba
, sorgba(0, 0, 0, 0.2)
becomesrgba(0,0,0,0.20)
. - Stylus automatically adds vendor prefixes, which corrected an error in the official Less version where in
.dropdown-menu
,-moz-background-clip
was set topadding
instead ofpadding-box
. - Stylus enables calling mixins transparently (e.g.
opacity: 1
is the same asopacity(1)
if there is a mixin namedopacity
). In the official Less files, there is a mixin namedopacity
but they did not use it everywhere they set opacity. So in the output from Stylus, you will see an additionalfilter: alpha(opacity=0)
or similar in some places. - On
.alert
, the border color is slightly different due to a difference in thespin
function in Stylus vs. the one on Less. so it outputs as#fbefd5
instead of#fbeed5
. I decided the difference was not great enough to warrent trying to rewrite thespin
function. - Apparently, my
darken
function for Less compatability is not perfect, because.btn-navbar:active...
hasbackground-color: #090909
instead of#080808
. - @keyframes is handled differently in Stylus. It changes
from
to0%
andto
to100%
which they claim is the official syntax (I haven't checked). It also adds vendor prefixes for Opera and IE. I assume due to a bug, these are all output at the end of renderingprogress-bars.styl
. This should not change the semantics at all. - I added
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity)
to theopacity
mixin to support IE8 (http://www.quirksmode.org/css/opacity.html).
And that's it! I have included the rendered css files so you can run your own diff and check, if you like before you try using this.
The official minimized bootstrap.min.css is 71.5kb while the minimized version from Stylus is 69.8kb. This is due to leaving off the final semicolon in style definitions (although sometimes it is there?), removing the spaces in rgba
and using the short form of hex colors.
First, you need to get Stylus. This requires node.js to be installed on your system.
$ npm install stylus
Next, download the project.
$ git clone https://github.com/flowonyx/bootstrap-h5bp-stylus.git
$ cd bootstrap-h5bp-stylus
$ stylus style.styl
This will produce style.css which includes Twitter Bootstrap, including the responsive part, the missing HTML5 Boilerplate styles, and any custom styles you put in custom.styl and custom-responsive.styl.
$ stylus bootstrap.styl
This will produce bootstrap.css which is equivalent to Twitter Bootstrap's bootstrap.css + any custom styles you put in custom.styl and custom-responsive.styl.
$ stylus bootstrap-responsive.styl
This will produce bootstrap-responsive.css which is equivalent to Twitter Bootstrap's bootstrap-responsive.css.
$ stylus responsive.styl
This will produce responsive.styl which is equivalent to Twitter Bootstrap's bootstrap.css + bootstrap-responsive.css + any custom styles you put in custom.styl and custom-responsive.styl.
To get Stylus to produce the same output as Less (in other words, to get the same colors from color manipulation functions), I had to write some custom mixins for Stylus that followed the same algorithms as Less. These are in the less-compat.styl file.
All the HTML5 Boilerplate code is broken into their respective parts (each file begins with h5bp-) to make it easy if you want to remove part of it that you know you don't need. Just comment out that @import in style.styl.
I certainly hope this is helpful to somebody. It was an interesting exercise and now I'm looking forward to using it in my own projects.
Anything added/changed, etc. which does not fall under the licensing of HTML5 Boilerplate or Twitter Bootstrap 2.0.1 is released to the Public Domain.
The parts included here are released to the Public Domain.
Copyright 2012 Twitter, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
From the Twitter Bootstrap 2.0.1 docs:
Glyphicons has granted us use of the Halflings set in our open-source toolkit so long as we provide a link and credit here in the docs. Please consider doing the same in your projects.