Advertisement
Qhuinn

CSSNEW

Aug 19th, 2020
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.77 KB | None | 0 0
  1. .bsig{
  2.   width:250px;
  3.   overflow:hidden;
  4.   height:180px;
  5.   margin:10px auto;
  6.   position:relative;
  7. }
  8. .bsig1{
  9.   width:250px;
  10.   height:180px;
  11.   display:flex;
  12.   justify-content:center;
  13.   align-items:center;
  14.   position:absolute;
  15.   right:250px;
  16.   transition:1s ease-in-out;
  17. }
  18. .bsig:hover .bsig1, .bsig:hover a, .bsig:hover span{
  19.   right:0;
  20. }
  21. .bsig span, .bsig a{
  22.   border-radius:100%;
  23.   margin:0 5px;
  24.   display:flex;
  25.   justify-content:center;
  26.   align-items:center;
  27.   position:relative;
  28.   right:250px;
  29.   transition:1s ease-in-out;
  30.   transition-delay:0.8s;
  31. }
  32. .bsig span{
  33.   font:22px playfair display;
  34.   font-weight:bold;
  35.   font-style:italic;
  36.   width:40px;
  37.   height:40px;
  38. }
  39. .bsig a{
  40.   font-size:10px;
  41.   text-decoration:none;
  42.   height:20px;
  43.   width:20px;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement