npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ecam.css

v1.1.0

Published

ECAM-style CSS framework.

Readme

ECAM.css

Repo Size License Version Airbus ECAM Style CSS Framework

Installing

To install ECAM.css, run npm i ecam.css.
Put <link rel="stylesheet" href="node_modules/ecam.css/ecam.css"> to the <head> section of the HTML to import it.

Fonts

No fonts are included with this package but usage of Source Code Pro is recommended.

Components

IMPORTANT

Most of the components found below do not have layout or width/height styles. You need to add them yourself according to your needs.

Question Form

<div class="questiondiv">
    <div>
        <p class="questionmark">?</p>
        <p class="questiontext">A350/A380 Style Question ?</p>
    </div>
    <form class="a350form" action="#">
        <input type="radio" name="form">
        <label class="a350formlabel" for="yes">Yes</label>
        <input type="radio" name="form">
        <label class="a350formlabel" for="no">No</label>
    </form>
</div>

Text Styles

Use the alert class to add borders to the text
Red Text
<p class="text alert red">ERROR</p>
<p class="text red">ERROR</p>
Amber Text
<p class="text alert amber">WARNING</p>
<p class="text amber">WARNING</p>
Green Text
<p class="text alert green">INFO</p>
<p class="text green">INFO</p>
Azure Text
<p class="text action">ACTION</p>
Basic Text
<p class="text">TEXT</p>

Buttons

Non Hoverable
<a class="button" href="#">BUTTON</a>
Hoverable
<a class="button hoverable" href="#">HOVERABLE</a>

Dropdowns

Gray Background
<div class="dropdown">
    <button class="button dropdownbutton"><a class="text dropdowntext">DROPDOWN</a><i class="fa fa-sort-desc"></i></button>
    <div class="button dropdown-content">
        <a href="#">Option 1</a>
        <a href="#">Option 2</a>
        <a href="#">Option 3</a>
    </div>
</div>
Black Background
<div class="dropdown">
    <button class="button dropdownbutton"><a class="text dropdowntext darkdropdown">DROPDOWN 2</a><i class="dropdownicon fa fa-sort-desc"></i></button>
    <div class="button dropdown-content">
        <a href="#">Option 1</a>
        <a href="#">Option 2</a>
        <a href="#">Option 3</a>
    </div>
</div>
Gray Background (Hoverable)
<div class="dropdown ">
    <button class="button dropdownbutton hoverable"><a class="text dropdowntext">HOVERABLE</a><i class="fa fa-sort-desc"></i></button>
    <div class="button dropdown-content">
        <a href="#">Option 1</a>
        <a href="#">Option 2</a>
        <a href="#">Option 3</a>
    </div>
</div>
Black Background (Hoverable)
<div class="dropdown">
    <button class="button dropdownbutton hoverable"><a class="text dropdowntext darkdropdown">HOVERABLE</a><i class="dropdownicon fa fa-sort-desc"></i></button>
    <div class="button dropdown-content">
        <a href="#">Option 1</a>
        <a href="#">Option 2</a>
        <a href="#">Option 3</a>
    </div>
</div>

Radio Buttons

Gray
<div class="radiodiv">
    <label class="container">ONE
                    <input type="radio" checked="checked" name="radio">
                    <span class="checkmark"></span>
                </label>
    <label class="container">TWO
                    <input type="radio" name="radio">
                    <span class="checkmark"></span>
                </label>
</div>
Green
<div class="radiodiv">
    <label class="container green">ONE
                    <input type="radio" checked="checked" name="radiogreen">
                    <span class="checkmark checkmarkgreen"></span>
                </label>
    <label class="container green">TWO
                    <input type="radio" name="radiogreen">
                    <span class="checkmark checkmarkgreen"></span>
                </label>
</div>

Text Inputs

Non-hoverable
<input class="textinput" type="text" name="Input" id="Input" placeholder="INPUT">
Hoverable
<input class="textinput hoverable" type="text" name="Input" id="Input" placeholder="HOVERABLE INPUT">

Popup

<div class="popup">
    <h3 class="text popuptext">THIS IS A POPUP</h3>
    <div class="popupbuttondiv">
        <a class="button popupbutton left hoverable" href="#">YES</a>
        <a class="button popupbutton right hoverable" href="#">NO</a>
    </div>
</div>