"social"
Bootstrap 4.1.1 Snippet by saikrishna99666

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
<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 ---------->
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<div class="container">
<div class="card">
<div class="face face1">
<div class="content">
<div class="icon">
<i class="fa fa-linkedin-square" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="face face2">
<div class="content">
<h3>
<a href="https://www.linkedin.com/in/adamdipinto/" target="_blank">_adamdipinto</a>
</h3>
<p>This is where I network and build my professional protfolio.</p>
</div>
</div>
</div>
<div class="card">
<div class="face face1">
<div class="content">
<div class="icon">
<i class="fa fa-twitter-square" aria-hidden="true"></i>
</div>
</div>
</div>
<div class="face face2">
<div class="content">
<h3>
<a href="https://twitter.com/AdamDipinto" target="_blank">@AdamDipinto</a>
</h3>
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 {
margin: 0;
padding: 0;
min-height: 100vh;
background: #333;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
background-color: #f1f1f1;
}
.container {
width: 1000px;
position: relative;
display: flex;
justify-content: space-between;
}
.container .card {
position: relative;
border-radius: 10px;
}
.container .card .icon {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #f00;
transition: 0.7s;
z-index: 1;
}
.container .card:nth-child(1) .icon {
background: #e07768;
}
.container .card:nth-child(2) .icon {
background: #6eadd4;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: