rsnext/examples/cloudflare-turnstile/app.css
Hong-Kuan Wu 9b106db25a
add Cloudflare Turnstile example (#41283)
## Description
close #41110 

## Documentation / Examples

- [x] Make sure the linting passes by running `pnpm lint`
- [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-10-12 12:56:37 +00:00

30 lines
412 B
CSS

html,
body {
display: grid;
place-content: center;
margin: 0;
height: 100%;
}
main {
height: 50vh;
width: 300px;
text-align: center;
}
button[type='submit'] {
cursor: pointer;
width: 100%;
outline: none;
border: none;
padding: 0.5rem 1rem;
margin-top: 1rem;
border-radius: 0.25rem;
background: #0d6efd;
font-size: 1.25rem;
color: #ffffff;
}
.checkbox {
min-height: 70px;
}