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

@hexsoftstudio/theme-default

v0.0.16

Published

hexsoftstudio theme-default

Downloads

38

Readme

@hexsoftstudio/theme-default

npm (scoped)

A scss package using plain or Bulma extension

Install

$ npm install @hexsoftstudio/theme-default
in nuxt.config.js, add

css: [
    '@hexsoftstudio/theme-default/styles/bulma.css'
],

...
component: true,
or import css

examples:
@import "node_modules/@hexsoftstudio/theme-default/styles/bulma.css"
@import "node_modules/@hexsoftstudio/theme-default/styles/main.css"

Usage

Avatar

<section>
    <div class="avatar-container">
        <div class="avatar">
        <img
            src="realtor-1.jpeg"
            alt="Avatar 1"
            class="avatar__photo"
        />
        <span class="avatar__notification">12</span>
        <img
            src="realtor-2.jpeg"
            alt="Avatar 2"
            class="avatar__photo avatar__photo--border"
        />
        <span class="avatar__notification">21</span>
        <img
            src="realtor-3.jpeg"
            alt="Avatar 3"
            class="avatar__photo"
        />
        <span class="avatar__notification">53</span>
        </div>
    </div>
</section>

Buttons

<section>
    <div class="container">
        <button class="button-primary">Primary</button>
        <button class="button-red button-red--rounded">Secondary</button>
        <button class="button-custom button-custom--rounded">Custom</button>
        <button class="button-simple">Simple Button</button>
    </div>
</section>

Cart

<section>
    <div class="cart">
      <div class="cart__image">
        <svg class="cart__image--shopping-cart">
          <use xlink:href="./icons/sprite.svg#icon-shopping-cart"></use>
        </svg>
      </div>
      <div class="cart__label">
        <span class="cart__label--count">
          10
        </span>
      </div>
    </div>
</section>

Footer

<footer>
    <div class="footer__copyright">Copyright (c) 2021</div>
</footer>

Hero - video

<section class="hero-container">
  <video
    class="hero__video"
    poster="https://source.unsplash.com/weekly?water"
    playsinline
    autoplay
    muted
    loop
  >
    <source src="./video/170216A_142_WomanWatchingWaterfall2_1080p.webm" type="video/webm">
    <source src="./video/170216A_142_WomanWatchingWaterfall2_1080p.mp4" type="video/mp4">
  </video>
</section>

Hero - image

<section class="hero-container">
  <img
    class="hero__image"
    src="https://source.unsplash.com/weekly?water"
  />
</section>

Ratings

<section>
    <div id="ratings">
        <svg class="ratings__star">
            <use xlink:href="icons/sprite.svg#icon-star"></use>
        </svg>
        <svg class="ratings__star">
            <use xlink:href="icons/sprite.svg#icon-star"></use>
        </svg>
        <svg class="ratings__star">
            <use xlink:href="icons/sprite.svg#icon-star"></use>
        </svg>
        <svg class="ratings__star">
            <use xlink:href="icons/sprite.svg#icon-star"></use>
        </svg>
        <svg class="ratings__star">
            <use xlink:href="icons/sprite.svg#icon-star-outlined"></use>
        </svg>
    </div>
</section>

Social Media

<section>
    <div class="socialmedia">
      <h1 class="socialmedia__title">Follow us on</h1>
      <svg class="socialmedia__facebook">
        <use xlink:href="./icons/sprite.svg#icon-facebook"></use>
      </svg>
      <svg class="socialmedia__google">
        <use xlink:href="./icons/sprite.svg#icon-google"></use>
      </svg>
      <svg class="socialmedia__instagram">
        <use xlink:href="./icons/sprite.svg#icon-instagram"></use>
      </svg>
      <svg class="socialmedia__linkedin">
        <use xlink:href="./icons/sprite.svg#icon-linkedin"></use>
      </svg>
      <svg class="socialmedia__pinterest">
        <use xlink:href="./icons/sprite.svg#icon-pinterest"></use>
      </svg>
      <svg class="socialmedia__twitter">
        <use xlink:href="./icons/sprite.svg#icon-twitter"></use>
      </svg>
      <svg class="socialmedia__vimeo">
        <use xlink:href="./icons/sprite.svg#icon-vimeo"></use>
      </svg>
      <svg class="socialmedia__youtube">
        <use xlink:href="./icons/sprite.svg#icon-youtube"></use>
      </svg>
    </div>
</section>

User

<section>
    <div class="user">
      <svg class="user__image">
        <use xlink:href="./icons/sprite.svg#icon-user"></use>
      </svg>
      <svg class="user__logout">
        <use xlink:href="./icons/sprite.svg#icon-lock"></use>
      </svg>
      <span class="user__logout--register">Register</span>
    </div>
  </section>

  <section>
    <div class="user">
      <img
        src="./img/realtor-3.jpeg"
        alt="Avatar 3"
        class="user__image user__image--bordered"
      />
      <svg class="user__login">
        <use xlink:href="./icons/sprite.svg#icon-lock-open"></use>
      </svg>
      <span class="user__login--name">John S.</span>
    </div>
</section>

For examples see https://hexsoftstudio.github.io/demo/