# html-forms/1.3.21/assets/src/css/forms.css

HTML Forms – Simple WordPress Forms Plugin, version 1.3.21. 42 lines.

- Page: https://pluginprobe.com/plugins/html-forms/1.3.21/code/assets/src/css/forms.css
- Raw: https://pluginprobe.com/plugins/html-forms/1.3.21/raw/assets/src/css/forms.css
- Modified: 2021-05-07T10:32:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/html-forms/1.3.21/code/assets/src/css/forms.css#L10-L20`.

```css
.hf-form label {
	clear: both;
	float: none;
	display: block;
	font-weight: bold;
	margin-bottom: 1px;
}

.hf-form label + label {
	font-weight: normal;
}

.hf-form input[type="text"],
.hf-form input[type="email"],
.hf-form input[type="url"],
.hf-form input[type="date"],
.hf-form input[type="number"],
.hf-form select,
.hf-form textarea {
	clear: both;
	float: none;
	padding: 4px 8px;
}

.hf-message {
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
}

.hf-message-success {
	background-color: #dff0d8;
	border-color: #d0e9c6;
	color: #3c763d;
}

.hf-message-warning {
	background-color: #fcf8e3;
	border-color: #faf2cc;
	color: #8a6d3b;
}

```
