zhangsherry aa74e3089d
Fix issue left by commit 061fe0a: delete margin (#536)
Since commit 061fe0a replaced the margin with gap in solution.css, the margin should be deleted in style.css as well.
2024-04-25 12:36:22 +01:00

27 lines
412 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
height: 100vh;
margin: 0;
overflow: hidden;
font-family: Roboto, sans-serif;
}
img {
width: 600px;
}
button {
font-family: Roboto, sans-serif;
border: none;
border-radius: 8px;
background: #eee;
}
input {
border: 1px solid #ddd;
border-radius: 16px;
padding: 8px 24px;
width: 400px;
}