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

wawecss

v1.2.3

Published

WaweCss is a modern and multi-support CSS framework.

Downloads

1

Readme

WaweCss

WaweCss is a new CSS Framework designed to provide a set of pre-defined styles and components for building modern and responsive websites and web applications.

Usage

To use WaweCss in your HTML document, follow these steps:

  1. Download the "wawe.css" file from the WaweCss website or repository. Or use with JsDelivr CDN Network.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/2qke/WaweCss@main/wawe.css">
  1. Place the "wawe.css" file in the same directory as your HTML file if you downloaded it from the repo.

  2. Make a sample button design with WaweCss using the sample code below.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/2qke/WaweCss@main/wawe.css">
    <title>WaweCss Example!</title>
</head>
<body class="bgr-white">
    <div class="flex flex-row">
        <button class="button-aqua radius-10 m-left-9">Button Example Aqua</button>
        <button class="button-orange radius-6 m-left-9">Button Example Orange</button>
        <button class="button-red radius-8 m-left-9">Button Example Red</button>
        <button class="bgr-gray radius-8 cp m-left-9">Button bgr-gray</button>
        <button class="cp default-button bgr-dark text-white radius-7 m-left-9">Default Button</button>
      </div>
</body>
</html>

Result Aqua Button (Added as an example img)

What will we add next?

text-size, more text-color, more bg-color and some missing styles

Navigation

#Flex #Margin #Border #Background-Color #Text-Color #Text Features #Effect #Justify #Responsive #Other Class

ClassList

Our main goal is for you to use it as multi-support. You can use it in some parts you don't like in libraries such as Bootstrap or TailwindCSS that you usually use. You can also use us as an option. We do not have such a large structure yet, but our goal is to modernize!

Flex

flex — display: flex; | Classic display-flex structure flex-col — flex: direction: column; | Classic display-flex and flex-column structure flex-row — flex: direction: row; | Classic display-flex and flex-row structure

Margin

mx-auto | It ensures that the object is at a certain distance from the right and left. m-left — margin-left | Margin Left class has from 2 to 20 (use m-left-5 vb.) m-right — margin-right | Margin Right class has from 2 to 20 (use m-right-5 vb.)

Border

border — border-radius | Border Radius class has from 2 to 30 (use border-5 vb.)

Background Color

bgr-dark — background-color: rgb(31, 33, 39); | Background color dark bgr-gray — background-color: rgb(101, 101, 109); | Background color gray bgr-white — background-color: rgb(231, 231, 231); | Background color white

Text Color

text-dark — color: rgb(41, 42, 44); | Text color dark text-gray — color: rgb(185, 185, 185); | Text color gray text-white — color: rgb(224, 224, 224); | Text color white

Text Features

text-center | Centers the text. item-center | Used to center items on the vertical (horizontal) axis. text-no-decoration | It removes the lines under the links you are using. list-no-decoration | Removes objects such as dots, numbers or letters in the li classes you create. hide-item | Hides the object.

Effect

white-effect | Adds a white transition effect. (0.3s) red-effect | Adds a red transition effect. (0.3s) orange-effect | Adds a orange transition effect. (0.3s) yellow-effect | Adds a yellow transition effect. (0.3s)

Justify

jcenter | This style attribute is used to center the elements in the flex container horizontally (on the x-axis). jend | This style property aligns items inside the flex container horizontally (on the x-axis) to the right. jright | Aligns the contents of the flex container horizontally to the right. jleft | Aligns the contents of the flex container containing the class horizontally to the left. jbetween | This style property aligns elements in the flex container horizontally (on the x-axis) by spacing them apart.

Responsive

responsive-button — Makes the buttons mobile friendly.

Other

cp — cursor: pointer; | Classic cursor-pointer

Created by 2qke & thislaex My web site: ebusoft.com.tr