GithubHelp home page GithubHelp logo

css-gradients-playground's Introduction

css gradients

linear-gradient

less

.gradients(@type;@angle;@color) when(@type = linear) {
    background-image: -webkit-linear-gradient(unit((90-@angle),deg), @color);
    background-image: linear-gradient(unit(@angle,deg), @color);
}

.gradients(@type;@shape;@color) when(@type = radial) {
    background-image: -webkit-radial-gradient(@shape,@color);
    background-image: radial-gradient(@shape,@color);
}

tags

.gradient-tag {
  &.blue {
    .gradients(linear;
    140;
    #65bfff, #1280ff);
  }
  &.orange {
    .gradients(linear;
    140;
    #feca1e, #ff9f00);
  }
  &.green {
    .gradients(linear;
    140;
    #9ddc33, #71c812);
  }
  &.pink {
    .gradients(linear;
    140;
    #ff8f99, #f64a64);
  }
}

book spine

@spine: rgba(0,0,0,.15),rgba(0,0,0,.08) 3%,rgba(255,255,255,.2),rgba(0,0,0,.15),rgba(0,0,0,.03) 5%, rgba(0, 0, 0, 0);
.gradient(linear, 90, @spine);

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.