Pseudo Classes
by MorganMeliment
HTML
<script src="@import url(https://fonts.googleapis.com/css?family=Roboto);"></script>
<div>
<p>First</p>
<div></div>
<p>Second</p>
<div></div>
<p>Third</p>
<div></div>
</div>
CSS
p {
width: 100%;
text-align:center;
margin: 0;
font-family: 'roboto';
font-weight: lighter;
cursor: pointer;
}
div p:first-child {
color: #3a9ec3;
}
div p:nth-child(3) {
color: #2da867;
}
div p:nth-child(5) {
color: #db6334;
}
div div {
width: 100%;
margin: 10px 0 10px 0;
height: 2px;
background-color: #e6e6e6;
}
div p:hover {
color: black;
}