GithubHelp home page GithubHelp logo

strunkie30 / sass-fluid Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 628 KB

Create fluid values for SCSS, makes it easy to build responsive websites.

License: MIT License

JavaScript 70.30% HTML 4.09% SCSS 25.61%

sass-fluid's Introduction

Fluid values for SASS


Create fluid values for SCSS, makes it easy to build responsive websites.

How to use it

  1. install with npm install sass-fluid --save
  2. import in project scss @import '~sass-fluid';

Examples

/* 
    create a fluid font-size value between 30px and 90px 
    use the window size 640px -> 1500px horizontal.
    
    window.width <= 640px = font-size = 30px;
    window.width >= 1500px = font-size = 90px;
*/

.foo {
    @include fluid(
        font-size,
        30px,
        90px
    );
}

/* 
    create a fluid font-size value between 30px and 90px
    use the window size 800px -> 1000px horizontal.
    
    window.width <= 800px = font-size = 30px;
    window.width == 900px = font-size = 60px;
    window.width >= 1000px = font-size = 90px;
*/

.foo {
    @include fluid(
        font-size,
        30px,
        90px,
        horizontal,
        800px,
        1000px
    );
}

/* 
    create a fluid padding value between 20px 40px 20px 60px and 40px 60px 40px 80px
    use the window size 400px -> 800px vertical.
    
    window.height <= 400px = paddding = 20px 40px 20px 60px;
    window.height >= 800px = paddding = 40px 60px 40px 80px;
*/

.foo {
    @include fluid(
        padding,
        20px 40px 20px 60px,
        40px 60px 40px 80px,
        vertical,
        400px, 800px
    );
}

Configuration

@include fluid(
    $cssProperty,
    $minValues,
    $maxValues,
    $direction: horizontal,
    $breakpointMin: 640px,
    $breakpointMax: 1500px
);

$cssProperty width | height | padding | margin | font-size | or an other value that supports pixel values
$maxValues pixel values
$minValues pixel values
$direction horizontal or vertical
$breakpointMin pixel value
$breakpointMax pixel value

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.