What CSS selections do I have for Form Themes?
This article covers the most commons classes, ids and selectors used to redesign user Forms
1. Classes: .modal-header
.modal-header {
background-color: #FFFFFF;
background-image: url('../client/logo-73.jpg');
background-size: 180px 60px;
background-repeat: no-repeat;
background-position: 90% 50%;
padding: 2em;
}
3. Classes: .modal-title
.modal-title {
color: #A40234;
font-size:3em;
}
4. Classes: .btn-primary, .btn-inverse
.btn-primary, .btn-inverse {
background: #404040;
}
.btn-primary:hover, .btn-inverse:hover {
background: #A40234;
}
.btn-primary:focus {
background: #404040;
}
5. Classes: .panel-heading
.panel-default>.panel-heading {
color: #fff;
background-color: #1db261;
}
6. Classes: .label.active
label.active {
color: #1db261;
font-weight: 600;
}