"add-listing"
Bootstrap 3.0.0 Snippet by jeevan123456

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.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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="col-lg-12 col-md-12">
<form>
<div class="add_listing_info">
<h3>Basic Informations</h3>
<div class="form-group">
<label class="label-title">Listing Title</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label class="label-title">Listing Tag Line</label>
<input type="text" class="form-control">
</div>
<div class="form-group">
<label class="label-title">Category</label>
<div class="select">
<select class="form-control">
<option>Real Estate</option>
<option>Restaurant</option>
<option>Real Estate</option>
<option>Health & Fitness</option>
<option>Beauty & Spas</option>
<option>Hotels & Travel</option>
<option>Automotive</option>
</select>
</div>
</div>
</div>
<div class="add_listing_info">
<h3>Contact Info</h3>
<div class="form-group">
<label class="label-title">Address</label>
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
@media (max-width: 767px)
.add_listing_info h3 {
font-size: 28px;
}
.add_listing_info {
background-color: #ffffff;
padding: 25px 30px;
margin: 20px auto 0;
box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.06);
border-radius: 4px;
}
.add_listing_info h3 {
font-weight: 300;
margin: 0 auto 20px;
border-bottom: #eee solid 1px;
padding-bottom: 20px;
}
.checkbox label::before {
background-color: rgba(0,0,0,0);
border: 2px solid #ccc;
content: "";
display: inline-block;
height: 16px;
left: 0;
position: absolute;
top: 4px;
width: 16px;
}
.radio label, .checkbox label {
cursor: pointer;
font-size: 14px;
font-weight: 400;
padding-left: 26px;
position: relative;
line-height: 22px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: