Skip to content

Instantly share code, notes, and snippets.

@sadaco
Created June 25, 2012 17:20
Show Gist options
  • Select an option

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

Select an option

Save sadaco/2989984 to your computer and use it in GitHub Desktop.
Nested Rules example css
#cloud {
width: 350px;
height: 120px;
background: #a9c6d2;
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
position: relative;
margin: 120px auto 20px;
}
#cloud:after, #cloud:before {
content: '';
position: absolute;
background: #a9c6d2;
z-index: -1
}
#cloud:after {
width: 100px;
height: 100px;
top: -50px;
left: 50px;
border-radius: 100px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
}
#cloud:before {
width: 180px;
height: 180px;
top: -90px;
right: 50px;
border-radius: 200px;
-webkit-border-radius: 200px;
-moz-border-radius: 200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment