Guest User

Untitled

a guest
Feb 23rd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <div class="at-about-fab">
  2. <div class="at-about-fab__thumbnail">
  3. <img alt="Fiat Professional" src="https://fiatprofessionaleastlondon.co.za/wp-content/uploads/2018/02/CallUs.png" />
  4. </div>
  5. <div class="at-about-fab__meta">
  6. <h2>Call Us Now</h2>
  7. <p><a href="te:555-555-5555">555 555 5555</a></p>
  8. </div>
  9. </div>
  10.  
  11. .at-about-fab {
  12. z-index: 999999;
  13. position: fixed;
  14. right: 20px;
  15. bottom: 20px;
  16. display: flex;
  17. align-items: center;
  18. flex-direction: row;
  19. transform: translateX(100%);
  20. transition: 0.2s ease;
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23.  
  24. &:before {
  25. content: "";
  26. position: absolute;
  27. display: block;
  28. top: 50%;
  29. left: -58px;
  30. width: 58px;
  31. height: 48px;
  32. transform: translateY(-50%);
  33. }
  34.  
  35. &:hover {
  36. transform: translateX(0%);
  37.  
  38. .at-about-fab__meta {
  39. opacity: 1;
  40. }
  41. }
  42.  
  43. &__thumbnail {
  44. position: absolute;
  45. top: 50%;
  46. left: -58px;
  47. background: #FFFFFF;
  48. width: 48px;
  49. height: 48px;
  50. border: 1px solid #EEEEEE;
  51. border-radius: 100%;
  52. padding: 4px;
  53. box-sizing: border-box;
  54. transform: translateY(-50%);
  55. overflow: hidden;
  56. cursor: pointer;
  57.  
  58. img {
  59. display: block;
  60. width: 100%;
  61. border-radius: 100%;
  62. }
  63. }
  64.  
  65. &__meta {
  66. font-family: 'Open Sans', sans-serif;
  67. opacity: 0;
  68. transition: 0.2s ease;
  69.  
  70. h2,
  71. p {
  72. margin: 0;
  73. padding: 0;
  74. }
  75.  
  76. h2 {
  77. color: #444444;
  78. font-size: 14px;
  79. font-weight: 600;
  80. }
  81.  
  82. p {
  83. color: #CCCCCC;
  84. font-size: 12px;
  85. font-weight: 400;
  86. }
  87.  
  88. a {
  89. color: inherit;
  90. font-weight: 400;
  91. text-decoration: none;
  92. }
  93. }
  94. }
Add Comment
Please, Sign In to add comment