Если я правильно понял ваше требование, это то, что вам нужно?
.div {
display: flex;
flex-direction: column;
}
.div ul li:nth-child(1) {
transition-delay: 0.5s;
text-decoration: none;
}
.div ul li:nth-child(2) {
transition-delay: 0.5s;
}
.div ul li {
color: blue;
font-size: 1.5em;
padding-bottom: 10px;
cursor: pointer;
transition: 0.5s;
opacity: 1;
transform: translateY(20px);
}
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<div class="div">
<ul>
<li> <i class="fa fa-facebook-official"> Find us on facebook </i></li>
<li> <i class="fa fa-users"> Users</i></li>
</ul>
</div>