Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

readme.md

Once CSS library

Join the chat at https://gitter.im/niant/once

Build Status devDependency Status

Once CSS/SASS library solves the headache of repetitive CSS. We have adopted best practices from OOCSS and atomic/functional CSS. The goal is to write the basic widely used classes once for everyone to use and not repeat yourself. Basically one class does one specific job but can do multiple CSS properties.

Documentation

Install

npm install once-css

Or just download a release (https://github.com/niant/once/releases)

CSS usage

Import either css/main.css or css/main.min.css to your project

SASS usage

Import .scss files you need from sass/ directory in your projects SCSS. If you like to use all the features - you can import sass/main.scss or copy content from sass/main.scss into your project.

Naming policies

Class prefixes

  • P = Padding
  • M = Margin
  • B = Border
  • f = Font/typography
  • o = Overflow
  • a = Animation
  • c = Color (e.g. c-white)
  • bg = Background (e.g. bg-c-white)
  • r = Reactive classes (e.g. r-sm-left)

Size pre/postfixes

  • xs, sm, md, lg, xl = Responsive classes xs-12 md-10 lg-6

Direction abbreviation

  • t: (top)
  • r: (right)
  • e: (end - right)
  • b: (bottom)
  • l: (left)
  • s: (start - left)
  • x: (left, right)
  • y: (top, bottom)
  • (empty): (top, right, bottom, left)

Other naming policies

[property][direction]-[feature]-[value]_[attribute]

  • Uppercase prefix characters if it has direction
  • 0 = Make element property size of zero .Mt-0 { margin-top:0; }
  • Reactive/responsive classes have a prefix of reactive breakpoint r-xs-, r-sm-, r-md-, r-lg, r-xl-

Examples of elements

.Pt-xs {
  padding-top: 0.5em;
}

.B-sm {
  border-top: 1em;
  border-right: 1em;
  border-bottom: 1em;
  border-left: 1em;
}

@media (min-width: 480px) {
  .r-sm-left {
    float: left;
  }
}

Examples of HTML with multiple classes

<!-- Option 1: sizes with xs, sm, md, lg, xl -->
<div class="left P-md B-xs r-md-right">
    <h4 class="f-gamma My-md">Example</h4>
    <div class="Px-sm Pt-sm f-zeta r-md-Px-md r-md-Pt-md">Content</div>
</div>

Functions & Mixins

@function multipleDefinitions($selectorScheme, $selectorNamesAndPropertyValues, $properties)

Create multiple class definitions in a map. For example:

multipleDefinitions('f-{key}', (sm: 0.7em, md: 1.2em, lg: 2.5em), ('font-size'));

/*
(
  f-sm: (font-size: 0.7em),
  f-md: (font-size: 1.2em),
  f-lg: (font-size: 2.5em)
)
 */

@function directionalDefinitions($selectorScheme, $selectorKeysAndPropertyValues, $cssProperties, $_dirs: $dirs)

Create multiple class definitions in a map (multiplied by directions and key/value map). For example:

$dirs: (t: (top), b: (bottom)); 
$sizes: (sm: 0.5em, md: 1em);

directionalDefinitions(
  'P{dirKey}-{key}', $sizes, ('padding-{dir}'), $dirs
);

/*
(
  Pt-sm: (padding-top: 0.5em),
  Pb-sm: (padding-bottom: 0.5em),
  Pt-md: (padding-top: 1em),
  Pb-md: (padding-bottom: 1em)
)
 */

Changelog

v0.4.0

  • New features

    • _theme-base.scss includes c-{key}_active and bg-c-{key}_active colors
    • _theme-base.scss include B{dirKey}-c-{key} colors
    • _borders.scss include B{dirKey}-double styling for borders
    • New function for generating directional definitions @function directionalDefinitions
  • Changes from v0.3.0

    • _theme-base.scss: c-{key}_hover and bg-c-{key}_hover classes are wrapped in @media (pointer: fine) to not include hover states on touch devices and such.
  • Deprecated

    • @mixin createMultipleSizeClasses - See @function multipleDefinitions
    • @mixin createMultipleSizeBoxClasses - See @function directionalDefinitions
    • @mixin createMultipleBoxClasses - See @function directionalDefinitions

v0.3.0

  • New features

    • Responsive classes are created with createResponsiveClasses mixin.
    • Responsive _layout.scss classes
    • Responsive _typography.scss classes
    • Added a function for generating multiple definitions @function multipleDefinitions
    • Flexbox classes added _flex.scss
    • Added _deprecated.scss for deprecated features
    • $responsiveClassScheme added to _variables.scss for freedom to specify the syntax of responsive classes. The default syntax is r-{breakpoint}-{selector}.
  • Changes from v0.2.0

    • $baseColors variable in _variables.scss is renamed to $colors
    • reactiveClasses mixin is renamed to createResponsiveClasses and its parameters are now ```$definitions, $_responsiveClassScheme: $responsiveClassScheme, $_breakpoints: $breakpoints``
  • Deprecated features

    • .flex-column
    • .flex-lock
    • .flex-flex
    • .clearfix
    • _breakpoints.scss has been deleted and relevant functions moved into _functions.scss
    • _typography_responsive.scss deleted: responsive typography is now generated the same as all the other styles. See typography.scss

v0.2.0

  • box direction is changed to empty string, so Pbox, Mbox etc. becomes just P and M
  • Add support for node-sass versions (3.3.3)

v0.1.0

  • Basic theme support (c-color, bg-c-color, B-c-color)
    • New atom and configuration: atoms/_theme-base.scss & $baseColors in _variables.scss
    • f-blank is now deprecated
    • Add support by adding blank into $baseColors and adding @include createMultipleSelectors('f-{key}', $baseColors, 'color'); to your project

Development environment setup (for Once development)

  1. Clone Once to your desired location: git clone https://github.com/niant/once.git destination/
  2. Download & install Node.js
  3. Run: npm install
  4. Start coding: npm start
You can’t perform that action at this time.