"Table-Lv3"
Bootstrap 3.1.0 Snippet by muzikiii

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="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/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="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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="container">
<div class="row ">
<div class="col-md-12">
<ul class="breadcrumb">
<li><a href="#">Conceptual Data</a></li>
<li><a href="#">Data Entity</a></li>
<li><a href="#">Logical Data Components</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Logical Data Component</h3>
</div>
<div class="panel-body">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-body">
<div class="col-sm-6">
<div class="form-horizontal">
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
.custab{
border: 1px solid #ccc;
padding: 5px;
margin: 5% 0;
box-shadow: 3px 3px 2px #ccc;
transition: 0.5s;
}
.custab:hover{
box-shadow: 3px 3px 0px transparent;
transition: 0.5s;
}
/***** DEMO ONLY *****/
.container {
margin: 10rem;
}
.badge {
margin-right: .3rem;
}
/***** REQUIRED STYLES *****/
.badge-labeled {
padding-top: 0;
padding-bottom: 0;
padding-right: 0.2rem;
}
.badge-labeled i {
padding: 0.25em 0.3rem;
cursor: pointer;
position: relative;
display: inline-block;
right: -0.2em;
background-color: #000000;
background-color: rgba(0,0,0,0.2);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
$('i').on('click', function(e) {
$(e.target).closest('span').remove();
})
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: