New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

emma.css

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emma.css

Emma.css { emmet-like utility classes }

latest
Source
npmnpm
Version
0.15.1
Version published
Maintainers
1
Created
Source

Emmet-like utility classes for rapid and easy front-end development.

Circle CI NPM Version License

Example

Emma.css classEmmet abbreviationDeclaration (Expanded abbreviation)
.d-bd-bdisplay: block;
.d-fxd-fxdisplay: flex;
.m-am-amarign: auto;
.m0m0margin: 0;
m-5margin: -5px;
.w1w1width: 1px;
.h100ph100pheight: 100%;
.mah50vhmah50vhmax-height: 50vh;
.ff-tff-tfont-family: "Times New Roman", Times, Baskerville, Georgia, serif;
.fz16fz16font-size: 16px;
.fz-smfont-size: small;
.pb-mdpadding-bottom: 1.0rem; (default value)
.ml-lgmargin-left: 2.0rem; (default value)

See emma.css (all classes)

Emma.css only:

<article class="cf">
  <img class="d-b fl-l w-a mr-xl bdrs3" src="foo.png">
  <div class="fl-l ml-lg p-md">
    <h1 class="m0 ff-t">Title</h1>
    <p class="wow-bw wfsm-a">Description</p>
    <a class="d-ib fz-sm lh2" href="#">Read more</a>
  </div>
</article>

SUIT CSS naming convention + Emma.css (set prefix u-):

<article class="Excerpt u-cf">
  <img class="Excerpt-thumbnail u-d-b u-fl-l u-w-a" src="foo.png">
  <div class="u-fl-l u-ml-lg u-p-md">
    <h1 class="Excerpt-title">Title</h1>
    <p class="u-wow-bw u-wfsm-a">Description</p>
    <a class="Excerpt-readMore" href="#">Read more</a>
  </div>
</article>

Installation

Install or download Emma.css from one of these sources.

npm install emma.css

Rails (RubyGems)

gem install emma-css-rails

Download

https://github.com/ruedap/emma.css/releases

Alfred

https://github.com/ruedap/alfred-emma-css-workflow

Getting Started

Basic usage

SCSS:

@import "emma.css/scss/all";

CSS output:

.pos-s { position: static !important; }
.pos-a { position: absolute !important; }
.pos-r { position: relative !important; }
(snip)

Add prefix to utility classes

You can add prefix to utility classes by $emma-prefix variable:

$emma-prefix: "u-"; // Set prefix
@import "emma.css/scss/all";

CSS output:

.u-pos-s { position: static !important; }
.u-pos-a { position: absolute !important; }
.u-pos-r { position: relative !important; }
(snip)

Remove !important annotations

You can remove !important annotations by $emma-important variable:

$emma-important: false; // Remove !important annotations
@import "emma.css/scss/all";

CSS output:

.pos-s { position: static; }
.pos-a { position: absolute; }
.pos-r { position: relative; }
(snip)

Change default sizes or colors

You can change default sizes or colors by variables:

$emma-padding-md: 20px;  // default: `1.0rem`
$emma-color-black: #000; // default: `#111111`
@import "emma.css/scss/all";

License

Released under the MIT license.

Author

ruedap

Keywords

sass

FAQs

Package last updated on 08 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts