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

body-utility

v3.5.0

Published

Utilitarios de la librería bodystyle para el desarrollo de la interfaz de usuario ui.

Downloads

3

Readme

Utility Bodystyle

Documentación Licencia Npm

Descripción

En este repositorio se separan los utilitarios de la librería bodystyle para disponer unicamente del apartado de utilitarios de la librería.

Contenido

Descarga

Podemos agregar el CDN de los utilitarios directamente en la cabecera del html para disponer de las funcionalidades.

<!DOCTYPE html>
<head>

    <!-- META obligatorio para poder utilizar la libreria -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <!-- Link con el CDN de los estilos css  -->
    <link rel="stylesheet" href="https://rawcdn.githack.com/FedericoManzano/utility-bodystyle/5776691724b2bbbd985af06c57bab9541780aa60/dist/css/utulitarios.min.css">

</head>

O podemos añadir a los utilitarios como una dependencia de nuestr proyecto a través de los gestores de paquetes.

npm i body-utility
yarn add body-utility

Si lo que queremos es el código fuente de este repositorio lo podemos hacer con el comando

git clone https://github.com/FedericoManzano/utility-bodystyle

Bordes

Las clases CSS correspondientes a los bordes comienzan con .bor- y luego definimos si queremos bordes con radio o bordes pintados de algún color.

Clase CSS de ejemplo

.box-ej {
    width: 300px;
    height: 300px;
    background-color: black;
}

Ejemplos de radios

<!-- Bordes en (PX) -->
<div class="box-ej bor-rad-10"></div>
<!-- Bordes en (%) -->
<div class="box-ej bor-rad-por-10"></div> <!-- 1 A 50 %-->
<!-- Figura redonda -->
<div class="box-ej bor-rad-por-50"></div>
<!-- Figura  redonda a los lados -->
<div class="box-ej bor-pill"></div>

Ejemplos pintados

<!-- Bordes en (PX) -->
<div class="box-ej bor-10"></div>
<div class="box-ej bor-10"></div>
<div class="box-ej bor-50"></div>

Para más información ver la documentación: https://bodystyle.000webhostapp.com/inicio/#/documentacion/bordes

El resto de los elementos podemos acceder desde contenido a la documentación oficial.

Licencia

MIT (c) 2020 Bodystyle Info