Coder Social home page Coder Social logo

wobsoriano / css-hooks Goto Github PK

View Code? Open in Web Editor NEW

This project forked from css-hooks/css-hooks

0.0 1.0 0.0 1.49 MB

Hook into advanced CSS features from native inline styles.

Home Page: https://css-hooks.com

License: MIT License

JavaScript 2.97% TypeScript 86.72% MDX 10.31%

css-hooks's Introduction

CSS Hooks CSS Hooks

Build Status Latest Release License


Overview

Hooks bring CSS features to native inline styles, enabling you to target various states such as hover, focus, and active, all without leaving the style prop. For example, hooks can easily solve the common use case of applying state-driven styles to a link:

<a
  href="https://css-hooks.com/"
  style={css({
    color: "#03f",
    fontSize: "1rem",
    "&:hover": {
      color: "#09f",
    },
    "&:active": {
      color: "#e33",
    },
    "@media (1000px <= width)": {
      fontSize: "1.25rem",
    },
  })}
>
  Hooks
</a>

Notably, the css function is pure. It simply returns a flat style object that is compatible with the style prop, creating dynamic property values that change under various conditions through CSS variables.

Documentation

Please visit css-hooks.com to get started.

Packages

Contributing

Contributions are welcome. Please see the contributing guidelines for more information.

License

CSS Hooks is offered under the MIT license.

css-hooks's People

Contributors

github-actions[bot] avatar nsaunders avatar ubmit avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.