"create an account- formbox highlight color code"
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 ---------->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<div class="container">
<div class="row">
<div class="col-md-3"> </div>
<div class="col-md-9 bg-brown paddingTB20">
<div class="col-md-6 text-center">
<i class="glyphicon glyphicon-cog icon"></i>
</div>
<div class="col-md-6">
<form class="form-horizontal">
<fieldset>
<!-- Form Name -->
<legend>Create an Account</legend>
<p>Don't have an account? Create your account. It's take less then a minute.</p>
<!-- Text input-->
<div class="form-group">
<div class="col-md-12">
<input id="Name" name="Name" placeholder="Name" class="form-control input-md" required="" type="text">
</div>
</div>
<!-- Text input-->
<div class="form-group">
<div class="col-md-12">
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
.bg-brown {
background-color: #eaeaea;
box-shadow: 2px 2px 2px #888888;
}
.paddingTB20 {
padding-top : 20px;
padding-bottom:20px;
}
.marginT20 {
margin-top : 20px;
}
textarea.form-control {
background-color: #fff;
color:#b2b1b0;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #e9e6e0;
-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
}
input.form-control {
height: 38px;
background-color: #fff;
color:#000;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #e9e6e0;
-webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
box-shadow: inset 0 0px 0px rgba(0, 0, 0, .075);
}
form-control::-webkit-input-placeholder { color: black; }
.form-control:-moz-placeholder { color: black; }
.form-control::-moz-placeholder { color: black; }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
.form-control:focus{border-color: #000; box-shadow: none; -webkit-box-shadow: none;}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: