"top Bubbles"
Bootstrap 4.1.1 Snippet by dkstudio

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="p-5">
<a href=""><span class="icon_link_blue bubbly">bubbly effect</span></a>
</div>
<span class="badge badge-pill bg-light border">
<i class="fa bubbly" aria-hidden="true">
<img src="assets/images/Consultation.svg" width="40"></i></span>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
a {
display: flex;
justify-content: center;
align-items: center;
height: 122px;
box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
background: #fff;
transition: 0.5s;
width: 200px;
text-decoration: none;
color:#333;
span {
font-size: 14px;
font-weight: bold;
}
}
.bubbly {
display: inline-block;
padding-top: 1em;
padding-bottom: 1em;
-webkit-appearance: none;
appearance: none;
border: none;
position: relative;
transition: transform ease-in .1s,box-shadow ease-in .25s;
}
.bubbly:before,.bubbly:after {
position: absolute;
content: '';
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: