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 🙏

© 2024 – Pkg Stats / Ryan Hefner

insta-style

v1.0.3

Published

This gives your web page good looking styles without all the hard work that goes into it.

Downloads

3

Readme

How to Install in Node.js

With npm

npm install insta-style

To Directly Import from Github Use a Link Like This

https://raw.githack.com/GoodStuffing123/insta-styles/master/default.css

How to Use

To use in an HTML file, simply import it in the header using a link tag.

<link rel="stylesheet" href="insta-style/default.css" />

To import in a JavaScript file, import it using import or require.

import "insta-style/default.css";

or

require("insta-style/default.css");

List of Different Theme Files

This package comes with multiple different style themes. Just set the name of the CSS file to the name of the theme within your import with .css at the end to use it.

Themes

  • default
  • professional
  • spring
  • summer
  • autumn
  • winter

More themes coming in the future!

Extras

Here are some extra things you can do to customize your styles a little more.

Note that these are not required to make the package work! This is mostly a plug and play sort of thing that you shouldn't have to do much if anything to get your web page looking good!

Color Classes (these will change based on the theme you pick)

Background color

  • c1
  • c2
  • c3
  • c4
  • c5

Text color

  • c1-text
  • c2-text
  • c3-text
  • c4-text
  • c5-text

Placement Classes

  • center align text center

  • left float items left

  • right float items right

  • right float items right

Padding Classes

  • p0 padding 0

  • p1 padding 1rem

  • p2 padding 2rem

  • p3 padding 3rem

  • p4 padding 4rem

  • p5 padding 5rem

  • p6 padding 6rem

Margin Classes

  • All Edges

    • m0 margin 0

    • m1 margin 1rem

    • m2 margin 2rem

    • m3 margin 3rem

    • m4 margin 4rem

    • m5 margin 5rem

    • m6 margin 6rem

  • Bottom

    • mb0 margin bottom 0

    • mb1 margin bottom 1rem

    • mb2 margin bottom 2rem

    • mb3 margin bottom 3rem

    • mb4 margin bottom 4rem

    • mb5 margin bottom 5rem

    • mb6 margin bottom 6rem

  • Top

    • mt0 margin top 0

    • mt1 margin top 1rem

    • mt2 margin top 2rem

    • mt3 margin top 3rem

    • mt4 margin top 4rem

    • mt5 margin top 5rem

    • mt6 margin top 6rem

  • Left

    • ml0 margin left 0

    • ml1 margin left 1rem

    • ml2 margin left 2rem

    • ml3 margin left 3rem

    • ml4 margin left 4rem

    • ml5 margin left 5rem

    • ml6 margin left 6rem

  • Right

    • mr0 margin right 0

    • mr1 margin right 1rem

    • mr2 margin right 2rem

    • mr3 margin right 3rem

    • mr4 margin right 4rem

    • mr5 margin right 5rem

    • mr6 margin right 6rem

More Info

To make a navbar use this format

<nav>
  <ul>
    <li>Stuff Inside</li>
  </ul>
</nav>

To make a footer use this format (You can have as many ul as you want)

<footer>
  <div>
    <ul>
      <li>Stuff Inside</li>
    </ul>

    <ul>
      <li>More Stuff Inside</li>
    </ul>
  </div>

  <span>&copy; Your Copyright 2021<span>
</footer>

That's just about everything, have fun!