form.css
24 lines
| 1 | /** |
| 2 | * Strong Testimonials Unstyled Form template |
| 3 | */ |
| 4 | /* The "wait" spinner on form submission. |
| 5 | -----------------------------------------------*/ |
| 6 | .strong-form-wait { |
| 7 | display: none; |
| 8 | position: absolute; |
| 9 | top: 0; |
| 10 | bottom: 0; |
| 11 | left: 0; |
| 12 | right: 0; |
| 13 | background: rgba(255, 255, 255, 0.7); |
| 14 | } |
| 15 | .strong-form-wait .message { |
| 16 | position: absolute; |
| 17 | top: calc( 50% - 25px ); |
| 18 | text-align: center; |
| 19 | width: 100%; |
| 20 | height: 50px; |
| 21 | line-height: 50px; |
| 22 | color: #111; |
| 23 | } |
| 24 |