filesharing/public/style.css

49 lines
508 B
CSS
Raw Normal View History

* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
user-select: none;
2022-08-27 03:42:33 +00:00
max-width: 480px;
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;
2022-08-27 02:33:20 +00:00
font-size: xx-small;
}
2022-08-26 16:46:04 +00:00
2022-08-27 03:42:33 +00:00
audio,
video {
width: 480px;
2022-08-26 16:46:04 +00:00
}
img {
2022-08-27 03:42:33 +00:00
width: 480px;
2022-08-26 16:46:04 +00:00
object-fit: cover;
}
2022-08-27 02:33:20 +00:00
::marker {
content: '💾 ';
}