Facebook
From Szymon, 3 Years ago, written in CSS.
Embed
Download Paste or View Raw
Hits: 140
  1. a.mail_contact_link{
  2.     color: #e8e8e8;
  3.     text-decoration: none;
  4.     font-size: 2em;
  5.     position: fixed;
  6.     bottom: 100px;
  7.     left: 100px;
  8.     font-weight: 600;
  9.     font-family: News Cycle;
  10.     position: relative;
  11. }
  12. a.mail_contact_link:before{
  13.         content: '';
  14.         left: 0;
  15.         bottom: -10px;
  16.         height: 2px;
  17.         width: 0px;
  18.         background: #e8e8e8;
  19.         transition: 0.3s width ease-in-out;
  20. }
  21. a.mail_contact_link:hover:before{
  22.         width: 100%;
  23. }