gitextract_tbjnbn08/ ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── beard.scss ├── bower.json ├── build_production/ │ ├── CNAME │ ├── border-radius/ │ │ └── index.html │ ├── borders/ │ │ └── index.html │ ├── colors/ │ │ └── index.html │ ├── configuration/ │ │ └── index.html │ ├── css/ │ │ ├── main.css │ │ └── vendor.css │ ├── display/ │ │ └── index.html │ ├── examples/ │ │ └── index.html │ ├── flexbox/ │ │ └── index.html │ ├── floats/ │ │ └── index.html │ ├── fonts/ │ │ └── index.html │ ├── grid/ │ │ └── index.html │ ├── index.html │ ├── installation/ │ │ └── index.html │ ├── js/ │ │ └── app.js │ ├── letter-spacing/ │ │ └── index.html │ ├── line-heights/ │ │ └── index.html │ ├── misc/ │ │ └── index.html │ ├── overflow/ │ │ └── index.html │ ├── philosophy/ │ │ └── index.html │ ├── position/ │ │ └── index.html │ ├── reset-and-base/ │ │ └── index.html │ ├── responsive-prefixes/ │ │ └── index.html │ ├── spacing/ │ │ └── index.html │ ├── text-alignment/ │ │ └── index.html │ └── tools/ │ └── index.html ├── config.php ├── dist/ │ └── beard.css ├── gulpfile.js ├── index.js ├── package.json ├── source/ │ ├── CNAME │ ├── _assets/ │ │ ├── css/ │ │ │ ├── prism-ghcolors.css │ │ │ └── prism.css │ │ ├── js/ │ │ │ ├── main.js │ │ │ └── prism.js │ │ └── sass/ │ │ └── main.scss │ ├── _layouts/ │ │ ├── master.blade.php │ │ └── subpage.blade.php │ ├── _partials/ │ │ ├── _footer.blade.php │ │ ├── _header.blade.php │ │ └── _sidebar.blade.php │ ├── border-radius.md │ ├── borders.md │ ├── colors.md │ ├── configuration.md │ ├── css/ │ │ ├── main.css │ │ └── vendor.css │ ├── display.md │ ├── examples.md │ ├── flexbox.md │ ├── floats.md │ ├── fonts.md │ ├── grid.md │ ├── index.md │ ├── installation.md │ ├── js/ │ │ └── app.js │ ├── letter-spacing.md │ ├── line-heights.md │ ├── misc.md │ ├── overflow.md │ ├── philosophy.md │ ├── position.md │ ├── reset-and-base.md │ ├── responsive-prefixes.md │ ├── spacing.md │ ├── text-alignment.md │ └── tools.md └── stylesheets/ ├── _base.scss ├── _beard.after.scss ├── _beard.before.scss ├── _generic.reset.scss ├── _helpers.border-radius.scss ├── _helpers.borders.scss ├── _helpers.colors.scss ├── _helpers.display.scss ├── _helpers.flex.scss ├── _helpers.floats.scss ├── _helpers.fonts.scss ├── _helpers.grid.scss ├── _helpers.letter-spacing.scss ├── _helpers.line-heights.scss ├── _helpers.misc.scss ├── _helpers.overflow.scss ├── _helpers.position.scss ├── _helpers.spacing.scss ├── _helpers.text-align.scss ├── _objects.media.scss ├── _settings.colors.scss ├── _settings.scss ├── _tools.appearance.scss ├── _tools.breakpoints.scss ├── _tools.colors.scss ├── _tools.font-size.scss ├── _tools.spacing.scss └── _tools.user-drag.scss