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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
input[type=checkbox]{ | |
position: absolute; | |
top: -9999px; | |
left: -9999px; | |
} | |
input[type=checkbox] ~ label { background:red;} |
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
/** | |
* checkbox checked | |
*/ | |
div{display:inline-block;padding-top:100px} | |
label{ padding:15px; margin:50px; border-radius:10px; font-size:50px} | |
input[type=radio]{ position: absolute; top: -9999px; left: -9999px; } | |
input[type=radio] ~ label { background:red;} | |
input[type=radio]:checked ~ label { background:green;} | |
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
<!doctype html> | |
<!--[if IE 7]> <html class="ie7" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="ie8" lang="en"> <![endif]--> | |
<head> | |
<title>CSS Drop Down Menu</title> | |
<style type="text/css" media="screen"> | |
/* ------------------------------------------------------------------ | |
Dropdown widget |
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
.book-navigation .menu { | |
border-top: 1px solid #D6D6D6; | |
padding: 1em 0 0 3em; /* LTR */ | |
} | |
.book-navigation .page-links { | |
border-bottom: 1px solid #D6D6D6; | |
border-top: 1px solid #D6D6D6; | |
letter-spacing: -3px; /* removes the inline-block letter-spacing on the .page-links list elements */ | |
margin: 0; | |
padding: 0.5em 0; |
NewerOlder