|
-
- @mixin opacity($value){
- -webkit-opacity: $value;
- -moz-opacity: $value;
- opacity: $value;
- }
-
- @mixin transition($properties){
- -webkit-transition: $properties;
- -moz-transition: $properties;
- -ms-transition: $properties;
- -o-transition: $properties;
- transition: $properties;
- }
-
- @mixin cover(){
- position: fixed;
- z-index: 100;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- background-color: rgb(0,0,0);
- }
|