summaryrefslogtreecommitdiff
path: root/assets/css/scss/elements/_contact-form.scss
blob: c206e2bb2bd1421fde1b92af87e091109893c8a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Contact Form Styles //
//
.submit-result {
	span {
		display: none;
		@include transition(ease-out 0.2s);
		&.show-result {
			margin-top: 30px;
			display: block;
		}
		&#success { color: $color-green; }
		&#error { color: $color-red; }
		.error-color { background: rgba(255, 0, 0, 0.1); }
	}
}