Skip to content

Instantly share code, notes, and snippets.

View rssems's full-sized avatar

Selçuk Saydam rssems

View GitHub Profile
@rssems
rssems / RSS Testing.html
Created February 4, 2013 13:48
WebMagazin.Co Test
<h1>Daha iyi web için!</h1>
<input type="checkbox"/> <p>Web Magazin</p>
<div class="rss">
<input type="checkbox" id="buttonThree" />
<label for="buttonThree"> <!-- class="attention" -->
<i></i>
</label>
</div><!-- /rss -->
input:checked { background: green; }
input[type=checkbox]:checked ~ p {
color: red;
}
<input type="checkbox" id="button" />
<label for="button">TIKLA</label>
<p>Web Magazin</p>
p:target { color: red; }
<span tabindex="0">TIKLA</span> <p>Web Magazin</p>
span:focus ~ p { color: red; }
<span>TIKLA</span> <p>Web Magazin</p>