GitXplorerGitXplorer
t

bendable

public
70 stars
3 forks
0 issues

Commits

List of commits on branch main.
Unverified
a1c2c6c40ba7a6069aa40426af5cc98807faff54

Fix some words

ttobiasahlin committed a year ago
Unverified
dcdce158571af65a6cc72fde95b9f602bee4b0c9

Add package.json

ttobiasahlin committed a year ago
Unverified
4ab78e3462875102eca422cbf08535ec539f67d6

Update wording of intro

ttobiasahlin committed a year ago
Unverified
ea2623f067eee408ecad5d3e8c5fce7f2bfc0e3b

Update readme

ttobiasahlin committed a year ago
Unverified
7b6034e0014f28f30a7ba08c23afcb5371fe5b17

Add some more context

ttobiasahlin committed a year ago
Unverified
841d072fe428edcf405c7c4deadbdb98da30868a

Expand on readme

ttobiasahlin committed a year ago

README

The README file for this repository.

bendable

Fluid & responsive type scales with composable CSS utilities. See the blog post for a more in-depth exploration of the type scaling mechanism.

Installation

Download bendable.css, or run:

npm install bendable

Usage

To create a header that scales from the minimum size to the max size in the type scale, between the smallest and largest supported viewports, add the font-1 and 5xl:font-14 classes:

<h1 class="font-1 5xl:font-14">Scale all the things</h1>

This example introduces two concepts: minimum values (font-x) and font size targets (viewport:font-x). A target font size is a font size that will cause the size to scale smoothly from the smaller viewport towards its target at the larger viewport. In bendable, however, both breakpoints and targets exist as distinct mechanisms, where breakpoints doesn't affect the calculated font size until it sets the intended value at a certain viewport width.

Mixing breakpoints and targets could, for example, look like this:

<h1 class="font-1 font-3@md font-3@xl 5xl:font-14">Scale all the things</h1>

This set of utilities will keep the font static until the viewport reaches a medium size, where it jumps to the third step on the typescale. It keeps that size until the viewport hits its xl size, where it starts scalling smoothly towards 14 at 5xl.

Importantly, you don't have to scale up as the viewport size increases: you can equally scale down, for example:

<h1 class="font-1 font-2@sm sm:font-4 font-6@md font-3@xl">Whereas recognition of the inherent dignity</h1>

See playground.html for a more comprehensive list of examples and techniques.

Contributing

This is an early release to showcase and explore the technique's potential and limitations—feedback and contributions are highly appreciated.