Book Image

Sass and Compass for Designers

By : Ben Frain
Book Image

Sass and Compass for Designers

By: Ben Frain

Overview of this book

Table of Contents (17 chapters)
Sass and Compass for Designers
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

The opacify/fade-in functions


The opacify and fade-in do the exact opposite of transparentize/fade-out. It makes a color more opaque. Here are two examples of the syntax for reference. One uses fade-in, the other uses opacify, both have exactly the same effect:

background-color: fade-in($color3, .3);
background-color: opacify($color3, .3);