Created
March 2, 2013 21:47
-
-
Save crazyrohila/5073429 to your computer and use it in GitHub Desktop.
CSS3 start-stop button.
This file contains 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
/** | |
* CSS3 start-stop button. | |
*/ | |
input.cbox {display:none;} | |
.label { | |
cursor:pointer; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
color: #008080; | |
font-size: 200%; | |
padding: 5px 10px; | |
border: 2px solid #008080; | |
border-radius: 10px; | |
box-shadow: 2px 2px 10px gray; | |
} | |
.label:after{content:"Start"} | |
.label:hover {color:white;background:#008080;} | |
#start:checked + .label:after { | |
content:"Stop"; | |
} | |
#start:checked + .label:hover { | |
color:red; | |
background:black; | |
} |
This file contains 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
<!-- content to be placed inside <body>…</body> --> | |
<input type="checkbox" id="start" class="cbox" value="start" /> | |
<label for="start" class="label" id="labelstart"></label> |
This file contains 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
// alert('Hello world!'); |
This file contains 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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment