leet-speak-converter
Version:
A smart and simple utility to convert text into leet speak.
36 lines (30 loc) • 491 B
CSS
/* Footer */
footer {
ul {
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
height: 80px;
list-style-type: none;
}
li {
&:nth-of-type(n+2) {
margin-left: 12px;
}
}
a {
color: $dark-grey;
transition: color .25s ease-in;
&:focus,
&:hover {
color: #bbb;
}
}
.fa {
font-size: 26px;
}
}