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

xiaolin-css

v0.1.93

Published

Lightweight CSS Framework

Downloads

23

Readme

Lightweight CSS framework.

Basic Usage

Install via one of:

yarn add xiaolin-css
npm install xiaolin-css

Enter this code in your index.scss file:

// In case you want to use the "full" feature
@use "xiaolin-css/scss/xiaolin.scss";

// or In case you just want to use the "reset CSS" feature
@use "xiaolin-css/scss/xiaolin-reset.scss";

// or In case you just want to use the "grid" feature
@use "xiaolin-css/scss/xiaolin-grid.scss";

If you want to override some variables:

// First, you will define some variables
$breakpoints: (
  sm: 576, // ≥576px Small
  md: 768, // ≥768px Medium
  lg: 992, // ≥992px Large
  xl: 1200, // ≥1200px Extra large
  xxl: 1400 // ≥1400px Extra extra large
);
$containerMaxWidths: (
  sm: 544px,
  md: 720px,
  lg: 960px,
  xl: 1152px,
  xxl: 1312px
);
$containerFluidLimitMaxWidth: 1920px;
$mainGutterWidth: 16px; // Spacing for "containers, grid, and so on"
$fontSizeRoot: 14px; // Default font size for entire website
$_fontFallback: Arial, Helvetica, sans-serif;
$fontFamilies: (
  default: ("Inter", "Poppins", "Red Hat", #{$_fontFallback}),
  fontawesomeFree: "Font Awesome 6 Free",
  fontawesomeBrands: "Font Awesome 6 Brands",
  1st: ("Inter", #{$_fontFallback}),
  2nd: ("Poppins", #{$_fontFallback}),
  3rd: ("Red Hat", #{$_fontFallback}),
);

// Then override the default variables of library as below
// See the file `scss/_variables.scss` for how many variables you can override
@use "xiaolin-css/scss/xiaolin.scss" with (
  $breakpoints: $breakpoints,
  $containerMaxWidths: $containerMaxWidths,
  $containerFluidLimitMaxWidth: $containerFluidLimitMaxWidth,
  $mainGutterWidth: $mainGutterWidth,
  $fontSizeRoot: $fontSizeRoot,
  $defaultFontFamily: map-get($fontFamilies, default),
  $defaultFontWeight: 400,
  $defaultLineHeight: 1,
  $gapSizes: (0, 4, 8, 16, 32, 64),
  $gutterSizes: (0, 4, 5, 8, 10, 16, 32, 64)
);

Use Mixins

// Register use our "mixins" at the top of any SCSS file you need
@use "xiaolin-css/scss/mixins" as XiaolinCSSMixins;

// Use
.your-class-name {
  color: green;
  ...
  @include XiaolinCSSMixins.MinWidth(lg) {
    font-size: 25px;
  }
  @include XiaolinCSSMixins.MaxWidth(lg) {
    font-size: 20px;
  }
}


// Your output
.your-class-name {
  color: green;
  ...
}
@media (min-width: 992px) {
  .your-class-name {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .your-class-name {
    font-size: 20px;
  }
}

Just simple Document

https://viet27th.github.io/xiaolin-css/sassdoc/index.html