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

ebp-grid

v0.2.1

Published

Creación del un frameword de css resposive con node.js, css, es2015

Downloads

3

Readme

Ebp-grid

Imagen

npm ebp-grid

Ebp-grid es un framework solo para CSS para diseñar web adaptables a todos los dispositivos mobiles, tableta y web.

Autor : Francisco Javier Moreno García de elboqueronpaco.org.

Este respositorios incluye los siguientes archivos:

  • css - contiene ebp-grid.css en su version css.
  • sass - contiene ebp-grid.scss en su versión sass.

Instalar desde npm

npm i -S ebp-grid

Caracteristicas

  • Ebp-grid esta reseteado inspirado por:

    i. Paul Irish`s {Box-sizing: border-box}

    ii. Zero Box Model {margin:0; padding:0;}

    iii. Nicolas Gallagher`s normalize.css

  • Estructura base en Contendores & Item.

  • Con dos tipos de Contenedores:

    i. Contenedor que ocupa todo el ancho de pagina **.Contendor-total**.

    ii. Contenedor con máximo de 1200px se usa **.contenedor**

  • Diseñado para Mobile Firt Grido Sytem con 12 columnas & 5 Media Queries Size:

    i. Para telefonos > (20em o 320px) se usa .ph-1 a .ph-12

    ii. Telefono > (30em o 480px) se usa .mo-1 a .mo-12

    iii. Tablet > (37.5em o 600px) se usa .t-1 a .t-12

    iv. Tablet Grandes > (48em o 768px) se usa .xt-1 a .xt-12

    v. Large Devices > (64em o 1024px) se usa .w-1 a .w-12

    vi. HD > (75em o 1200px) se usa .hd-1 a .hd-12

  • Tiene layouts de multiples tecnicas:

    i. Float:

      - En el contenedor agreamos .ph-clear, mo-clear, t-clear. xt-clear
      w-clear, hd-clear, según el dipositivo que quieras utilizarlo, si un ejemplo lo
      utilizamos .ph-clear se le aplicará a todos demás dispositivo.
        
      - En el contenedor agreamos .ph-(floatizquirda o floatderecha),
      mo-(floatizquirda o floatderecha),
      t-(floatizquirda o floatderecha), xt-(floatizquirda o floatderecha)
      w-(floatizquirda o floatderecha), hd-(floatizquirda o floatderecha),
      según el dipositivo que quieras utilizarlo, 
      si un ejemplo lo
      utilizamos .ph-(floatizquirda o floatderecha) 
      se le aplicará a todos demás dispositivo.

Construir un menu adaptable:

Para crear un menu adatable a todos los dispositivo y deplegable utilizaremos la siguiente html el color pretemilado es un gris oscuro que podremos sustituir en nuestra pagina estilo si deseamos.

<header class="Header contendor-total"> <section class="contenedor t-flex t-flex-row t-flex-j-c-between"> <h1 class="Logo"><a class="Logo-link t-flex-item" href="#">Logo</a></h1><a class="Menu-button t-none" href="#">Botón </a> <article class="Navegacion t-flex-item"> <nav class="Menu"> <ul class="Menu-list"> <li class="Menu-list-item"><a class="Menu-list-item-link" href="#">link 1</a></li> <li class="Menu-list-item"><a class="Menu-list-item-link" href="#">link 2</a></li> <li class="Menu-list-item"><a class="Menu-list-item-link" href="#">link 3</a></li> <li class="Menu-list-item"><a class="Menu-list-item-link" href="#">link 4</a></li> <li class="Menu-list-item"><a class="Menu-list-item-link" href="#">link 5</a></li> </ul> </nav> </article> </section> </header>