Skip to content

Instantly share code, notes, and snippets.

@clemsos
Forked from anonymous/index.html
Created September 25, 2015 12:01
Show Gist options
  • Save clemsos/da2b545cb218a71bced1 to your computer and use it in GitHub Desktop.
Save clemsos/da2b545cb218a71bced1 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/bedalu/1
<!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>&#10005;</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>
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