Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save achudars/5488086 to your computer and use it in GitHub Desktop.
Save achudars/5488086 to your computer and use it in GitHub Desktop.
Slightly transparent container with rounded corners and shadow. Looks beautiful as a container for a search box or upload area.
.lead {
background: rgba(255, 255, 255, 0.2);
width: 60%;
margin-left: auto;
margin-right: auto;
position: absolute;
top: 40%;
height: 35px;
left: 20%;
border: 1px solid #000000;
border-radius: 3px;
box-shadow: 3px 3px 5px #000;
padding: 10px;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment