Skip to content

Instantly share code, notes, and snippets.

@jwdallas
Created July 19, 2013 19:50
Show Gist options
  • Save jwdallas/6041905 to your computer and use it in GitHub Desktop.
Save jwdallas/6041905 to your computer and use it in GitHub Desktop.
Semantic Single-State Toggle
/**
Semantic Single-State Toggle
*/
input[type=radio] { display:none }
label {
float: left;
padding: 10px;
background: #f1f1f1;
}
label:hover {
background: #ddd;
cursor: pointer;
}
input:checked + label { background:#aaa }
<input id="sv-day" type="radio" name="segmented-view"><label for="sv-day">Day</label>
<input id="sv-week" type="radio" name="segmented-view"><label for="sv-week">Week</label>
<input id="sv-year" type="radio" name="segmented-view"><label for="sv-year">Year</label>
// alert('Hello world!');
{"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