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

fluidsizingcss

v0.0.16

Published

FluidSizingCSS is a pure CSS solution for responsive design, offering fluid sizing locks for seamless scaling across devices. It eliminates the need for external tools, enabling developers to create adaptable, lightweight, and fast interfaces with native

Downloads

486

Readme

FluidSizingCSS

Rethink Responsive Design with Pure CSS Fluid Sizing

FluidSizingCSS is a pioneering solution for responsive design that transforms how interfaces adapt between mobile and desktop. This package offers the world's first pure CSS implementation of fluid sizing locks, eliminating the need for SCSS or external tools. Designed for developers and loved by designers, it enables perfect fluid scaling using only native CSS, making your site more adaptable, lighter, and faster.

[!TIP] See the FluidSizingCSS Demo on CodePen.


Table of Contents

  1. Installation
  2. File Sizes
  3. How It Works
  4. Complete List of Fluid Properties
  5. License

Installation

Via npm

  1. Install FluidSizingCSS:

    npm install fluidsizingcss
  2. Import the CSS file into your project based on the framework you’re using:

    • React: Import in your JavaScript/TypeScript file:

      import 'fluidsizingcss/all';
    • Vue.js: Import in your entry file:

      import 'fluidsizingcss/all';
    • Angular: Add to the styles array in angular.json:

      "styles": [
        "node_modules/fluidsizingcss/dist/fluidsizingcss.min.css",
        "src/styles.css"
      ]
    • HTML/Vanilla JavaScript: Add to your HTML <head>:

      <link rel="stylesheet" href="node_modules/fluidsizingcss/dist/fluidsizingcss.min.css">
    • SASS/SCSS: Import in your main SASS/SCSS file:

      @import 'node_modules/fluidsizingcss/dist/fluidsizingcss.min.css';

Optional: Smaller CSS Files

To improve performance, you can choose specialized versions of FluidSizingCSS:

  • Logical Properties Only (e.g., block-size, inline-size):

    import 'fluidsizingcss/logical';
  • Physical Properties Only (e.g., height, width):

    import 'fluidsizingcss/physical';

Via CDN

Alternatively, include FluidSizingCSS directly in your HTML:

  • Full Version:

    <link rel="stylesheet" href="https://unpkg.com/fluidsizingcss@latest/dist/fluidsizingcss.min.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fluidsizingcss@latest/dist/fluidsizingcss.min.css">
  • Logical Properties Only:

    <link rel="stylesheet" href="https://unpkg.com/fluidsizingcss@latest/dist/fluidsizingcss-logical.min.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fluidsizingcss@latest/dist/fluidsizingcss-logical.min.css">
  • Physical Properties Only:

    <link rel="stylesheet" href="https://unpkg.com/fluidsizingcss@latest/dist/fluidsizingcss-physical.min.css">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fluidsizingcss@latest/dist/fluidsizingcss-physical.min.css">

File Sizes

The following table provides an overview of the different versions of FluidSizingCSS files, including their standard CSS size, minified size, and the size after Brotli compression. This information helps you understand the trade-offs between file size and performance optimization in your project.

| File Name | Raw | Minified | Brotli compressed | |-------------------------------|------------|-----------------|------------------------| | fluidsizingcss.css | 49.22 KB | 38.03 KB | 2.69 KB | | fluidsizingcss-logical.css | 33.56 KB | 25.8 KB | 1.91 KB | | fluidsizingcss-physical.css | 28.12 KB | 21.35 KB | 1.93 KB |


How It Works

FluidSizingCSS leverages CSS custom properties, calc(), and clamp() to implement fluid sizing techniques. This method enables smooth adaptation of typography and design elements across different devices, avoiding the abrupt changes typically associated with traditional breakpoints.

Example Usage

To define fluid sizing for a heading, include the following in your CSS:

[!CAUTION] All values must be unitless to ensure compatibility with CSS mathematical operations.

:root {
    --s-min: 400; /* Lower Lock: Min Screen Size */
    --s-max: 1400; /* Upper Lock: Max Screen Size */
}

h1 {
    font-size: var(--fs);
    --fs-min: 60; /* Minimum Font Size */
    --fs-max: 240; /* Maximum Font Size */
    line-height: var(--lh);
    --lh-min: 60; /* Minimum Line-Height */
    --lh-max: 240; /* Maximum Line-Height */
}

Global Settings

Set global minimum and maximum screen sizes and base font size at the :root level:

@layer fluid, base;

@layer base {
    :root {
        --s-min: 400; /* Screen Size Min for General Fluid Sizing */
        --s-max: 1400; /* Screen Size Max for General Fluid Sizing */
        --rem: 16; /* Pixel per REM for General Fluid Sizing */
    }
}

Complete List of Fluid Properties

FluidSizingCSS provides a comprehensive set of fluid properties, allowing you to create responsive and adaptive designs across different screen sizes. These properties are categorized into

  • Common Fluid Properties,
  • Logical Fluid Properties and
  • Physical Fluid Properties.

Common Fluid Properties

These are general properties like margins, padding, and text formatting that apply universally, ensuring consistent fluid responsiveness across your design.

Text Formatting

  • font-size: --fs
  • line-height: --lh
  • letter-spacing: --ls
  • word-spacing: --ws
  • text-indent: --ti
  • text-decoration-thickness: --tdt
  • text-underline-offset: --tuo

Margin

  • margin: --m

Padding

  • padding: --p

Border Width

  • border-width: --bw

Border Radius

  • border-radius: --br

Outline

  • outline-width: --ow
  • outline-offset: --oo

Inset

  • inset: --i

Grid, Flex, and Columns

  • grid-auto-columns: --gac
  • grid-auto-rows: --gar
  • gap: --g
  • column-gap: --cg
  • row-gap: --rg
  • column-width: --cw
  • column-rule-width: --crw
  • flex-basis: --fb

Background

  • background-position-x: --bpx
  • background-position-y: --bpy

Scroll

  • scroll-margin: --sm
  • scroll-padding: --sp

Logical Fluid Properties

These properties adjust layout dimensions and spacing using logical directions (e.g., block, inline) relative to writing modes, enhancing adaptability across different content flows.

Block

  • block-size: --bs
  • min-block-size: --minbs
  • max-block-size: --maxbs

Inline

  • inline-size: --is
  • min-inline-size: --minis
  • max-inline-size: --maxis

Margin

  • margin-block: --mb
  • margin-block-start: --mbs
  • margin-block-end: --mbe
  • margin-inline: --mi
  • margin-inline-start: --mis
  • margin-inline-end: --mie

Padding

  • padding-block: --pb
  • padding-block-start: --pbs
  • padding-block-end: --pbe
  • padding-inline: --pi
  • padding-inline-start: --pis
  • padding-inline-end: --pie

Border Width

  • border-block-width: --bbw
  • border-block-start-width: --bbsw
  • border-block-end-width: --bbew
  • border-inline-width: --biw
  • border-inline-start-width: --bisw
  • border-inline-end-width: --biew

Border Radius

  • border-start-start-radius: --bssr
  • border-start-end-radius: --bser
  • border-end-end-radius: --beer
  • border-end-start-radius: --besr

Inset

  • inset-block: --ib
  • inset-block-start: --ibs
  • inset-block-end: --ibe
  • inset-inline: --ii
  • inset-inline-start: --iis
  • inset-inline-end: --iie

Scroll

  • scroll-margin-block: --smb
  • scroll-margin-block-start: --smbs
  • scroll-margin-block-end: --smbe
  • scroll-margin-inline: --smi
  • scroll-margin-inline-start: --smis
  • scroll-margin-inline-end: --smie
  • scroll-padding-block: --spb
  • scroll-padding-block-start: --spbs
  • scroll-padding-block-end: --spbe
  • scroll-padding-inline: --spi
  • scroll-padding-inline-start: --spis
  • scroll-padding-inline-end: --spie

Physical Fluid Properties

These properties control physical dimensions (e.g., height, width) and positions (e.g., top, left) based on the viewport, allowing precise fluid scaling of elements.

Height

  • height: --h
  • min-height: --minh
  • max-height: --maxh

Width

  • width: --w
  • min-width: --minw
  • max-width: --maxw

Margin

  • margin-top: --mt
  • margin-bottom: --mgb
  • margin-left: --ml
  • margin-right: --mr

Padding

  • padding-top: --pt
  • padding-bottom: --pb
  • padding-left: --pl
  • padding-right: --pr

Border Width

  • border-top-width: --btw
  • border-bottom-width: --bbwth
  • border-left-width: --blw
  • border-right-width: --bbrw

Border Radius

  • border-top-left-radius: --btlr
  • border-top-right-radius: --btrr
  • border-bottom-right-radius: --bbrr
  • border-bottom-left-radius: --bblr

Inset

  • top: --top
  • bottom: --bot
  • left: --lft
  • right: --rgt

Scroll

  • scroll-margin-top: --smt
  • scroll-margin-bottom: --smb
  • scroll-margin-left: --sml
  • scroll-margin-right: --smr
  • scroll-padding-top: --spt
  • scroll-padding-bottom: --spbt
  • scroll-padding-left: --spl
  • scroll-padding-right: --spr

License

FluidSizingCSS is licensed under the MIT License.