Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Forked from csssecrets/dabblet.css
Created December 24, 2015 21:41
Show Gist options
  • Save AndyNovo/76b2e31709948a8715e4 to your computer and use it in GitHub Desktop.
Save AndyNovo/76b2e31709948a8715e4 to your computer and use it in GitHub Desktop.
Multiple borders
/**
* Multiple borders
*/
div {
width: 100px;
height: 60px;
margin: 25px;
background: yellowgreen;
border: 5px solid red;
border-radius: 50px;
outline: 5px solid yellow;
box-shadow: 0 0 0 5px #655 inset,
0 0 0 10px salmon inset,
0 2px 5px 6px rgba(0,0,0,.6);
}
div:hover {
background: red;
}
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment