File: /home/ekspardev/onarbeni-master/onar/static/scss/_social.scss
.social-icons {
ul {
margin-top: 2rem;
> li {
margin-left: 1rem;
margin-right: 1rem;
display: inline-block;
> a {
display: block;
color: white;
background-color: fade-out($primary, 0.2);
border-radius: 100%;
font-size: 2rem;
line-height: 4rem;
height: 4rem;
width: 4rem;
}
}
}
}
@media (min-width: 768px) {
.social-icons {
position: absolute;
right: 2.5rem;
bottom: 2rem;
ul {
margin-top: 0;
> li {
display: block;
margin-left: 0;
margin-right: 0;
margin-bottom: 2rem;
&:last-child {
margin-bottom: 0;
}
> a {
transition: all 0.2s ease-in-out;
font-size: 2rem;
line-height: 4rem;
height: 4rem;
width: 4rem;
&:hover {
background-color: $primary;
}
}
}
}
}
}