home.css in FormFacade – Embed Google Forms in your website 2.0, at style/home.css
| 1 | body { |
| 2 | font-family: Arial, sans-serif; |
| 3 | margin: 0; |
| 4 | padding: 0; |
| 5 | display: flex; |
| 6 | flex-direction: column; |
| 7 | align-items: center; |
| 8 | justify-content: center; |
| 9 | background-color: #f5f5f5; |
| 10 | color: #333; |
| 11 | } |
| 12 | .header { |
| 13 | background-color: #fff; |
| 14 | width: 100%; |
| 15 | padding: 20px 0; |
| 16 | display: flex; |
| 17 | align-items: center; |
| 18 | justify-content: center; |
| 19 | border-bottom: 1px solid #eee; |
| 20 | } |
| 21 | .header img { |
| 22 | height: 30px; |
| 23 | } |
| 24 | .content { |
| 25 | text-align: center; |
| 26 | margin: 40px 20px; |
| 27 | } |
| 28 | .content h1 { |
| 29 | font-size: 2em; |
| 30 | margin-bottom: 20px; |
| 31 | } |
| 32 | .content p { |
| 33 | font-size: 1.2em; |
| 34 | margin-bottom: 40px; |
| 35 | } |
| 36 | .content button { |
| 37 | padding: 15px 30px; |
| 38 | font-size: 1em; |
| 39 | background-color: #007bff; |
| 40 | color: #fff; |
| 41 | border: none; |
| 42 | border-radius: 5px; |
| 43 | cursor: pointer; |
| 44 | } |
| 45 | .content button:hover { |
| 46 | background-color: #0056b3; |
| 47 | } |
| 48 | .images { |
| 49 | display: flex; |
| 50 | justify-content: center; |
| 51 | align-items: center; |
| 52 | gap: 20px; |
| 53 | } |
| 54 | .images img { |
| 55 | width: 300px; |
| 56 | border-radius: 10px; |
| 57 | } |
| 58 | .footer { |
| 59 | margin-top: 40px; |
| 60 | font-size: 1em; |
| 61 | color: #666; |
| 62 | } |
| 63 |