Contact
Below is the code used to style the concrete5 core Form Block. This uses the built in html handles to style the specific elements.
- table.formBlockSurveyTable tbody tr td textarea,
- table.formBlockSurveyTable tbody tr td input,
- table.formBlockSurveyTable tbody tr td input {
- border-radius: 7px;
- -moz-border-radius: 7px;
- -webkit-border-radius: 7px;
- border: 1px solid silver;
- color: #9d9297;
- font: 15px "Courier New", Courier, mono;
- padding: 5px;
- }
-
- .formBlockSubmitButton {
- background-color: #a6effe;
- font-family: "Lucida Grande", Lucida, Verdana, sans-serif!important;
- box-shadow: 0px 0px 8px #999;
- -webkit-box-shadow: 0px 0px 8px #999;
- -moz-box-shadow: 0px 0px 8px #999;
- float: left;
- width: 105px;
- }
-
- .formBlockSubmitButton:hover {
- color: black;
- background-color: #fcface;
- }