Skip to content

Instantly share code, notes, and snippets.

@talcual
Created June 14, 2019 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talcual/e927049c4e855d36b0e84ed174b7ee0f to your computer and use it in GitHub Desktop.
Save talcual/e927049c4e855d36b0e84ed174b7ee0f to your computer and use it in GitHub Desktop.
CSS
.redes{
position: fixed;
left: 0px;
z-index: 1000000000000000;
top: 25%; /*aqui se varia la posicion vertical segun la cantidad de iconos de redes.*/
}
.redes .logo {
text-align:center;
background: #fff;
border-radius: 0px 6px 6px 0px;
margin-bottom: 3px;
padding: 4px;
}
.redes .row{
width: 58px !important;
margin-right: 0px !important;
margin-left: 0px !important;
}
HTML
<div class="redes">
<div class="row">
<div class="col logo">
<i class="fa fa-twitter fa-3x text-primary"></i>
</div>
<div class="col logo">
<i class="fa fa-facebook fa-3x text-primary"></i>
</div>
<div class="col logo">
<i class="fa fa-youtube fa-3x text-danger"></i>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment