107 lines
2.3 KiB
CSS
107 lines
2.3 KiB
CSS
/*vertical height between form-groups*/
|
|
.my-form .form-group {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
@media (min-width:768px) {
|
|
.my-form .row {
|
|
margin-left: -1px;
|
|
margin-right: -1px;
|
|
}
|
|
|
|
.my-form [class*="col-"] {
|
|
padding: 0 2px;
|
|
}
|
|
}
|
|
body {
|
|
padding-top: 50px;
|
|
padding-bottom: 20px;
|
|
background-color: #87b3de;
|
|
}
|
|
|
|
/* Set padding to keep content from hitting the edges */
|
|
.body-content {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
/* Set width on the form input elements since they're 100% wide by default */
|
|
/*input,
|
|
select
|
|
{
|
|
max-width: 280px;
|
|
}*/
|
|
|
|
.row{
|
|
margin-top: 2px;
|
|
margin-bottom: 2px
|
|
}
|
|
|
|
textarea {
|
|
max-width: 1000px;
|
|
}
|
|
|
|
|
|
/* styles for validation helpers */
|
|
.field-validation-error {
|
|
color: #b94a48;
|
|
}
|
|
|
|
.field-validation-valid {
|
|
display: none;
|
|
}
|
|
|
|
input.input-validation-error {
|
|
border: 1px solid #b94a48;
|
|
}
|
|
|
|
input[type="checkbox"].input-validation-error {
|
|
border: 0 none;
|
|
}
|
|
|
|
.validation-summary-errors {
|
|
color: #b94a48;
|
|
}
|
|
|
|
.validation-summary-valid {
|
|
display: none;
|
|
}
|
|
|
|
.navbar-inner {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
background-color: #87b3de;
|
|
background-image: -moz-linear-gradient(top,#87b3de, #4d79a5);
|
|
background-image: -ms-linear-gradient(top,#87b3de, #4d79a5);
|
|
background-image: -webkit-gradient(linear, 0 0, 0 50%, from( #87b3de), to(#4d79a5));
|
|
background-image: -webkit-linear-gradient(top,#87b3de, #4d79a5);
|
|
background-image: -o-linear-gradient(top, #87b3de, #4d79a5);
|
|
background-image: linear-gradient(top, #87b3de, #4d79a5);
|
|
background-repeat: repeat-x;
|
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#87b3de', endColorstr='#4d79a5', GradientType=0);
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
border-radius: 4px;
|
|
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
|
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.label-color {
|
|
background-color: #e5e0e0;
|
|
}
|
|
|
|
.linkbutton {
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
text-align: center;
|
|
text-indent: -444px;
|
|
min-width: 0;
|
|
border: 0;
|
|
vertical-align: middle;
|
|
}
|
|
.linkbutton.edit {
|
|
background: url('/Content/icons/edit.gif');
|
|
}
|