All Projects → canonical-web-and-design → Vanilla Framework

canonical-web-and-design / Vanilla Framework

Licence: lgpl-3.0
From community websites to web applications, this CSS framework will help you achieve a consistent look and feel.

Projects that are alternatives of or similar to Vanilla Framework

Avalanche
A package based CSS framework.
Stars: ✭ 86 (-81.93%)
Mutual labels:  css-framework, npm, sass
Input Range Scss
Styling Cross-Browser Compatible Range Inputs with Sass
Stars: ✭ 272 (-42.86%)
Mutual labels:  npm, npm-package, sass
Alfred Npms
Alfred 3 workflow to search for npm packages with npms.io
Stars: ✭ 312 (-34.45%)
Mutual labels:  npm, npm-package
Wasm Pack
This tool seeks to be a one-stop shop for building and working with rust- generated WebAssembly that you would like to interop with JavaScript, in the browser or with Node.js. wasm-pack helps you build rust-generated WebAssembly packages that you could publish to the npm registry, or otherwise use alongside any javascript packages in workflows that you already use, such as webpack.
Stars: ✭ 3,848 (+708.4%)
Mutual labels:  package, npm
Eslint Plugin Vue
Official ESLint plugin for Vue.js
Stars: ✭ 3,592 (+654.62%)
Mutual labels:  npm, npm-package
Tooltip Sequence
A simple step by step tooltip helper for any site
Stars: ✭ 287 (-39.71%)
Mutual labels:  npm, npm-package
Length.js
📏 JavaScript library for length units conversion.
Stars: ✭ 292 (-38.66%)
Mutual labels:  npm, npm-package
Isometricsass
Sass library to make isometric 2D without javascript
Stars: ✭ 331 (-30.46%)
Mutual labels:  css-framework, sass
Ngx Smart Modal
Modal/Dialog component crafted for Angular
Stars: ✭ 256 (-46.22%)
Mutual labels:  npm, npm-package
Npm Consider
Check package dependencies before installing it
Stars: ✭ 386 (-18.91%)
Mutual labels:  package, npm
React Pro Sidebar
Customizable and responsive react sidebar library with dropdown menus and unlimited number of nested submenus
Stars: ✭ 359 (-24.58%)
Mutual labels:  npm, npm-package
Cpx
A cli tool to watch and copy file globs.
Stars: ✭ 394 (-17.23%)
Mutual labels:  npm, npm-package
Mini.css
A minimal, responsive, style-agnostic CSS framework!
Stars: ✭ 2,938 (+517.23%)
Mutual labels:  css-framework, sass
Scally
Scally is a Sass-based, BEM, OOCSS, responsive-ready, CSS framework that provides you with a solid foundation for building reusable UI's quickly 🕶
Stars: ✭ 294 (-38.24%)
Mutual labels:  css-framework, sass
Bulma Helpers
Library with missing Functional / Atomic CSS classes for Bulma framework
Stars: ✭ 263 (-44.75%)
Mutual labels:  css-framework, sass
Cashify
💸 Lightweight currency conversion library, successor of money.js
Stars: ✭ 329 (-30.88%)
Mutual labels:  package, npm
Npm Run All
A CLI tool to run multiple npm-scripts in parallel or sequential.
Stars: ✭ 4,496 (+844.54%)
Mutual labels:  npm, npm-package
react-native-value-picker
Cross-Platform iOS(ish) style picker for react native.
Stars: ✭ 18 (-96.22%)
Mutual labels:  package, npm-package
shipyard
A lightweight, CSS framework for Rails & Jekyll applications
Stars: ✭ 16 (-96.64%)
Mutual labels:  npm-package, css-framework
Typescript Webpack Starter
⚡ create-ts-lib: A Starter Kit and a CLI to create your TypeScript / ES6 module bundled by Webpack without thinking about build or unit tests configurations. 🏠
Stars: ✭ 358 (-24.79%)
Mutual labels:  npm, npm-package

vanilla Vanilla Framework

CircleCI build status npm version Downloads devDependency Status Chat in #vanilla-framework on Freenode This project is using Percy.io for visual regression testing.

Vanilla Framework is an extensible CSS framework, built using Sass and is designed to be used either directly or by using themes to extend or supplement its patterns.

Documentation | Join the mailing list

Hotlinking

You can link to the latest build to add directly into your markup like so, by replacing the x values with the version number you wish to link.

<link rel="stylesheet" href="https://assets.ubuntu.com/v1/vanilla-framework-version-x.x.x.min.css" />

Including Vanilla in your project via NPM

Pull down the latest version of Vanilla into your local node_modules folder and save it into your project's dependencies (package.json) as follows:

npm install --save-dev vanilla-framework

Now ensure that your SASS builder is including modules from node_modules. E.g. for Gulp:

// gulpfile.js
gulp.task('sass', function () {
  return gulp.src('[your-sass-directory]/**/*.scss').pipe(
    sass({
      includePaths: ['node_modules'],
    })
  );
});

Please note, that to provide the best browser support you should also include autoprefixer as a build step.

Then reference it from your own Sass files, with optional settings:

// Optionally override some settings
$color-brand: #ffffff;

// Import the theme
@import 'vanilla-framework/scss/vanilla';
@include vanilla;

// Add theme if applicable

If you don't want the whole framework, you can just @include specific parts - e.g. @include vf-b-forms.

Community

Keep up to date with all new developments and upcoming changes with Vanilla.

Code licensed LGPLv3 by Canonical Ltd

With ♥ from Canonical

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