Skip to content
This repository was archived by the owner on Nov 14, 2017. It is now read-only.

battaglr/single

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Single

Single-responsibility classes for CSS.

IMPORTANT NOTICE: this project is deprecated and unmaintained. It was created in 2015 just as an experiment. I'm publishing it in case anyone finds any use for it.

Overview

A highly experimental library of single-responsibility classes inspired mostly by Atomic CSS’s architecture and Emmet’s syntax.

  • If you know Emmet you already know Single.
  • The !important declaration ensures applicability.
  • ~12.88 kB (compiled, minified and gzipped).

Please, remember that this is just an experiment. If you want to use something like this in production try Atomic CSS.

Usage

<div class="BxS-bB W-50 P-20 MX-a">
  <span class="D-b FW-700"> ... </span>
  ...
</div>

Available classes

width
  • W-a - width: auto;
  • W-<0-100> - width: <0-100%>;
height
  • H-a - height: auto;
  • H-<0-100> - height: <0-100%>;
padding
  • P-<0-100> - padding: <0-100px>;
  • PX-<0-100> - padding-right: <0-100px>; padding-left: <0-100px>;
  • PY-<0-100> - padding-top: <0-100px>; padding-bottom: <0-100px>;
  • PT-<0-100> - padding-top: <0-100px>;
  • PR-<0-100> - padding-right: <0-100px>;
  • PB-<0-100> - padding-bottom: <0-100px>;
  • PL-<0-100> - padding-left: <0-100px>;
margin
  • M-<0-100> - margin: <0-100px>;
  • M-a - margin: auto;
  • MX-<0-100> - margin-right: <0-100px>; margin-left: <0-100px>;
  • MX-a - margin-right: auto; margin-left: auto;
  • MY-<0-100> - margin-top: <0-100px>; margin-bottom: <0-100px>;
  • MT-<0-100> - margin-top: <0-100px>;
  • MR-<0-100> - margin-right: <0-100px>;
  • MR-a - margin-right: auto;
  • MB-<0-100> - margin-bottom: <0-100px>;
  • ML-<0-100> - margin-left: <0-100px>;
  • ML-a - margin-left: auto;
border-width
  • BdW-0 - border-width: 0;
  • BdXW-0 - border-right-width: 0; border-left-width: 0;
  • BdYW-0 - border-top-width: 0; border-bottom-width: 0;
  • BdTW-0 - border-top-width: 0;
  • BdRW-0 - border-right-width: 0;
  • BdBW-0 - border-bottom-width: 0;
  • BdLW-0 - border-left-width: 0;
box-sizing
  • BxS-cB - box-sizing: content-box;
  • BxS-bB - box-sizing: border-box;
display
  • D-i - display: inline;
  • D-b - display: block;
  • D-iB - display: inline-block;
  • D-tb - display: table;
  • D-tbR - display: table-row;
  • D-tbC - display: table-cell;
float
  • Fl-r - float: right;
  • Fl-l - float: left;
  • Fl-n - float: none;
clear
  • Cl-r - clear: right;
  • Cl-l - clear: left;
  • Cl-b - clear: both;
  • Cl-n - clear: none;
position
  • Pos-s - position: static;
  • Pos-r - position: relative;
  • Pos-a - position: absolute;
  • Pos-f - position: fixed;
top
  • T-<0-100> - top: <0-100px>;
right
  • R-<0-100> - right: <0-100px>;
bottom
  • B-<0-100> - bottom: <0-100px>;
left
  • L-<0-100> - left: <0-100px>;
z-index
  • Z-<0-100> - z-index: <0-100px>;
font-weight
  • FW-100 - font-weight: 100;
  • FW-200 - font-weight: 200;
  • FW-300 - font-weight: 300;
  • FW-400 - font-weight: 400;
  • FW-500 - font-weight: 500;
  • FW-600 - font-weight: 600;
  • FW-700 - font-weight: 700;
  • FW-800 - font-weight: 800;
  • FW-900 - font-weight: 900;
font-size
  • FZ-<0-100> - font-size: <0-100px>;
cursor
  • Cur-a - cursor: auto;
  • Cur-d - cursor: default;
  • Cur-p - cursor: pointer;
  • Cur-t - cursor: text;
Others
  • Cf - Clearfix.

Motivation

Single was an attempt to determinate if a statically generated library using the architectural principles of Atomic CSS would be practical to use or develop. Apparently it wouldn’t; at least not with the level of flexibility that Atomic CSS has, and an attempt to emulate it will result in significantly bloated stylesheets with many classes that will never be used.

This, by no means, implies that utility or helper classes are impractical, just that they need to be defined and used thoughtfully.

License

Released under the MIT license.

About

Single-responsibility classes for CSS

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages