
/**
 * BoxFish.js
 *
 * jQuery plugin to create dynamic resizing columnar boxes.
 *
 * @version: 0.1
 * @authors: Jeremy Harris
 * @license: MIT
 */


.boxfish-container {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  overflow: hidden;
 text-align:
}

.boxfish-box {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  display: block;
  background-color: #2ecc71;
  border: 1px solid #27ae60;
  margin: 0px;
  color: #fff;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 3px;
  padding: 20px;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}
