Created
December 10, 2012 10:39
-
-
Save golyshevd/4249872 to your computer and use it in GitHub Desktop.
b-vote
This file contains hidden or 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
/** | |
* 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; | |
} | |
This file contains hidden or 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> --> | |
<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> | |
This file contains hidden or 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 hidden or 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":"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