evanlew / Kickstrap

A full version of bootstrap with a layer of enhancements. If you're a journalist, contact ajkochanowicz@gmail.com for an early download of the beta. Details on v.1 release here: http://adamkochanowicz.com/2012/twitter-bootstrap-like-youve-never-seen-it-before/

Home Page:http://ajkochanowicz.github.com/Kickstrap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Version 0.9.1 RC

The Gist

To do for v 1.0 stable

Kickstrap uses the latest version of Twitter's bootstrap (http://twitter.github.com/bootstrap) and adds a layer of extras to create slick web applications with themes, modern html/css standards, an icon font, and progressive enhancement through javascript.

Last updated with Bootstrap v. 2.03

The Extras

Animate.css

  • "Just add water" CSS animations.

Font Awesome + IcoMoon

  • Turns glyphicons into an icon font to use a variety of sizes and colors. Also adds a bunch of new icons from FontAwesome and IcoMoon.

HTML5 Boilerplate Goodies

Uses sample files and resources gathered and created from HTML5 Boilerplate for making great HTML5 pages. Bootstrap Extra includes a sample file ready to go for a new Bootstrap HTML5 Page.

  • Normalized, jQueryized, Doctypized html starter files.
  • Modernizr js loaded and ready to go in starter html files.
  • Ready for Google Analytics
  • Optional Google Chrome Frame prompt for users of older browsers
  • Too much to mention here. More information at H5BP Homepage

New javascript plugins

  • Chosen, a jQuery-powered library to stylize <select> boxes. (See sample.html)
  • jGrowl, a Growl-like notification system for websites.

Themes

  • Easily switch to different color schemes.
  • Support for Bootswatch themes. Easily switch between predefined theme packages.

One Line CSS Grid

  • OLCG is just a 98 byte code snippet to quickly halve or third anything.
  • (.oh = one half, ot = one third, tt = two thirds.)
  • Check out the docs to see how much this little piece of code can do.

Some IE6 Compatibility

  • I know, I know. But there are still some sites with specialized circles of clients whose users base is significantly IE6 reliant.
  • Thanks to Sharry Stowell's IE6 css/js for Bootstrap, Kickstrap will display significantly better in IE6 than plain Bootstrap.
  • Only IE7- users will download the small, additional css and js.

Quick Start

Install

  • If you're starting from scratch, simply download this repository and start working in the index.html or sample_index.html document.
  • If you already have a Bootstrap installation running, drop the /extras folder into your Bootstrap root. Drag the sample_index.html file in /extras to your Bootstrap root and /extras/css/bootstrap(.min).css wherever you have your existing bootstrap.css file. It should be linked and ready to go. (If you already have HTML files you want to use, see "Advanced Setup" below.

Pick Theme

*LESS compiler required, Windows users should do this.

  1. Open /extras/settings/themes.less and uncomment the @import line (remove the //s) of the theme you want to use.
  2. Compile.

Advanced Setup

In the future, I plan to have a customized download replace the need for "Advanced Setup".

Install

  1. If you already have html (or php, aspx...) files you want to use, drop the /extras folder in your Bootstrap root. Paste this into the head of every page you want to use Kickstrap:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="extras/html5bp/js/libs/modernizr-2.5.3.min.js"></script>

(Assuming this file is in the Bootstrap root directory. Adjust accordingly.) 2. Add the following just before the ending <body> tag:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="extras/h5bp/js/libs/jquery-1.7.1.min.js"><\/script>')</script>
<script type="text/javascript" src="extras/chosen/chosen.jquery.min.js"></script> 
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script>
  var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
  (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
  g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
  s.parentNode.insertBefore(g,s)}(document,'script'));
</script>

(Assuming this file is in your root bootstrap directory. Adjust accordingly.) 3. Add this to the end of the /less/bootstrap.less file: @import "../extras/settings/overrides.less"; 4. Choose your theme in /extras/themes/settings.less (uncomment the @import line you want to use) and compile.

Optional: If you're using your own existing Bootstrap installation and really don't want to replace bootstrap.css (say you've customized it), remember to include the chosen library with the following lines of code near your ending body tag:

<link type="text/css" rel="stylesheet" href="extras/css/chosen.min.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript"> $(".chzn-select").chosen(); $(".chzn-select-deselect").chosen({allow_single_deselect:true}); </script>

Pick Theme

If using the included index.html file, you can follow the instructions in "Quick Setup" above.

Authors

Mark Otto (Bootstrap)

Jacob Thornton (Bootstrap)

Adam Kochanowicz (Kickstrap)

Copyright and license

Bootstrap: 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.

Font Awesome

The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0. A mention of Font Awesome - http://fortawesome.github.com/Font-Awesome in human-readable source code is considered acceptable attribution (most common on the web). If human readable source code is not available to the end user, a mention in an 'About' or 'Credits' screen is considered acceptable (most common in desktop or mobile software).

Chosen, a Select Box Enhancer for jQuery and Protoype

by Patrick Filler for Harvest Available for use under the MIT License

Copyright (c) 2011 by Harvest

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

HTML5 Boilerplate

jQuery

Modernizr

Normalize.css

About

A full version of bootstrap with a layer of enhancements. If you're a journalist, contact ajkochanowicz@gmail.com for an early download of the beta. Details on v.1 release here: http://adamkochanowicz.com/2012/twitter-bootstrap-like-youve-never-seen-it-before/

http://ajkochanowicz.github.com/Kickstrap

License:Other