Skip to content

chameleonui/css3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSS3

CSS3 library for chameleonui

Installation

Install with component:

$ component install chameleonui/css3

API

/* style.styl */
.class-name
    display: block
    border-radius: 20px
    box-shadow: 0 2px 2px black, 0 0 1px 30px rgba(0,0,0,.1)

will compile into:

/* style.css */
.class-name {
    display: block;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 2px 2px #000, 0 0 1px 30px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 2px #000, 0 0 1px 30px rgba(0,0,0,0.1);
    -ms-box-shadow: 0 2px 2px #000, 0 0 1px 30px rgba(0,0,0,0.1);
    -o-box-shadow: 0 2px 2px #000, 0 0 1px 30px rgba(0,0,0,0.1);
    box-shadow: 0 2px 2px #000, 0 0 1px 30px rgba(0,0,0,0.1);
}

Contains

  • animation
  • backface-visibility
  • background-size
  • border-image
  • border-radius
  • box-shadow
  • box-sizing
  • filter
  • font-smoothing
  • opacity
  • perspective
  • text-overflow
  • transform
  • transition

Author(s)

Edgedesign s.r.o.Daniel Sitek

License

The MIT License (MIT)

Copyright © 2013 Edgedesign s.r.o.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Stylus CSS3 library for ChamelenUI

Resources

Stars

Watchers

Forks

Packages

No packages published