All Projects → trevanhetzel → Barekit

trevanhetzel / Barekit

Licence: mit
A bare minimum responsive framework

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Barekit

Baseguide
Lightweight and robust CSS framework for prototyping and production code.
Stars: ✭ 127 (-36.82%)
Mutual labels:  gulp, framework, grid, sass
Gmdjs
Grid Material Design
Stars: ✭ 24 (-88.06%)
Mutual labels:  gulp, framework, grid, sass
Lemon
🍋 Minimal and responsive CSS framework for fast building websites.
Stars: ✭ 51 (-74.63%)
Mutual labels:  framework, grid, sass
Sass Recipes
Sass things that I do all the time or should remember to do because googling tutorials gets old
Stars: ✭ 156 (-22.39%)
Mutual labels:  gulp, sass
Wireframe
minimal wireframing css-framework 🎈
Stars: ✭ 146 (-27.36%)
Mutual labels:  framework, sass
Flexible Grid
Flexible grid layouts to get you familiar with building within the flexible grid system.(HTML, CSS, SASS, SCSS)
Stars: ✭ 154 (-23.38%)
Mutual labels:  grid, sass
Gulp Starter Kit
A simple Gulp 4 Starter Kit for modern web development.
Stars: ✭ 134 (-33.33%)
Mutual labels:  gulp, sass
Compile Hero
🔰Visual Studio Code Extension For Compiling Language
Stars: ✭ 169 (-15.92%)
Mutual labels:  gulp, sass
Ignition Go
Bootstrap4 /Codeigniter 3 Modular (HMVC) App Building Framework - to build enterprise class web applications... Versions: CodeIgniter 3.1.9 AdminLTE 3.4 Bootstrap 4.5.0
Stars: ✭ 166 (-17.41%)
Mutual labels:  gulp, framework
Generator Angular Webpack Es6
Yeoman generator for Angular projects using Webpack, ES6, SASS with some cool optional features. Feel free to contribute!
Stars: ✭ 172 (-14.43%)
Mutual labels:  gulp, sass
Reactsimpleflexgrid
A way to quickly add a Grid Layout to your React app 🚀
Stars: ✭ 181 (-9.95%)
Mutual labels:  grid, sass
Genesis Starter Theme
A starter theme for the Genesis Framework with a modern development workflow
Stars: ✭ 141 (-29.85%)
Mutual labels:  gulp, sass
Musubii
Simple CSS Framework for JP
Stars: ✭ 138 (-31.34%)
Mutual labels:  framework, sass
Bootstrap 4 Boilerplate
Bootstrap 4.3.1 boilerplate with Browsersync, Sass and Gulp.js
Stars: ✭ 155 (-22.89%)
Mutual labels:  gulp, sass
Glup
Some of the gulp tutorial -《gulp笔记》
Stars: ✭ 136 (-32.34%)
Mutual labels:  gulp, sass
Hugo theme pickles
Modern, Simple and beautiful Hugo theme
Stars: ✭ 168 (-16.42%)
Mutual labels:  gulp, sass
Quasar
An experimental rust-to-{wasm,asmjs} frontend framework.
Stars: ✭ 180 (-10.45%)
Mutual labels:  framework, frontend-framework
Hexo Theme Laughing
A lightweight hexo theme
Stars: ✭ 185 (-7.96%)
Mutual labels:  grunt, sass
Iota
A responsive micro-framework for the grid spec powered by CSS custom properties.
Stars: ✭ 189 (-5.97%)
Mutual labels:  grid, sass
Hocus Pocus
Universal and lightweight stylesheet starter kit
Stars: ✭ 128 (-36.32%)
Mutual labels:  framework, sass

BareKit

Visit website for full usage docs

BareKit is a front-end project starter meant to be a starting point and structural guide rather than a full framework. It's bare enough to not interfere with your custom styles or scripts, but yet has enough functioning modules to jumpstart a project in no time.

The project creator and lead for BareKit is Trevan Hetzel (trevanhetzel) . Use Github issues and pull requests or reach out to Trevan directly for support and contributions to BareKit.

Getting Started

The best way to get BareKit up and running on a project is to install via Bower. You shouldn't ever touch the source anyway, so with Bower it's easy to get the latest updates.

First, make sure you have Bower installed. Then you can add this line to a bower.json file "barekit": "~0.7.0" or simply do a bower install barekit.

JavaScript

Getting up and running with the BareKit JavaScript modules is very simple. You first need to reference the latest jQuery file (also installable via Bower), and then reference the barekit.min.js file at the bottom of your HTML page (before the closing body tag).

If you installed jQuery and BareKit using Bower, the paths would look something like this:

<script src="bower_components/jquery/dist/jquery.min.js">
<script src="bower_components/barekit/js/barekit.min.js">

CSS

The BareKit CSS can be used in a few different ways. The core code comes with both a Sass and Stylus version, so the ideal way is to @import the barekit.scss or barekit.styl file from your main Sass or Stylus stylesheet.

Again, if you installed via Bower, the @import rule would look something like this:

// Import BareKit
@import "bower_components/barekit/css/barekit";

Using BareKit in this way allows you to compile it using your own preferred pre-processor, task runner, compression style, etc.

The other way to use the BareKit CSS is, of course, to just reference it directly in your markup.

<link rel="stylesheet" href="bower_components/barekit/css/barekit.css">

Usage

For details on using BareKit, visit the website at trevanhetzel.github.io/barekit

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].