Skip to content

Instantly share code, notes, and snippets.

@sadaco
Created May 31, 2012 10:39
Show Gist options
  • Select an option

  • Save sadaco/2842565 to your computer and use it in GitHub Desktop.

Select an option

Save sadaco/2842565 to your computer and use it in GitHub Desktop.
More Mixins
@lightblue:#a9c6d2;
.cloudstyle(){
content: '';
position: absolute;
background: @lightblue;
z-index: -1
} //every part of the Cloud has this style
#cloud {
width: 350px;
height: 120px;
position: relative;
margin: 120px auto 20px;
background: @lightblue;
.rounded(100px);
}
#cloud:before {
.cloudstyle(); //we add here this class
width: 180px;
height: 180px;
top: -90px;
right: 50px;
.rounded(200px);
}
#cloud:after {
.cloudstyle();//and here
width: 100px;
height: 100px;
top: -50px;
left: 50px;
.rounded(100px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment