"Call"
Bootstrap 3.1.0 Snippet by jubeca

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
<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="login-container">
<div id="output"></div>
<div class="form-box">
<form action="" method="">
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-4">
<img src="http://victorargote.com/ptt/iconwalkie.png" class="img-responsive">
<br>
<button type="button" class="btn btn-info col-md-12">Call</button>
</div>
<div class="col-md-4">
</div>
</div>
</form>
</div>
</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{background: #eee;}
html,body{
position: relative;
height: 100%;
}
.login-container{
position: relative;
width: 400px;
height: 250px;
margin: 80px auto;
padding: 20px 40px 20px;
text-align: center;
background: #fff;
border: 1px solid #ccc;
}
#output{
position: absolute;
width: 300px;
top: -75px;
left: 0;
color: #fff;
}
#output.alert-success{
background: rgb(25, 204, 25);
}
#output.alert-danger{
background: rgb(228, 105, 105);
}
.login-container::before,.login-container::after{
content: "";
position: absolute;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: