Skip to content

Instantly share code, notes, and snippets.

@golyshevd
Created December 10, 2012 10:39
Show Gist options
  • Save golyshevd/4249872 to your computer and use it in GitHub Desktop.
Save golyshevd/4249872 to your computer and use it in GitHub Desktop.
b-vote
/**
* b-vote
*/
.b-vote {
display: block;
}
.b-vote * {
vertical-align: top;
line-height: 1.5em;
}
.b-vote__answer {
text-decoration: none;
padding: 0 0.25em;
}
.b-vote__group {
display: inline-block;
}
.b-vote__group .b-vote__answer {
display: none;
}
.b-vote__group_current_yes .b-vote__answer {
display: block;
}
.b-vote__group-title {
text-decoration: none;
cursor: pointer;
}
.b-vote__group-title:hover,
.b-vote__answer:hover {
color: red;
}
.b-vote_interactive_yes .b-vote__answer,
.b-vote_interactive_yes .b-vote__group-title {
display: none;
}
.b-vote_interactive_yes .b-vote__group_current_yes {
display: inline-block;
}
.b-vote_interactive_yes .b-vote__group_current_yes .b-vote__answer {
display: block;
}
<!-- content to be placed inside <body>…</body> -->
<form class="b-vote b-vote_interactive_yes1">
<span class="b-vote__question">Воспрос?</span>
<a href="#" class="b-vote__answer">Да</a>
<a href="#" class="b-vote__answer">Не знаю</a>
<span class="b-vote__group">
<a href="#" class="b-vote__group-title">Нет</a>
<a href="#" class="b-vote__answer" >Не</a>
<a href="#" class="b-vote__answer" >Неа</a>
</span>
<a href="#" class="b-vote__answer">Не скажу</a>
<span class="b-vote__group b-vote__group_current_yes">
<a href="#" class="b-vote__group-title">Но</a>
<a href="#" class="b-vote__answer" >Ноно</a>
<a href="#" class="b-vote__answer" >Нуну</a>
</span>
</form>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment