Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /*HTML Part*/
  2.  
  3. <p class="icon-with-separation"><i class="fa fa-user"></i></p>
  4.  
  5.  
  6.  
  7. /*CSS Part*/
  8.  
  9. .icon-with-separation i {
  10. font-size: 25px;
  11. line-height: 1.5;
  12. color: #333333;
  13. }
  14.  
  15. .icon-with-separation {
  16. position: relative;
  17. display: inline-block;
  18. padding: 0;
  19. margin: 0 auto;
  20. }
  21.  
  22. .icon-with-separation::before {
  23. content: '';
  24. position: absolute;
  25. height: 1px;
  26. left: -70px;
  27. margin-top: -5.5px;
  28. top: 60%;
  29. background: #333333;
  30. width: 50px;
  31. }
  32.  
  33. .icon-with-separation::after {
  34. content: '';
  35. position: absolute;
  36. height: 1px;
  37. right: -70px;
  38. margin-top: -5.5px;
  39. top: 60%;
  40. background: #333;
  41. width: 50px;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement