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

srios-lab-styles

v1.0.0

Published

Una librería CSS moderna, modular y reutilizable basada en utilidades y componentes genéricos

Readme

Srios Lab Styles

Una librería CSS moderna, modular y reutilizable basada en utilidades y componentes genéricos. Diseñada para ser ligera, flexible y fácil de usar en cualquier proyecto web.

Version Downloads License Size

✨ Características

  • 🎨 Sistema de utilidades completo - Clases CSS tipo Tailwind
  • 🧩 Componentes modulares - Botones, tarjetas, navegación, etc.
  • 📱 Responsive por defecto - Mobile-first design
  • 🎯 Ligera y rápida - Solo 15KB minificada
  • 🔧 Fácil personalización - Variables CSS
  • 🌐 Soporte moderno - CSS Grid, Flexbox, Custom Properties
  • 📚 Bien documentada - Guías completas y ejemplos

🚀 Instalación

NPM

npm install srios-lab-styles

CDN

<link rel="stylesheet" href="https://unpkg.com/srios-lab-styles@latest/dist/srios-lab-styles.min.css">

Descarga directa

Descarga los archivos desde GitHub Releases

📖 Uso Básico

<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mi Proyecto</title>
    <link rel="stylesheet" href="srios-lab-styles.css">
</head>
<body>
    <!-- Header -->
    <header class="header">
        <div class="container flex justify-between items-center">
            <div class="header-brand">
                <a href="#" class="link">Srios Lab</a>
            </div>
            <nav class="header-nav">
                <a href="#" class="link">Inicio</a>
                <a href="#" class="link">Proyectos</a>
                <a href="#" class="link">Contacto</a>
            </nav>
        </div>
    </header>

    <!-- Banner Principal -->
    <section class="banner">
        <div class="banner-image">
            <img src="profile.jpg" alt="Perfil" class="hover-scale">
        </div>
        <div class="banner-links">
            <a href="#" class="link link-underline">GitHub</a>
            <a href="#" class="link link-underline">LinkedIn</a>
        </div>
    </section>

    <!-- Sección de Proyectos -->
    <section class="section">
        <h2 class="section-title">Mis Proyectos</h2>
        <div class="container">
            <div class="grid grid-cols-auto-fit gap-xl">
                <div class="card">
                    <h3 class="card-title">Proyecto 1</h3>
                    <p class="card-description">Descripción del proyecto</p>
                    <a href="#" class="btn">Ver proyecto</a>
                </div>
                <div class="card">
                    <h3 class="card-title">Proyecto 2</h3>
                    <p class="card-description">Descripción del proyecto</p>
                    <a href="#" class="btn btn-secondary">Ver proyecto</a>
                </div>
            </div>
        </div>
    </section>
</body>
</html>

🛠️ Sistema de Utilidades

Espaciado

<div class="p-md">Padding mediano</div>
<div class="mt-lg">Margin top grande</div>
<div class="px-xl">Padding horizontal extra grande</div>

Layout

<div class="flex justify-center items-center">Centrado</div>
<div class="grid grid-cols-2 gap-lg">Grid 2 columnas</div>
<div class="container">Contenedor centrado</div>

Tipografía

<h1 class="text-3xl font-light">Título grande</h1>
<p class="text-secondary">Texto secundario</p>
<p class="text-center">Texto centrado</p>

Componentes

<button class="btn">Botón principal</button>
<div class="card">Tarjeta</div>
<a href="#" class="link link-underline">Enlace</a>

🎨 Personalización

Personaliza la librería sobrescribiendo las variables CSS:

:root {
    /* Colores */
    --text-color: #333;
    --bg-color: #fff;
    --accent-color: #007bff;
    
    /* Espaciado */
    --spacing-md: 1.5rem;
    
    /* Tipografía */
    --text-base: 1.1rem;
}

📱 Responsive

La librería incluye breakpoints responsive automáticos:

  • 1024px y menos: Tablets y pantallas medianas
  • 768px y menos: Tablets pequeñas
  • 480px y menos: Móviles grandes
  • 360px y menos: Móviles pequeños

📚 Documentación

🔧 Desarrollo

Instalar dependencias

npm install

Desarrollo con watch

npm run dev

Construir para producción

npm run build

Publicar en npm

npm publish

📦 Estructura del Proyecto

srios-lab-styles/
├── src/
│   └── srios-lab-styles.css     # Código fuente
├── dist/
│   ├── srios-lab-styles.css     # Versión de desarrollo
│   └── srios-lab-styles.min.css # Versión minificada
├── docs/
│   └── css-library.md           # Documentación completa
├── examples/                    # Ejemplos de uso
├── package.json
└── README.md

🤝 Contribuir

¡Las contribuciones son bienvenidas! Por favor:

  1. Fork el proyecto
  2. Crea una rama para tu feature (git checkout -b feature/AmazingFeature)
  3. Commit tus cambios (git commit -m 'Add some AmazingFeature')
  4. Push a la rama (git push origin feature/AmazingFeature)
  5. Abre un Pull Request

📄 Licencia

Este proyecto está bajo la Licencia MIT - ver el archivo LICENSE para detalles.

🙏 Agradecimientos

  • Inspirado en Tailwind CSS y otros frameworks modernos
  • Comunidad de desarrolladores web
  • Contribuidores y usuarios

📞 Contacto


⭐ Si te gusta este proyecto, ¡dale una estrella en GitHub!