All Projects → getbasis → basis

getbasis / basis

Licence: MIT license
A lightweight responsive Stylus/CSS framework based on flexible box.

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to basis

bulma.styl
A Stylus translation of a modern CSS framework based on Flexbox
Stars: ✭ 26 (-3.7%)
Mutual labels:  css-framework
swatch
A lightweight, modern theming library based on CSS variables and the setter/getter pattern.
Stars: ✭ 14 (-48.15%)
Mutual labels:  css-framework
kahi-ui
Straight-forward Svelte UI for the Web
Stars: ✭ 169 (+525.93%)
Mutual labels:  css-framework
floaty
CSS Float Based Layout System
Stars: ✭ 35 (+29.63%)
Mutual labels:  css-framework
koochak
A minimal & lightweight CSS framework
Stars: ✭ 15 (-44.44%)
Mutual labels:  css-framework
holiday.css
A minimalist classless CSS theme
Stars: ✭ 88 (+225.93%)
Mutual labels:  css-framework
HypeStyle
Small, useful CSS library build on utility classes & components.
Stars: ✭ 28 (+3.7%)
Mutual labels:  css-framework
sass-structure
Sass folder structure => organizing project files.
Stars: ✭ 32 (+18.52%)
Mutual labels:  css-framework
minstyle.io
👌 A simple CSS Framework, including dark mode.
Stars: ✭ 58 (+114.81%)
Mutual labels:  css-framework
sass-zero
A CSS framework for rapid UI development based on tailwindcss, miligram and BEM
Stars: ✭ 25 (-7.41%)
Mutual labels:  css-framework
vital
Design Framework
Stars: ✭ 53 (+96.3%)
Mutual labels:  css-framework
60gs
60GS - 60 Columns Grid System based on CSS Grid Layout
Stars: ✭ 65 (+140.74%)
Mutual labels:  css-framework
emma.css
🍴 Emma.css { utility-classes: emmet-like; }
Stars: ✭ 53 (+96.3%)
Mutual labels:  css-framework
Two-Lines-CSS-Framework
Two Lines CSS Framework
Stars: ✭ 17 (-37.04%)
Mutual labels:  css-framework
Portfolio
A Next.js & Material UI portfolio that stylizes markdown files from the GitHub API and Contentful CMS.
Stars: ✭ 18 (-33.33%)
Mutual labels:  css-framework
colors
🎨 An elegant and minimalistic color palette for UI design.
Stars: ✭ 19 (-29.63%)
Mutual labels:  css-framework
Awesome-CSS-Frameworks-and-UI-Libraries
Extensive List of CSS Frameworks and UI Libraries.
Stars: ✭ 110 (+307.41%)
Mutual labels:  css-framework
amp-surface
⚡ AMP Surface CSS Framework
Stars: ✭ 26 (-3.7%)
Mutual labels:  css-framework
you-dont-need-bootstrap
Why you might not need any CSS framework
Stars: ✭ 63 (+133.33%)
Mutual labels:  css-framework
vue-cirrus
Vue components for the Cirrus CSS framework.
Stars: ✭ 43 (+59.26%)
Mutual labels:  css-framework

Basis

A lightweight responsive Stylus/CSS framework based on flexible box.

Basis

Why it's awesome?

  • Basis isn't about a UI framework. Basis provides only basic frame of components. So you build a responsive web page quickly and easy to overwrite with your Stylus or CSS.
  • CSS architecture of Basis is FLOCSS. So it is possible a modular approach.
  • Basis has incorporated the concept of vertical rhythm. So you can be a good-balanced design.
  • Basis has many mixins. Usufule mixins and abstract mixin of compornents.

Demo ( HTML5 Templates )

Get started

Using Yarn

Installs Basis

$ yarn install getbasis

Imports Basis. your Stylus.

/* If you want to use Basis classes */
@import node_modules/getbasis/src/css/basis;

/* If you want to use Basis mixins only */
@import node_modules/getbasis/src/css/basis-core;

Imports JavaScripts ( Require jQuery )

import 'node_modules/getbasis/src/js/basis.js';

Download from GitHub

Downloads the basis from https://github.com/getbasis/basis/releases

Imports Basis your Stylus.

/* If you want to use Basis classes */
@import basis/src/css/basis;

/* If you want to use Basis mixins only */
@import basis/src/css/basis-core;

or Just this link.

<link rel="stylesheet" href="basis/dist/css/basis.min.css">

Loads JavaScripts

<script
  src="https://code.jquery.com/jquery-3.1.1.min.js"
  integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
  crossorigin="anonymous"></script>
<script src="node_modules/getbasis/dist/js/basis.min.js"></script>

Sample for using Basis classes

<a class="_c-btn _c-btn--block">Btn</a>

Sample for using Basis abstracts

.c-btn {
  @include _c-btn({
    background-color: #fff,
    border: 1px solid #ddd,
  });

  &--block {
    display: block;
  }
}
<a class="c-btn c-btn--block">Btn</a>

Option

Support IE9 ( Not perfect )

<!--[if lt IE 10]>
<link rel="stylesheet" href="node_modules/getbasis/dist/css/plugin/basis-ie9/basis-ie9.min.css" />
<![endif]-->

And support IE8 ( Not perfect )

<!--[if lt IE 9]>
<script src="node_modules/html5shiv/dist/html5shiv.js"></script>
<![endif]-->

Browser support

Modern Browser and IE10+

How to contribute

Please make an issue if there is a problem and needs. Please don't make the new issue if the issue of the same content already exists. If you can coding, please give me a pull request. But, please do not send in the master branch. Pull request sent to the master branch doesn't merge.

License

MIT License

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].