"People card with Tabs"
Bootstrap 3.3.0 Snippet by okrish

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="cs-wrapper">
<div class="cs-buttons-table">
<ul class="cs-buttons-list">
<li><a class="cs-button is-flashing--normal" href="#"><span>Flashing--Normal</span></a></li>
<li><a class="cs-button is-flashing--colored" href="#"><span>Flashing--Colored</span></a></li>
</ul>
</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
.cs-wrapper {
width: 100vw;
height: 100vh;
background-color: white;
}
.cs-buttons-table {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
.cs-buttons-list > li + li {
margin-top: 20px;
}
.cs-button {
overflow: hidden;
position: relative;
display: inline-block;
padding: 6px 10px;
border-radius: 4px;
background-color: orange;
background-image: -webkit-linear-gradient(top, #ffc04d, orange);
background-image: linear-gradient(to bottom, #ffc04d, orange);
font-family: monospace;
font-size: 28px;
text-decoration: none;
color: white;
-webkit-transition: opacity 300ms ease-in;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: