Created
September 25, 2015 12:01
-
-
Save anonymous/160fe9053e26d800c5d1 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/bedalu/1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
div { | |
width : 17px; | |
height: 19px; | |
color : white; | |
font-weight: bold; | |
padding-top : 1px; | |
padding-left : 3px; | |
border-radius: 10px; | |
background-color : red; | |
cursor: pointer; cursor: hand; | |
box-shadow: 3px 3px 8px rgba(0,0,0,.5); | |
} | |
span { | |
pointer-event:none; | |
} | |
div:hover { | |
background:green; | |
} | |
</style> | |
</head> | |
<body> | |
<div><span>✕</span></div> | |
<script id="jsbin-source-css" type="text/css">div { | |
width : 17px; | |
height: 19px; | |
color : white; | |
font-weight: bold; | |
padding-top : 1px; | |
padding-left : 3px; | |
border-radius: 10px; | |
background-color : red; | |
cursor: pointer; cursor: hand; | |
box-shadow: 3px 3px 8px rgba(0,0,0,.5); | |
} | |
span { | |
pointer-event:none; | |
} | |
div:hover { | |
background:green; | |
}</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div { | |
width : 17px; | |
height: 19px; | |
color : white; | |
font-weight: bold; | |
padding-top : 1px; | |
padding-left : 3px; | |
border-radius: 10px; | |
background-color : red; | |
cursor: pointer; cursor: hand; | |
box-shadow: 3px 3px 8px rgba(0,0,0,.5); | |
} | |
span { | |
pointer-event:none; | |
} | |
div:hover { | |
background:green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment