filesharing/public/style.css

35 lines
383 B
CSS
Raw Normal View History

* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
user-select: none;
max-width: 360px;
margin: 0 auto;
}
2022-08-26 12:26:21 +00:00
p,
h1,
li,
form {
margin: 1rem auto;
}
form {
display: grid;
grid-template-columns: auto 1fr;
gap: 1rem;
}
form button {
grid-column: span 2;
cursor: pointer;
}
.small {
color: gray;
font-size: small;
}